When I consume a Web service, I receive this error:
- The first 1024 bytes of the response were ....
Those 1024 characters are part of an html page that the server is returning. It covers the part of the <head>
and the beginning of <body>
but does not reach the end of the whole (should end in </html>
)
The server has to be returning a more extensive response (the entire web page) so if I only receive 1024 characters, the code that captures the response to see the error is truncated.
Can you increase that size?