WCF push to client through firewall? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T21:04:16Zhttp://stackoverflow.com/feeds/question/22340http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall2WCF push to client through firewall?Sire2008-08-22T13:27:53Z2009-11-18T11:17:25Z
<blockquote>
<p>See also <a href="http://stackoverflow.com/questions/1700917/how-does-a-wcf-server-inform-a-wcf-client-about-changes-better-solution-then-si">How does a WCF server inform
a WCF client about changes? (Better
solution then simple polling, e.g.
Coment or long polling)</a></p>
</blockquote>
<p>I need to use push-technology with WCF through client firewalls. This must be a common problem, and I know for a fact it works in theory (see links below), but I have failed to get it working, and I haven't been able to find a code sample that demonstrates it.</p>
<p>Requirements: </p>
<ul>
<li>WCF</li>
<li>Clients connects to server through tcp port 80 (netTcpBinding).</li>
<li>Server pushes back information at irregular intervals (1 min to several hours).</li>
<li>Users should not have to configure their firewalls, server pushes must pass through firewalls that have all inbound ports closed. TCP duplex on the same connection is needed for this, a dual binding does not work since a port has to be opened on the client firewall.</li>
<li>Clients sends heartbeats to server at regular intervals (perhaps every 15 mins) so server knows client is still alive.</li>
<li>Server is IIS7 with WAS.</li>
</ul>
<p>The solution seems to be duplex netTcpBinding. Based on this information:</p>
<p><a href="http://blogs.msdn.com/drnick/archive/2006/05/01/configuring-wcf-for-nats-and-firewalls.aspx" rel="nofollow">WCF through firewalls and NATs</a></p>
<p><a href="http://blogs.msdn.com/drnick/archive/2006/10/20/keeping-connections-open-in-iis.aspx" rel="nofollow">Keeping connections open in IIS</a></p>
<p>But I have yet to find a code sample that works.. I've tried combining the "Duplex" and "TcpActivation" samples from Microsoft's WCF Samples without any luck. Please can someone point me to example code that works, or build a small sample app. Thanks a lot!</p>
http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall/22835#228350Answer by Damian Hickey for WCF push to client through firewall?Damian Hickey2008-08-22T16:47:52Z2008-08-22T16:47:52Z<p>In most firewall setups, the TCP connection will be torn down by the firewall if it is idle to conserve resources. The idle timeout is probably not something you can control. Some will tear them down if they are idle and a resource limit is being hit.</p>
<p>Most corp environments won't allow any machines to make an outbound TCP connection anyway.</p>
<p>Also, using this mechanism means you are going to have scaling problems. I think more reliable solution is to queue up information and have your clients poll for them regularly. Utilize caching if possible such that a subsequent client poll will get the cached data from the customers proxy cache, if they are using one.</p>
<p>If you have to push data in a timely manner, in sub-second land (i.e. financial services), then consider some messaging infrastructure such an NServiceBus distributor on client side, but that will require a customer install...</p>
<p>So have you tried using Toredo? Having read that it would appear there it is prob too complicated for a user to setup.</p>
http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall/24977#249770Answer by Sire for WCF push to client through firewall?Sire2008-08-24T11:15:56Z2008-08-24T11:15:56Z<blockquote>
<p>TCP connection will be torn down by the firewall</p>
</blockquote>
<p>I don't think firewall teardowns will be the big problem, it can be solved with shorter heartbeats/reconnects from the client.</p>
<blockquote>
<p>Most corp environments won't allow any machines to make an outbound TCP connection anyway.</p>
</blockquote>
<p>Outbound connections will be made on port 80 which we can assume is always open.</p>
<blockquote>
<p>scaling problems</p>
</blockquote>
<p>Surely pull-technology have more scaling problems with clients constantly polling for information. Push is a requirement since a delay of more than a few seconds is unacceptable.</p>
<p>Thanks for the tip about NServiceBus, it looks very useful even though it doesn't specifically solve this problem.</p>
<p>Teredo is too difficult for regular users as you say.</p>
<p>Thanks for your reply. More help anyone? :)</p>
http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall/195141#1951410Answer by smaclell for WCF push to client through firewall?smaclell2008-10-12T06:00:52Z2008-10-12T06:00:52Z<p>I have not tried the scenario you speak of so I can't be too much help, sorry. If all you need to bypass is the client firewall you might want to check out <a href="http://stackoverflow.com/questions/113755/programmatically-add-an-application-to-windows-firewall">this post</a>. </p>
<p>Good luck.</p>
http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall/199129#1991291Answer by marcj for WCF push to client through firewall?marcj2008-10-13T21:43:33Z2008-10-13T21:43:33Z<p>Have you tried looking at: <a href="http://www.codeproject.com/KB/WCF/WCF_Duplex_UI_Threads.aspx" rel="nofollow">http://www.codeproject.com/KB/WCF/WCF_Duplex_UI_Threads.aspx</a></p>
<p>Can you provide examples of what you have already attempted? With details of firewalls etc, error messages?</p>
<p>If both client and server can be addressed directly and firewalls are not an issue, have you considered allowing clients to register a URL providing a supported contract. The server can then call this service whenever it needs to, without the need to establish a long running (but mostly idle connection), avoids the need for heart beating and can be made resilient across sessions\connections.</p>
http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall/204036#2040362Answer by Sire for WCF push to client through firewall?Sire2008-10-15T08:32:34Z2009-06-08T11:02:54Z<p>I've found a couple of solutions:</p>
<p><a href="http://www.remobjectssdk.com/" rel="nofollow" title="RemObjects">RemObjects</a> Commercial, active development, supports everything but does not seem to have all the more advanced features that GenuineChannels use.</p>
<p><a href="http://dotnetremoting.com/dow.aspx" rel="nofollow" title="DotNetRemoting">DotNetRemoting</a> Commercial, seems good enough.</p>
<p><a href="http://www.genuinechannels.com/" rel="nofollow" title="GenuineChannels">GenuineChannels</a>. It uses remoting with a lot of nice added features, the most important one being it works through NATs without the need to open the client firewall. Unfortunately seems to be very dead, mails bouce and their site is infected by the "Virut" virus (!). </p>
<p>Another solution is to use streaming with IIS, according to this article: <a href="http://blogs.msdn.com/drnick/archive/2006/10/20/keeping-connections-open-in-iis.aspx" rel="nofollow" title="Keeping connections open in IIS">Keeping connections open in IIS</a></p>
<p>The client makes the first connection (http with IIS6, tcp with IIS7) to the server at port 80, the connection is then kept open with a streaming response that never ends.</p>
<p>I haven't had the time to experiment with this, and I haven't found a sample that says it specifically solves the firewall-problem, but here's an excellent sample that probably works: <a href="http://blogs.thinktecture.com/buddhike/archive/2007/05/23/414851.aspx" rel="nofollow">Streaming XML</a>. </p>
http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall/1610886#16108860Answer by chenz for WCF push to client through firewall?chenz2009-10-23T00:58:32Z2009-10-23T00:58:32Z<p>Have you tried this one?
<a href="http://code.msdn.microsoft.com/duplexhttp" rel="nofollow">DuplexHttpBinding</a></p>
<p>It is using smart polling technique encapsulated as custom WCF binding. So it should work out of the box.</p>