[CF 1.0 & CF 2.0] Same code, results different

K

kardath

Hi,

I've tested the following code :

WebRequest req = WebRequest.Create(url);
req.Timeout = TIMEOUT_REPONSE;

WebResponse result = req.GetResponse();


Stream ReceiveStream = result.GetResponseStream();

Encoding encode =
System.Text.Encoding.GetEncoding("utf-8");
System.Xml.XmlTextReader lecteur = new
XmlTextReader(ReceiveStream);

With the CF 1.0 i've the good response, but i've no char in the
response with the CF 2.0...

Have you an idea?

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top