Questions tagged [easyxdm]

easyXDM is a Javascript library that enables you as a developer to easily work around the limitation set in place by the Same Origin Policy.

Per easyXDM

At the core easyXDM provides a transport stack capable of passing string based messages between two windows, a consumer (the main document) and a provider (a document included using an iframe). It does this by using one of several available techniques, always selecting the most efficient one for the current browser. For all implementations the transport stack offers bi-directionality, reliability, queueing and sender-verification.

41 questions
1
vote
1 answer

easyXDM without Flash

We are evaluating easyXDM for reading 3rd party cookies with http://easyxdm.net/wp/2010/03/17/sending-and-receiving-messages/ (i.e. following socket based messages). We have observed that easyXDM uses flash for communication. I would appreciate your…
Anand Soni
  • 5,070
  • 11
  • 50
  • 101
1
vote
0 answers

ONLY Safari iframe content load error

I'm running the latest Meteor version v1.3.3.1. This is my scenario. I have an Meteor App. think of Disqus, So I embed a link 'http://frontend.dev:4000' to a webpage in 'http://localhost:8000' The emebed works and function as expected on every other…
Sahan
  • 1,422
  • 2
  • 18
  • 33
1
vote
1 answer

easyXDM get "access denied" on IE8

Guys I made a simple easyXDM code, it do not work on IE8, but works fine in all the other browsers, please help to find if I made any mistakes in my code. (I got access denied error in IE8). Local Domain: $(document).ready(function(){ var rpc =…
Garnet
  • 11
  • 3
1
vote
1 answer

EasyXDM: download files from 3rd party service

I want to make JavaScript cross domain request to 3rd party server. I've read about easyXDM but still can't finally figure out how does it work. I tried their example in Chrome but it doesn't work for me (Entity to Large for music and Not Allowed…
VB_
  • 45,112
  • 42
  • 145
  • 293
1
vote
0 answers

Communicating with two providers on the same domain

I'm trying to implement easyXDM into our current project so that users were able to work with several systems during one workflow with access from a single interface. In other words when a user opens page X the application from another domain should…
konart
  • 1,714
  • 1
  • 12
  • 19
1
vote
0 answers

easyXDM rpc with HashTransport callback not being fired

I'm using easyXDM 2.4.17. I've setup RPC with a remote 'tunnel.html' which makes AJAX calls using jQuery. For all modern browsers (those with postMessage) everything is working fine. When I test on ie7 easyXDM falls back to the HashTransport and…
jckdnk111
  • 2,280
  • 5
  • 33
  • 43
1
vote
0 answers

easyxdm Put giving a 400 Bad request Error

I'm facing a problem with PUT request when using easyXDM. Other Operations such as POST, DELETE works fine. Initially it was placing data in query string. Tried following another post: easyXDM PUT places data in query string After changing the code…
Aditya
  • 173
  • 1
  • 3
  • 12
1
vote
1 answer

Cross Domain Ajax call EasyXDM

I'm trying to make a cross domain Ajax call using EasyXDM, because this gives support for IE apparently. I have the following code, It says in the documentation that you need to call the cors file on the other domain, but it mentions you can skip…
user1937021
  • 10,151
  • 22
  • 81
  • 143
1
vote
0 answers

Remote method is getting called twice using EasyXDM interface (for cross domain IFrame communication) method when there are 2 channels

I have got 2 IFrames on a host Page and wanted to set up the bi-directional channel between Host page and IFrames. For that I used easyXDM Interface class and was able to set up the communication between the host page and iFrames. Host page is on…
1
vote
0 answers

Update document url in easyXDM

How can I dynamically update the consumer's location using easyXDM? I've tried the following code without success. Provider var socket = new easyXDM.Socket({ onReady: function(){ socket.postMessage("update-remote"); }, onMessage:…
Diogo Cardoso
  • 21,637
  • 26
  • 100
  • 138
1
vote
0 answers

Loading html from a different domain using easyXDM

I am trying to load html from a different site using easyXDM, but it does not work for me when I try to do it through HTTP GET. Does anyone know what is the cause for the problem?