<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tutorial:  Getting Started with SignalR</title><link>http://asp.net</link><pubDate>Wed, 15 May 2013 14:34:29 GMT</pubDate><generator>umbraco</generator><description>Comments for Tutorial:  Getting Started with SignalR</description><language>en</language><atom:link href="http://asp.net/rss/comments/43478" rel="self" type="application/rss+xml" /><item><title>Comment Posted by theOwl</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 21 Feb 2013 14:49:35 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018486</guid><description><![CDATA[ <p>Following the steps above to set up the project I ran into the issue of the variable chat being undefined upon reaching line 36:</p><p></p><p>Unhandled exception at line 36, column 13 in http://localhost:50265/SimpleChat.html</p><p></p><p>0x800a138f - Microsoft JScript runtime error: Unable to get value of the property &#39;client&#39;: object is null or undefined</p><p></p><p>Any idea what I am doing wrong?</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/theOwl.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by timlt</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 21 Feb 2013 18:22:18 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018491</guid><description><![CDATA[ <p>One cause for this is an issue with the route (whether you created an empty ASP.NET app as in the tutorial, or an MVC app).  </p><p></p><p><a rel="nofollow" href="http://forums.asp.net/t/1865960.aspx" target="_blank">forums.asp.net/</a></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/timlt.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by theOwl</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 21 Feb 2013 18:22:47 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018492</guid><description><![CDATA[ <p>I found a way to fix my issue.  I needed to add a HubName in ClassHub.cs:</p><p></p><p>using Microsoft.AspNet.SignalR.Hubs;</p><p></p><p>namespace SignalRChat</p><p>{</p><p>    [HubName(&quot;chatHub&quot;)]</p><p>    public class ClassHub : Hub</p><p>    {</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/theOwl.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by fabiogalalante</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Tue, 26 Feb 2013 09:03:04 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018521</guid><description><![CDATA[ <p>PM&gt; Install-Package JSON2</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/fabiogalalante.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by timlt</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Tue, 26 Feb 2013 11:44:59 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018522</guid><description><![CDATA[ <p>You CAN attribute your hub (if for example you want to reference it in pascal casing in client script), but it&#39;s not required.   The sample works without the attribute if you use the provided code which references the hub class using jQuery conventions (&quot;chatHub&quot;).  </p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/timlt.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by galmok</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Wed, 27 Feb 2013 08:06:31 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018531</guid><description><![CDATA[ <p>The requirement listed are wrong. There is no Web Tools download for VS2010. It seems Web Tools is only available for VS2012 which means this example is not compatible with VS2010. At least I could not install Web Tool 2012 (the one that was linked to).</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/galmok.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by timlt</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Wed, 27 Feb 2013 12:34:59 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018533</guid><description><![CDATA[ <p>Galmok:  the Prereqs and the tutorial are based on VS 2012.  But you can definitely run this tutorial in VS 2010 SP1; you just can&#39;t use the VS 2012 tooling installer package and you won&#39;t get the SignalR &quot;item templates&quot; for creating a hub class.    Instead, see the Note under step (2) in the &quot;Setup the Project&quot; section, it describes how to add the SignalR Nuget package to your project using the package manager.  After you&#39;ve added the signalr package, manually create a class named ChatHub, and then follow the tutorial. </p><p></p><p>One item to remember:  Update the jQuery script reference in your HTML page to the version of jQuery you are using.  The minimum required jQuery version that installs with SignalR is 1.6.4. </p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/timlt.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dm19898</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Wed, 06 Mar 2013 12:52:35 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018589</guid><description><![CDATA[ <p>for beginners adding to an exiting site that enforces security - add the location &quot;signalr&quot; in your web.config.  This took me awhile to figure out.</p><p></p><p>  &lt;location path=&quot;signalr&quot;&gt;</p><p>    &lt;system.web&gt;</p><p>      &lt;authorization&gt;</p><p>        &lt;allow users=&quot;*&quot;/&gt;</p><p>      &lt;/authorization&gt;</p><p>    &lt;/system.web&gt;</p><p>  &lt;/location&gt;</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/dm19898.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by borekbernard</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 07 Mar 2013 06:58:40 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018600</guid><description><![CDATA[ <p>Followed the tutorial step by step, however, the request to /signalr/hubs never finishes (the browser indicates infinite page loading). What could go wrong?</p><p></p><p>I have VS 2012 Update 1 with Web Dev Tools 2012.2 installed.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/borekbernard.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by husker</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 07 Mar 2013 10:50:21 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018601</guid><description><![CDATA[ <p>Borkekbernard:  See this forum thread, a few users have reported similar issues when using IIS Express in VS 2012 Update 1.  </p><p></p><p><a rel="nofollow" href="http://forums.asp.net/t/1879849.aspx" target="_blank">forums.asp.net/</a></p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/husker.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by dror.saddan</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Tue, 12 Mar 2013 11:40:54 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018663</guid><description><![CDATA[ <p>I had a problem getting Visual Studio to hit globals.asac.cs Application_Start.  Here is what worked for me:</p><p>Go to Project, SignalR Properties, Web tab. Then change Servers to &quot;Use Visual Studio Development Server.&quot;</p><p></p><p>Dror</p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/dror.saddan.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by jmcdonald2</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Sat, 16 Mar 2013 15:17:41 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018716</guid><description><![CDATA[ <p>Followed this tutorial verbatim with Visual Studio 2012...very excited about the potential for SignalR.   Application works great when run within Visual Studio in debug mode, tried to deploy this to IIS7.  Will not run....see lots of articles but none of the solutions worked.   2 days down the drain...very frustrating.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/jmcdonald2.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by hatranpro</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Sun, 17 Mar 2013 18:50:34 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018728</guid><description><![CDATA[ <p>Great, I&#39;m looking forward for the next Tutorial</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/hatranpro.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by timlt</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Mon, 18 Mar 2013 11:52:57 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018733</guid><description><![CDATA[ <p>jmcdonald:  The sample runs on IIS7 as well, in a test we published site from VS to local IIS7 site that runs under an ASP.NETv4 app pool.  If still seeing issues, please post error msg and info about the site you created, in the forum:</p><p></p><p><a rel="nofollow" href="http://forums.asp.net/1254.aspx" target="_blank">forums.asp.net/</a></p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/timlt.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by jmcdonald2</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Tue, 19 Mar 2013 13:53:49 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018740</guid><description><![CDATA[ <p>That last comment from timlt sprung it.   Needed to update the IIS7 application pool for the SignalR app to ASP.NET V4 and it worked!  Thanks for the help!</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/jmcdonald2.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by viewstate</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Tue, 19 Mar 2013 23:15:02 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018741</guid><description><![CDATA[ <p>I ran into the same issue as &#39;theOwl - February 21, 2013 02:49 PM&#39; when I created an MVC4 app version. To solve the problem I did the following;</p><p>- used NuGet to update my signalR scripts to 1.0.1 (Microsoft.AspNet.SignalR)</p><p>- make sure that your Hub route is registered before any other routes. i.e. make sure MapHubs() is done before any other routes are added to the RouteTable.</p><p>- make sure that you script reference is listed as  &lt;script src=&quot;~/signalr/hubs&quot;&gt;&lt;/script&gt; with the &#39;~&#39;</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/viewstate.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by iceman2004</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Mon, 01 Apr 2013 22:49:01 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018824</guid><description><![CDATA[ <p>Great post, I was able to make the sample work with VS2010, the only issue I had was that I named my class in all lower case &quot;chathub&quot;,  Once I made it to chatHub voila, the sample worked like a charm.  Thanks. </p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/iceman2004.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by AartiM20</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 04 Apr 2013 14:00:24 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018852</guid><description><![CDATA[ <p>Can u plz explain $.connection.chatHub? </p><p></p><p>how does the client know the name of the server hub class? where do we connect these 2?</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/AartiM20.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by gineer</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Fri, 05 Apr 2013 09:29:40 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018861</guid><description><![CDATA[ <p>Awsome! Finally a SignalR demo that works. It really is that simple.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/gineer.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by afzaal.ahmad.zeeshan</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Thu, 25 Apr 2013 04:33:53 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000018978</guid><description><![CDATA[ <p>Ummmm would have been helpfull, if Razor tutorial was provided!</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/afzaal.ahmad.zeeshan.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by husker</title><link>http://asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr</link><pubDate>Wed, 15 May 2013 14:34:29 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000019110</guid><description><![CDATA[ <p>Hi afzaal.ahmad.zeeshan, there is an MVC 4 version of this tutorial:</p><p></p><p><a rel="nofollow" href="http://www.asp.net/signalr/overview/getting-started/tutorial-getting-started-with-signalr-and-mvc-4" target="_blank">www.asp.net/</a></p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/husker.jpg?forceidenticon=false&amp;dt=635047931400000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item></channel></rss>