Reputation: 1197
I know that Web API is for RESTful services and SignalR is for bidirectional(duplex) communication. But SignalR can be used as RESTful service as well. What is the advantage of Web API over SignalR?
Upvotes: 0
Views: 51
Reputation: 17692
This isn't an exhaustive answer, but the first thing that comes to mind is simplicity. SignalR requires some fairly complex ceremony to set up, especially when dealing with server farms. Web API is far more straightforward, both to understand as a developer and to operate.
Upvotes: 1