views:

72

answers:

2

I am trying to use OBJECT to embed content from a remote server into a webpage. The remote content is a component provided by a third party and they host it on their domain. I have been able to get the OBJECT tag to "work" for all browsers using relative URL's for data (same domain) but IE fails completely any time the data attribute references a remote site.

Is there a way for me to get around this limitation? Is it something that can be fixed with a crossdomain.xml entry or some other flag that can be specified in the HTML?


I realize that IFRAME is a possible alternative solution to using an OBJECT but I would prefer to find out how to handle this with an OBJECT if possible. If it is not possible to do this with an OBJECT then I will know I have to look for other options.


Based on another question I have decided that I will try to make this work with an IFRAME and not worry about OBJECT tags. If it ends up causing issues with the third party provider's software we can address it at that point.

+1  A: 

Would placing it in an iframe work?

Dennis Palmer
I would like to find out if there is a solution to this problem without resorting to using an iframe but I will do that if I am unable to find an object solution.
Beau Simensen
A: 

This guy covers the topic pretty well if your looking for alternatives / workarounds.

Objects Cross Domain

Sounds like a proxy method on your webserver may be the way to go though if you really want it in an Object.

Leigh Shayler