cross-domain

Running Google Analytics in iframe?

Our company runs a web site (oursite.com) with affiliate partners who send us traffic. In some cases, we set up our affiliates with their own subdomain (affiliate.oursite.com), and they display selected content from our site on their site (affiliate.com) using an iframe. Example of a page on their site: <html> <head></head> <body> <ifr...

Cross Domain User Tracking

We have several websites on different domains and I'd like to be able to track users' movements on these sites. Obviously cookies are not feasable, because they don't cross domain borders. I could look at a combination of IP address and User Agent, but there are some cases where that does not work. I don't want to use flash or other p...

cross-domain hosted Silverlight app not loading in a https webpage

I want to provide silverlight app to my customer while hosting the app at my own site for streamlined maintenance. my Silverlight .xap is hosted in, let say, domain me-supplier.com i want to embed it in, let say, domain my-customer.com It works perfectly for http://my-customer.com, not for https://my-customer.com i have added t...

Secure iframe on unsecure page in a different domain

Our company is looking into allowing third party sites to use our online checkout system. A client has stated that they would like to be able to use a lightbox style popup to display the checkout. And they would like this to be available on every page of the site, therefore mostly unsecure pages. Our checkout system and the client site ...

Cross browser scripting proxy

I am developing some client side javscript that is using some JSON web services on a different domain. I have read that some browsers do not allow cross-domain scripting and that I should create a proxy on my local server to serve the data. Can someone please point me to a simple example of how to do this in ASP.Net? ...

Is it possible to hide/close and iframe from within itself or on the server side?

Suppose I have a page that I am writing a javascript plugin for on the domain first.com. The javascript plugin injects an iframe pointing to a login page (of domain second.com) into the first.com page and displays it as a popup so that the user can login. Is there anyway for me to hide/close the iframe after the user logs in with it? ...

Cross Domain JSON Enabled WCF

Hello, I have a WCF Service decorated with WebInvoke attributes and WebHttp binding for JSON enabling. The service can be accessed from JavaScript until we try to make it working cross domain. Can you please recommend how to get this to work cross domain? We've tried to create proxy web handler but it gives "Bad Request" everytime Web...

problem with cross-domain ajax calls...

hi, i have two servers a main site and a static server. i want to get a file's content from ajax in runtime, which is stored in static server. obviously cross domain problem will occur. so what i am trying to do is storing that ajax .js in the static server, so that calling the local file wont be a problem. but after i include that j...

Embedding text/html in an Object (instead of an iframe)

<iframe data="/localfile.html" type="text/html" width="200" height="200"></iframe> <iframe data="http://example.com/remotefile.html" type="text/html" width="200" height="200"></iframe> <object data="/localfile.html" type="text/html" width="200" height="200"></object> <object data="http://example.com/remotefile.html" type="text/html" widt...

How to add a user in a different Active Directory Domain in C#?

So my goal is to be able to add a user from one Active Directory Domain to another group in a separate Active Directory Domain. I'd like to do this in C#. I know there is a System.DirectoryServices namespace with classes to communicate with AD, but I can't find any information on adding users across domains. In the environment there a...

Cross Domain Javascript Bookmarklet

Hi Everyone, I've been at this for several days and searches including here haven't give me any solutions yet. I am creating a Bookmarklet which is to interact with a POST API. I've gotten most of it working except the most important part; the sending of data from the iframe (I know horrible! If anyone knows a better solution please le...

Implementations of Subspace JavaScript cross-domain communication?

This pdf paper describes a way to manage cross-domain communication using JavaScript with a bit of help from the server. Does anyone have experience with this approach? I know CrossSafe has an implementation, but it's pretty quiet over there. (NSFW spam in that group.) While we're here, does anyone know of a good flash bridge? I'm O...

Can I use an <img> tag to send cookies across domains?

Look at this situation: www.websitea.com displays an img tag with a src attribute of www.websiteb.com/image.aspx?id=5 and style="display:none" www.websiteb.com returns an clear image, in addition to a cookie with a name of referrer and value of 5 (created server-side from validated querystring.) Would the cookie be created on domain ...

Setting cross-domain cookies in Safari

Evernote's bookmarklet is able to do this, therefore the most upvoted answer does not answer this even though the bounty will go to it (in a non-productive manner). I have to call domain A.com (which sets the cookies with http) from domain B.com. All I do on domain B.com is (javascript): var head = document.getElementsByTagName("head"...

How to set current document.domain in WebBrowser Control to avoid "Access is denied"?

How can I set current document.domain in WebBrowser Control to avoid "Access is denied" in Cross-domain calls (XMLHTTP Requests or Iframe/frame access)? I've tried CurrentDocument = WebBrowserControl.Document CurrentDocument.domain = "example.com" Console.writeline("xx" & CurrentDocument.domain) This doesn't work, somehow it never r...

How to carry out Cross Domain request in a Webbrowser Control?

As you know doing Cross Domain XMLHTTP requests is not allowed for security reasons under Internet Explorer. I have a WebBrowser Control and I'm using DocumentText instead of Navigate to a URL. Since the current domain is about:blank when the page tries to do a request to itself or other domain I'm getting Access is denied Javascript er...

Cross Domain security error in Silverlight?

I'm trying to read a feed from Yahoo Pipes into a Silverlight Application. I keep getting a SecurityException, which sounds like a cross domain policy problem, but Yahoo pipes, if you go through the pipes.yahooapis domain, has a cross domain policy, so should be ok. I tried the exact same code, but going to the Digg API, and it works fin...

Silverlight: How to ignore (the absence of) crossdomain.xml with System.Net.WebClient?

I get security exception when using System.Net.WebClient to do HTTP requests, which is due to the fact that crossdomain.xml or clientaccesspolicy.xml on the target server are either missing or are too restrictive. I know there is a good reason for this (cookies and cross-site request forgery), but it does not apply in my case since all I...

Silverlight Crossdomain

I've seen a lot of links to MSDN and "works on my machine!" answers so I'd like to ask my question with the exact steps to duplicate what I'm doing. Because we are using an already existing webservice, I'm asking with the context of having a webservice hosted outside of my project, unlike many of the tutorials and videos online. So here ...

How to make cross-domain communication between JavaScript and Flash?

How do I open 'cross-domain security', so the JavaScript on the page can freely communicate with the SWF, even when this is hosted on another domain? I know for certain that this function communication is blocked by default, but by playing around with a file called "crossdomain.xml" and the actionscript 3 function: system.Security.allow...