Good Morning,
I have a POC application I'm writing that is using Claims Authentication / Authorization providers. It is using claims, as expected and I even have it working with the SessionAuthenticationModule. However, when I have the application configured to write to a cookie (And load it in an iHttpModule), my AJAX calls from some combo boxes do not work. I am challenged with my Windows credentials and they do not work. Taking out the session Authentication Module lets it work just fine. So, the SessionAuthenticationModule itself is doing what it needs to in terms of storing my claims in a cookie, however, it breaking my AJAX calls. Any ideas on what is wrong and how to fix this?
Including some relevant config:
Service config XML:
<services> <service name="ABCDE.ControlServices.DropdownMethods"> <endpoint address="" behaviorConfiguration="ABCDE.ControlServices.DropdownMet ...

Go to the complete details ...