My MVC Website has a form authorization in web.config. Now all the page need to pass the authorization,so that they can be viewed.
But Now I have a console program (C# console program). This program need to send some message to SignalR Hub. But My signalR Hub is in my MVC Website,Now this C# console client can't send message to Signal Hub, Because My MVC Website has Form Authorization.
I want the console client doesn't need to be verified,but the pages in website need to be verified.
What Can I do with the website's web.config file?