Link to home
Start Free TrialLog in
Avatar of speder
speder

asked on

Submitting form server side

Hi

I'm submitting a form server side to a SMS gateway repeatedly using something like this.

Function SendDynamicForm()
      Dim oXMLHttp
      Dim sForm
      sForm=""
      Set oXMLHttp=Server.CreateObject("MSXML2.XMLHTTP")
      oXMLHttp.open "POST", "http://", false
      oXMLHttp.setRequestHeader "lastCached", now()
      oXMLHttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
      oXMLHttp.send sForm
      SendDynamicForm = oXMLHttp.status
      Set oXMLHttp = Nothing
End Function

Sometimes this function needs to be called 1000s times during execution and there's a risk of timing out. What would you do? Any fancy asp queing scripts out there?
SOLUTION
Avatar of xaviesh
xaviesh

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial