Page 1 of 1
Parsing ASPX Post in php
Posted: Thu Sep 25, 2008 3:49 pm
by oldtimer
I have someone who is trying to use aspx to post to my .php script. However I can not see any output. Any ideas. I have tried raw post and raw get. I can tell by apache logs that it is a post. Now i am not positive their form works so I am kind of in a pickle.
Re: Parsing ASPX Post in php
Posted: Thu Sep 25, 2008 5:43 pm
by oldtimer
Well i found out it was not me. They were using
Code: Select all
objRequest.ContentType = "application/x-www-form-urlencoded";
Had them change it to
Code: Select all
objRequest.ContentType = "text/xml";//;charset=ISO-8859-1";
Seems when they sent it the other way there was no content.