vote up 1 vote down star

If there anyway allows AJAX between two own domains without proxy hacking, JSONP, Flash or browser security changes? Maybe SSL or something?

flag
1  
I kinda hope there isn't. – Darryl Hein Apr 30 at 20:02
How is the browser supposed to know the difference between your "own" domains, and that of a malware site? – Diodeus Apr 30 at 20:10
I can put anything to any location on own domains to tell about it. For example, flash use special file crossdomain.xml for this. – kingoleg Apr 30 at 20:22

5 Answers

vote up 2 vote down check

A signed Java applet might be able to do it, but that is the same principle as Flash so probably would not meet your requirements.

There is a specification for cross domain requests, but it is still in the development stages.

link|flag
Yes, java applet is not a choice. – kingoleg Apr 30 at 20:20
And thanks for Cross-Origin Resource Sharing link – kingoleg Apr 30 at 20:24
vote up 0 vote down

Just use easyXSS, it allows for easy communication between documents of different domains. Take a look at one of the examples, http://xsslocal.kinsey.no/projects/easyxss/example/methods.html

link|flag
vote up 1 vote down

On the couple of occasions where I've had a similar need to work cross-domain I've sidestepped it by using an embedded borderless iframe of the same color as the embedding page. It's an old technique, predating widespread AJAX use and is often overlooked nowadays because of the 'we'll use AJAX' mindset. you can however do quite a lot with this approach and it might suffice if you are truly stuck. Certainly you can code some quite complex interactions between the embedded and main pages which can give, to some extent, a similar user experience to an AJAX-enabled page.

One obvious thought that does occur though, and one I have never tried - is it possible to embed an iframe for the second domain inside the main page (i.e. the first domain) and communicate from the main page to the second domain via the embedded iframe?

link|flag
vote up 1 vote down

You could try a technique known as 'Ajast'.

Basically your javascript on domain A adds additional <script> tags as needed to the page. These script tags point to javascript files on domain B (which need not be static .js) allowing you to load data from domain B.

link|flag
AKA JSONP - en.wikipedia.org/wiki/JSON#JSONP - which was mentioned as being unacceptable. – David Dorward May 1 at 19:20
vote up 1 vote down

As far as I know, your best bet here is to create a server resource that you can direct your AJAX calls to that will forward them on to the second server on a different domain and then tunnel the results back to your application.

link|flag

Your Answer

Get an OpenID
or

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