Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have a webservice running on a server somewhere, and if i access the webservice locally i can type in anything and it takes the inputs without any problem.

However, when trying to make a http-post to the webservice from the outside with inputs containing chars such as '&' in this scenario, i run into http error 400 -Bad request.

The below screenshot is a screenshot of the google-chrome addon/in poster, which allows me to make posts to my server.

So, what i'm trying to figure out is why the server doesnt like the request when special characters are part of the inputs.

Chrome addon Poster

Any ideas/tips and/or pointers will be highly appreciated.

Thanks in advance.

Edit: Please assume that i have a function in the webservice that recieves a string as input.

share|improve this question

1 Answer

up vote 1 down vote accepted

Probably the text is not properly urlencoded. If you are using GET protocol, the query becomes:

?bar1=12345&&bar2=something

Try sanitizing (urlencode) string before negotiating with your webservice.

share|improve this answer
The posts are being sent one by one, the above picture can be misleading. I also never use the GET protocol, i'm explicitly using POST. – Da_smokes Mar 12 '12 at 12:50
Yeah, the thing is, i am encoding the poststring before sending it within my client-environment. I still get 400 :/ – Da_smokes Mar 12 '12 at 12:54
i had to replace & with & – Da_smokes Mar 12 '12 at 14:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.