Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.

dottorduino

Member Since 10 May 2012
Offline Last Active Aug 06 2012 04:19 PM
-----

#29100 HttpWebRequest GetResponse Error

Posted by dottorduino on 15 May 2012 - 10:50 AM

Hi Duini :)

When I call the GetResponse method, it return a null status.

This is the code

 String URI = "http://" + serverIP + "/testPoll/signalr?";            
 
 pollString = URI + "transport=longPolling";
 pollString += "&connectionId=" + _connectionID;
 pollString += "&connectionData=" + Tools.RawUrlEncode("[{\"name\":\"testPoll.Chat\",\"methods\":[\"addMessage\"]}]");                        
 pollString += "&messageID=" + 45;
 pollString += "&groups=" + Tools.RawUrlEncode("[\"testPoll.Chat.foo\"]");
 pollString += "\r\n";
            
 var request = (HttpWebRequest)WebRequest.Create(pollString);
 request.Method = "GET";
 request.KeepAlive = false;

 try
 {
  var httpResponse = (HttpWebResponse)request.GetResponse();

  [...]


When I inspect on httpResponse, I have:

ContentEncoding: 'HttpResponse.ContentEncoding threw an Exception of type 'System.NullReferenceException'
ContentType: 'HttpResponse.ContentType threw an Exception of type 'System.NullReferenceException'

and the HttpStatus is "null".

Why I obtain this null Response?


home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.