Archive for November, 2008
This Request Requires Request Buffering or Authentication
Using the compact Framework, I ran into this error when creating a web request to a webservice, not using a web reference.
I added:
hwr.AllowWriteStreamBuffering = true;
hwr.PreAuthenticate = true;
and this resolved the issue.
No comments