Hi there- can you please give me a script example of a POST client that's pipelined… I have a server that will take a long time to return a 200 OK and I want to POST several requests to it (xml data enclosed) to the server in the meanwhile (pipelining).
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there- can you please give me a script example of a POST client that's pipelined… I have a server that will take a long time to return a 200 OK and I want to POST several requests to it (xml data enclosed) to the server in the meanwhile (pipelining).
Thanks
Yes of course
CLIENT
_REQ localhost 8080
__POST /your/stuff HTTP/1.1
__Host: localhost
__Content-Type: application/x-www-form-urlencoded
__Content-Length: AUTO
__
_-yourdata
__POST /your/stuff HTTP/1.1
__Host: localhost
__Content-Type: application/x-www-form-urlencoded
__Content-Length: AUTO
__
_-yourdata
__POST /your/stuff HTTP/1.1
__Host: localhost
__Content-Type: application/x-www-form-urlencoded
__Content-Length: AUTO
__
_-yourdata
_WAIT
_WAIT
_WAIT
END
Regards