Search Results

0
votes

Can XFire SOAP server send HTTP 301 REDIRECT to client?

Many soap clients won't follow redirects because you're not supposed to follow redirects on POSTs without confirmation from the user. (and all SOAP requests are POST) …
2
votes

HTTP headers encoding/decoding in Java

See the HTTP spec for the rules, which says in section 2.2 The TEXT rule is only used …
6
votes

Problem using NSURLRequest to POST data to server

You should remove the leading & in the myRequestString, and the problem is likely that the correct content-type header is not being sent. try adding a call to [request setValue: …