Using sockets to carry out "POST" requests - or use curl?

Stoods

New Member
I've found some code on the progress knowledge base about how to use Sockets to carry out a "GET" request.
However, there is no indication if you can use them to do a "POST" request.

For a certain site we have to connect to we have to carry out a "POST" request - there are no web services for it...
Is this possible, or is the only way to use something like curl to carry this out?

We are attempting to use an appserver to perform this function, not webspeed.

Thanks in advance for your help,

Mike
 
sure it's possible, just a bit different... depends on what you send in that post request, it can be simple variable=value list, xml document or multi-part file upload ;)

so, what do you want to send them? :)
 
Back
Top