how to receive server push data in c#? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T09:21:17Zhttp://stackoverflow.com/feeds/question/1002677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1002677/how-to-receive-server-push-data-in-c0how to receive server push data in c#?bin2009-06-16T16:46:27Z2009-09-25T21:52:50Z
<p>I am writing a program. my program receive data from a server through HTTP protocol. the data will be pushed by server to my program.
I tried to use WebRequest, but only received one session of data.
How can i keep the connection alive, to receive the data from server continuosly,
Any help is appreciated.</p>
<p>the following is the SDK document:</p>
<p>Under the authorization of GUEST or ADMIN, it is possible to get the series of live images
(Server push). To get the images, send the request to “/liveimg.cgi?serverpush=1” as shown
in the Figure. 2-1-1.<br />
When the camera receives the above request from the client, it sends the return as shown
in the Figure. 2-2.<br />
Each JPEG data is separated by “--myboundary”, and “image/jpeg” is returned as
“Content-Type” header, after “--myboundary”. For “Content-Length” header, it returns the
number of bytes in the --myboundary data (excluding “--myboundary”, each header, and
\r\n as delimiter). After the “Content-Length” header and “\r\n” (delimiter), the actual
data will be sent.<br />
This data transmission will continue until the client stop the connection (disconnect), or
some network error occurs. </p>
<p>int len;
string uri = @"http://192.168.0.2/liveimg.cgi?serverpush=1";</p>
<pre><code> HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(uri);
req.Credentials = new NetworkCredential("admin", "admin");
req.KeepAlive = true;
string line = "";
HttpWebResponse reply = (HttpWebResponse)req.GetResponse();
Stream stream = reply.GetResponseStream();
System.Diagnostics.Debug.WriteLine(reply.ContentType);
StreamReader reader = new StreamReader(stream);
do
{
line = reader.ReadLine();
System.Diagnostics.Debug.WriteLine(line);
System.Threading.Thread.Sleep(300);
} while (line.Length>0);
</code></pre>
http://stackoverflow.com/questions/1002677/how-to-receive-server-push-data-in-c/1002698#10026980Answer by ocdecio for how to receive server push data in c#?ocdecio2009-06-16T16:52:39Z2009-06-16T16:52:39Z<p>If you are using a standard web server, it will never push anything to you - your client will have to periodically pull from it instead. </p>
<p>To really get server push data you have to build such server yourself.</p>
http://stackoverflow.com/questions/1002677/how-to-receive-server-push-data-in-c/1002729#10027290Answer by Ragoczy for how to receive server push data in c#?Ragoczy2009-06-16T16:57:28Z2009-06-16T16:57:28Z<p>If I'm understanding you correctly, your server is going to respond to some event by sending data to your client outside of the client making a request/response. Is this correct? If so, I wouldn't recommend trying to keep the connection open unless you have a very small number of clients -- there are a limited number of connections available, so keeping them open may rapidly result in an exception.</p>
<p>Probably the easiest solution would be to have the clients poll periodically for new data. This would allow you to use a simple server and you'd only have to code a thread on the client to request any changes or new work once every minute or thirty seconds or whatever your optimal time period is.</p>
<p>If you truly want to have the server notify the clients proactively, without them polling, then you'll have to do something other than a simple web server -- and you'll also have to code and configure the client to accept incoming requests. This may be difficult if your clients are running behind firewalls and such. If you go this route, WCF is probably your best choice, as it will allow you to configure server and client appropriately.</p>
http://stackoverflow.com/questions/1002677/how-to-receive-server-push-data-in-c/1002736#10027361Answer by richardtallent for how to receive server push data in c#?richardtallent2009-06-16T16:58:59Z2009-06-16T16:58:59Z<p>You can keep an HTTP connection open for an extended period of time, if the server supports doing so. (As already mentioned, this will significantly limit the number of simultaneous users you can support.)</p>
<p>The server will need to be set Response.Buffer=false, and have an extended ScriptTimeout (I'm assuming your using ASP.NET on the server side). Once you do that, your page can keep sending Response.Write data as needed until whatever it is doing is done.</p>
<p>Your client will need to process the incoming Response before the connection is complete rather than blocking for the complete response.</p>
http://stackoverflow.com/questions/1002677/how-to-receive-server-push-data-in-c/1479743#14797431Answer by rajax for how to receive server push data in c#?rajax2009-09-25T21:52:50Z2009-09-25T21:52:50Z<p>You may want to take a look at <a href="http://www.stream-hub.com/" rel="nofollow">StreamHub Push Server</a> - its a popular Comet server and has an .NET Client SDK which allows you to receive real-time push updates in C# (or VB / C++).</p>