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;