user2137186
user2137186

Reputation: 837

SignalR self hosting generates target invocation error

Console application Html page where server function is being called App configuration file output before error

I am facing some problem in running signalR on TCP protocol. If I change url to http://localhost:8080 then it works fine but when I am trying to run it on net.tcp://localhost:8040 it gives me target invocation error. Any help will be appreciated :) Version of signalR is 1.1.3.

Upvotes: 0

Views: 132

Answers (1)

davidfowl
davidfowl

Reputation: 38764

SignalR is built on HTTP you can't use it with TCP directly.

Upvotes: 1

Related Questions