Parsing ASPX Post in php

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
oldtimer
Forum Contributor
Posts: 204
Joined: Sun Nov 03, 2002 8:21 pm
Location: Washington State

Parsing ASPX Post in php

Post 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.
oldtimer
Forum Contributor
Posts: 204
Joined: Sun Nov 03, 2002 8:21 pm
Location: Washington State

Re: Parsing ASPX Post in php

Post 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.
Post Reply