Parsing ASPX Post in php
Moderator: General Moderators
Parsing ASPX Post in php
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
Well i found out it was not me. They were using
Had them change it to
Seems when they sent it the other way there was no content.
Code: Select all
objRequest.ContentType = "application/x-www-form-urlencoded";Code: Select all
objRequest.ContentType = "text/xml";//;charset=ISO-8859-1";