In the web.config, after the system.web section, add the following:
<system.net>
<settings>
<httpWebRequest maximumErrorResponseLength="-1" />
</settings>
</system.net>
-1 means unlimited but you can use any value in there for the number of bytes.
Jason