IIS and fsockopen

A

Anonymous

Guest
you CAN NOT SEND XML IN GET method as you've mentioned..
your header should be...

Code:
POST /page.php HTTP/1.1
Host: yourhost.com
Content-Type: text/xml
Content-Length: [numeric length]

<root><...>....<.></root>

then in the page.php
you can print the raw http headers...
$GLOBALS['HTTP_RAW_POST_DATA']
 
Back
Top