June 29, 2011

Windows CE c# .net compact framework webException "the response did not contain an end of entity mark"

This problem usually occurs on the Compact Framework of .Net.

Just setting the HTTP ProtocolVersion of the WebRequest to version 1.0 fixed my problem:

request.ProtocolVersion = System.Net.HttpVersion.Version10;



I found this solution at this blog

No comments:

Post a Comment