Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I previouly wrote a code Web Service always return empty plain/text, but why do I get funny text/plain before text/xml?

Below is the reponse I get from Fiddler:

HTTP/1.1 200 OK
Date: Fri, 07 Sep 2012 08:59:57 GMT
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: text/plain

21ff
����������������������������������������������������������������������������������������������������������������������HTTP/1.1 200 OKServer: Apache-Coyote/1.1
Content-Type: text/xml;charset=utf-8
Transfer-Encoding: chunked
Date: Fri, 07 Sep 2012 09:05:27 GMT

179
<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

UPDATED:

Disable Expect100Continue solved the problem:

ServicePointManager.Expect100Continue = false;
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.