What is the difference between http://www.app.com and http://app.com

and how it affects to cross-domain policy of Ajax

I mean i added ajax request in app

                 $.ajax({
                      type: "POST",
                      url: "http://app.in/getToken",
                      contentType: "text/html",
                      success: function(msg) {
                               alert(msg);
                          }
                    });

it works in chrome but not in firefox

Whats the issue?

Thanks

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

See the Same Origin Policy chapter of Michal Zalewski's Browser Security Handbook. www.example.com is a different domain than example.com under same-origin policy.

As Deanna points out, scripts can communicate with each other through iframes or separate windows if the subdomain sets its document.location to the higher domain. However, setting document.location has no effect on XMLHttpRequests; the domain and subdomain cannot send XMLHttpRequests directly to each other.

link|improve this answer
feedback

They are different sites. IIRC, there is a tag you can add to each site saying "this is the same site" for XSS but I can't remember detaisl or how standard it was. As for a solution, use relative URLs.

link|improve this answer
feedback

The www-site is somewhat a subdomain of the app.in domain. Most websites got a redirect from to the www-site, so all users go to the same page.

If the site doesn't do the redirect automatically for you, some browsers will do it as a feature, but it's not standard. In requests by code you should always add the www if you want to be sure your app will get the right results.

link|improve this answer
"some browsers will do it as a feature" [citation-needed]. I have yet to see such browser; also, that would not be a feature, that would be an unexpected, incorrect behavior (a.k.a. "a bug"). The www subdomain is not special in this regard, except as a convention to denote a web-server (as in "HTTP server on port 80"); this convention is not strictly upheld (note e.g. this site - your theoretical auto-redirecting browser would break on the lack of www.) – Piskvor Jan 25 '11 at 9:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.