I have a site, foo.com, that makes ajax requests to bar.foo.com. Will this work.
Also, if foo is a secure connection, https, does bar.foo.com need to be https too? Can these two sites use different certificates?
|
3
|
I have a site, foo.com, that makes ajax requests to bar.foo.com. Will this work. Also, if foo is a secure connection, https, does bar.foo.com need to be https too? Can these two sites use different certificates? |
||
|
|
|
|
With plain-http AJAX: You are talking about doing cross-domain XMLHttpRequest, which is not permitted by browsers. There's a W3C proposal pending to implement this in a secure way in the future (partially implemented by IE8, IIRC), but it's definitely not possible at present. There are, however, workarounds for doing it securely: Subspace (which uses iframes and As far as SSL goes, you can buy separate certificates for the domain and subdomain, or a single wildcard (*.foo.com) cert that covers them both (naturally, the wildcard cert will be more expensive). If you have an HTTPS page that requests items from other domains, all will be well as long as everything is HTTPS. That means that if you use one of the iframe workarounds, you have to specify an A final, less efficient, workaround is to have a script on EDIT: I changed the last 3 grafs after doing some extra testing and getting an iframe AJAX workaround (the #fragmentidentifier one) to work across different HTTPS domains. You can do SSL cross-domain AJAX using iframes as long as everything is
|
|||
|
|
|
|
Most browsers will, depending on their security/privacy setting, block any outside call made - and only allow AJAX calls made to the same domain. Even subdomains are blocked, because on shared environments they might pose a real threat. In short: only make AJAX calls through the same domain (perhaps call a page, that in turn calls another page from another domain - through curl/fopen/...), or you'll run into troubles. That also answers your SSL question - it doesn't matter what SSL you're using, or whether they're the same - calls will get blocked, despite the SSL. |
||
|
|
|
|
Yes you can get different certs for both domains. It's all in how you decide to configure it. You can configure a web server for foo.com and you can open port 80 for non secure and port 443 for secure and use both. You can configure a different web server for bar.foo.com and do the same port configs. If you need to ensure that you are secure on both then you need to get certs for each different domain. You might be able to buy a *.foo.com cert that would enable you to copy the one cert to the other site and use it. Regardless if your request links to http://bar.foo.com you will not have a secure connection. You have to have the http"s" in there to tell the webserver to use port 443 and attempt to validate the cert. All certs really do is say that the source is trusted. Even if it isn't trusted and you do use http"s" and there is a lock on the browser your data is encrypted anyway. |
||
|
|