I am writing a mobile application sing Titanium. I use SignalR because the server is written in C#, but I need to run the signalR client in a webview on the phone. My question is if there is any implementation of SignalR client that does not require JQuery
I am writing a mobile application sing Titanium. I use SignalR because the server
Share
Those are the available
Signalr clientsfor various platforms:Microsoft.AspNet.SignalR.Client.JS(jQuery plugins for Signalr)Microsoft.AspNet.SignalR.Client.Silverlight5(for Silverlight 5 clients)Microsoft.AspNet.SignalR.Client.WP8(for Windows Phone 8 clients)Microsoft.AspNet.SignalR.Client.WinRT(for WinRT clients)Microsoft.AspNet.SignalR.Client(for .NET clients – full framework)Microsoft.AspNet.SignalR.Client45(for .NET 4.5 clients – full framework)In your question you seem to be talking about some webview and some phone without giving any specifics but if this is a Windows Phone application there’s a
Microsoft.AspNet.SignalR.Client.WP8just for you. If this is some other platform you will have to check the documentation whether it has some WebSockets implementations available for it if there are not official client implementations for it.