Hi,

Hi I have a distributed application where the main business layer lives on a different subdomain than the main web front end.

We are using Asp.net webforms 4.0 and our services are WCF based. I am using Jquery 1.7.2

EG http://App.mysite.com & http://Services.mysite.com

I am able to get the forms Authentication cookie posted over from the server side code using WCF calls and we can read the username from the cookie.
However I am having an issue trying to read the forms authentication cookie when the request is posted using jQuery.
If I move the services WCF website onto the same box i.e. http://App.mysite.com. The cookie is posted no problems at all.

I have this in my code to ensure cross domain will work:

jQuery.support.cors = true;

and I have even tried this but to no avail:

 $.ajax( {
   /* Setup the call */
   xhrFields: {
&nbs ...

Go to the complete details ...