Search Results

2
votes

Need assistance with diagnosing SOAP packet problem with Amazon S3

If you want to send the data in the SOAP message itself, you need to use PutObjectInline, and not PutObject (which expects the data to be a DIME attachment). see …
1
vote

Calculating SOAP Content-Length

Its the number of bytes, not the number of characters, so it will depend on the text encoding used. …
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) …
0
votes

Deserialize SOAP array in C#

That SOAP array is an rpc/encoded response, you'll need to make sure you're setting all the attributes on your client class/methods so that the stack knows its handling an rpc/encoded response. (th …