I am using ver 0.5.3 of SignalR assembly in my silverlight application. I use connection.Start().wait() to start the connection: Some of my observations are, which are really strange:
- I run the application (In-Browser) mode via Visual Studio and I am able to establish the connection with the SignalR hub
- If I deploy the app in IIS and then try accessing the application using the IP address of the machine, the call to connection.start().wait() never returns. I checked the Fiddler and figured out that the call never goes to the SignalR hub
- If I use the application in OOB mode (Out of Browser mode), application works without any issue.
My requirement is that it should work in in-Browser mode. Can somebody throw some light, what could be the issue?
Thanks, Alpee