I am new, I am developing an application that uses distributed resource.

I have one server called "presentation server" which serves everything related to template and ajax application (css, images, js, ...)

The second server only for serving raw data (let say, when you send a "GET /resources/a-resource", it return "text/plain, 'abc' "), actually I am developing an embedded RESTful interface on a device.

I have a client that connects to the first server, downloads the template. Then, the ajax code retrieves raw data from second server and present to user using the template.

I have a cross-domain problem with ajax here I know. I also know some current solution such as jquery or script tag.

What I am really concerning here is the Cross Document Messaging capability of HTML5. But what I found is just, they open two windows (a window + an Iframe or a window + a window) and passing message between each other.

it is not really like one sending a "GET" to some other and process the returned data, like XMLHttpRequest did.

Please show me how really Cross-document-messaging in HTML5 can over come my problem.

** In short, My pain here is the XMLHttpRequest did truely send a GET to other source but the Cross-document-messaging does not(as I know), I wander if HTML5 with Cross-document-messaging is able to do as XMLHttpRequest in sending a GET to other domain or not

I really thank you for that.

link|improve this question

0% accept rate
feedback

1 Answer

But what I found is just, they open two windows (a window + an Iframe or a window + a window) and passing message between each other.

That's not true. You can have multiple iframe's in a document, each coming from a different domain, and all of them can post and receive messages from each other. So you don't need to have the pages in completely separate windows.

Also since you control both the presentation and API server, you can just set the Access-Control-Allow-Origin header on the API server to only accepts clients coming from your presentation server. That will allow you to use AJAX as you normally would.

link|improve this answer
Yeah, I am not concerning about IFrame because I just wanna know how to send a GET to my API server, IFrame + Cross-Document-Messaging does not solve the GET. That's my point. – nhong Jun 24 '11 at 8:43
Also, like you said, it is not HTML5 + Cross document messaging that solve the problem right? so it cannot solve my problem and I have to forget the HTML5 + its stupid Cross document messaging stuff? – nhong Jun 24 '11 at 8:45
I have read your recommend and I wander if it is capable for other web browser as well? like Chrome or IE or Safari? – nhong Jun 24 '11 at 8:58
iframe + cdm solves your problem like this - presentation iframe sends a message to the api iframe asking for some data. the api iframe will make a call to the api server with full access as its coming from the same domain. when it gets the data, it will post a message to the presentation iframe. the presentation iframe will receive the message, verify the sender, and then proceed with using the contents of the message. – Anurag Jun 26 '11 at 21:04
@nhong - here's an article talking about cross-browser implementations – Anurag Jun 26 '11 at 21:08
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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