I am trying to run the XSockets StockTicker example found here: http://www.nuget.org/packages/xsockets.sample.stockticker
The package installs and displays StockTicker.html, however the websockets server does not appear to start (honestly I have no idea what the problem could be I just know that the page does not update as it should).
A couple notes:
1.) I am running Visual Studio 2013 which appears to self host apps under IIS Express only. Per the application readme file, I should be running under Visual Studio Development Server:
Right click the project and select properties.
Under the "Web" tab go to the "Servers" section and set Use Visual Studio Development Server
Is this a problem, if so - how to fix it?
2.) StockTicker.html contains this line: conn = new XSockets.WebSocket('ws://127.0.0.1:4502/Stock');
There is no class called "Stock" in the root so I assume this uses MVC convention and refers to StockController.cs which is in the Controllers directory. I modified this line as follows to account for where the sample package installed itself and also the port the app runs under: conn = new XSockets.WebSocket('ws://127.0.0.1:62092/StockTickerSample/Stock');
3.) I added a XSocketsBootstrapper per the readme. When I put a breakpoint in the Start method visual studio tells me no symbols are loaded and the method never executes. Is this related to item 1.) above?
I corrected the reference to jquery.