I am using windows authentication to log in to my application. I am also publishing some webservices for the other application to use. We moved some of the code to the MVC and are in process of moving the rest which includes Web Services that are being published. I have to keep the Web services folder inside the application folder in order to not to deviate from my MVC pattern. But then the calls to the published webservices will also follow the windows authentication which I do not want. Basically, I want to bypass the Windows Authentication in case there is say "WebServicesCall" keyword in the URL. Is this Possible. If yes, how?
Thanks!