HTTP/1.0 is defined in RFC ????.
HTTP/1.1 is defined in RFC 2616.
A GET looks like this:
...
A POST looks like this:
POST /api/integrate.asp HTTP/1.1 Connection: close Host: localhost:8090 User-Agent: libwww-perl/5.65 Content-Type: application/x-www-form-urlencoded Content-Length: 177 qf=xml&xml=%3C%3Fxml%20version%3D%221%2E0%22%3F%3E%0A%3Csystem%3E%0A%09%3Csystem_name%3Ediagnostics%3C%2Fsystem_name%3E%0A%09%3Caction%3EPing%3C%2Faction%3E%0A%3C%2Fsystem%3E%0A
or like this:
POST /api/integrate.asp HTTP/1.1 content-type: text/xml; charset="utf-8" User-Agent: Java/1.5.0_01 Host: localhost:8090 Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 Connection: keep-alive Content-Length: 104 <?xml version="1.0"?> <system> <system_name>diagnostics</system_name> <action>Ping</action> </system>