vote up 1 vote down star

Hello,
I am running a HTTP server on my development machine. I have a website, on some web server on the Internet. How can I get Firefox to allow communication from this website to localhost temporarily while I develop?
Thanks,
Isaac Waller

flag

This isn't programming related. This is a config issue. – cletus Jun 25 at 23:37
3  
it's not code related, but it is programming related. – DDaviesBrackett Jun 25 at 23:40

3 Answers

vote up 4 vote down check

The approach I use in this situation is to insert a hosts-file entry mapping localhost to a subdomain of the target internet site.

link|flag
I tried this but you are not allowed to AJAX to a subdomain (?) – Isaac Waller Jun 26 at 1:01
1  
by editing document.domain (see developer.mozilla.org/en/DOM/…), you can relax the single-origin policy. – DDaviesBrackett Jun 26 at 16:11
vote up 1 vote down

You could use a local proxy (such as fiddler) to route the AJAX requests to the service on your LocalHost.

link|flag
1  
You can trivially write some FiddlerScript to do this. See fiddler2.com/fiddler/dev/… for the "Retarget requests" sample. – EricLaw -MSFT- Jun 26 at 4:13
vote up 0 vote down

If you really need to do it you can set up your web server so it temporarily serves the content with an access-control header. But for your situation it would be best to use a proxy. See this:

http://ajaxian.com/archives/cross-site-xmlhttprequest-in-firefox-3

link|flag

Your Answer

Get an OpenID
or

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