Mehran
Mehran

Reputation: 16921

Using SignalR as a standalone server application, and not an Asp.Net one

As promising as SignalR sounds, I don't like the fact that it's an Asp.Net application. To be honest I'm a C# developer who is not familiar with Asp.Net concepts a bit. I've used C# as an application language but never as a webserver language (I don't think I have seen beyond IIS4, the last of it was when I used ASP and VB).

My question is, can I use SignalR as a standalone server application that don't make use of IIS or Asp.Net? How?

Upvotes: 1

Views: 2280

Answers (1)

N. Taylor Mullen
N. Taylor Mullen

Reputation: 18311

Yup, you can self-host!

http://www.asp.net/signalr/overview/getting-started/tutorial-signalr-self-host

Hope this helps!

Upvotes: 4

Related Questions