Hi,
I'm using the signalR with ASp.NET MVC application and both the SignalR and MVC applications are on different domains.
For-example: SignalR is on www.domain1.com whereas the MVC app is on www.domain2.com.
So I need to know how can we implement form authentication in this situation.
I know if the MVC app and signalR under the same sub domain then we can implement the form authentication as suggested here:
https://stackoverflow.com/questions/22472078/how-to-do-forms-authentication-with-signalr-separate-domains
Thanks.