Santrack
Santrack

Reputation: 752

Unable to connect to signalR server from iOS

I am working on chat app where I need to connect to win server which uses signalR framework for real time communication, I am also using the same at my end. When I run the app, it throws an error "Incompatible protocol version". I did debugging the code and found that server code is 1.1 and mine is 1.0, because of this the app is terminating and not connecting to server. I got this updated signalR code for iOS from cococpods. I don't know how to get the 1.1 code.

Could someone tell me how to get this updated code?

Thanks

Upvotes: 1

Views: 1598

Answers (1)

N. Taylor Mullen
N. Taylor Mullen

Reputation: 18301

See Does an incompatible protocol version have any impact?.

I'm assuming you're using a third party client for SignalR. You need to downgrade your server to a compatible protocol version or wait for an updated third party client. You can use Nuget to pull down specific versions of SignalR.

Upvotes: 2

Related Questions