I have following problem. My webapp is running at

http://webapp.mysite.com/browser/

And I want to make a request to

http://mysite.com/request?....

If I make a standart ajax call with the second url I get an error message , domain (same-origin) policy error.

 [object Object]-error-[Exception... 
  "Component returned failure code: 0x80004005 
  (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]"
   nsresult: "0x80004005 (NS_ERROR_FAILURE)"  
   location: "JS frame :: ..../scripts/jquery/js/jquery-1.4.4.min.js ::
   anonymous :: line 16"  data: no]

Now I tried this ajax php proxy to solve my problem. But the scripts returns no content.

var app = 'http://www.mysite.com/rest.php?request=credits';
var proxy = 'proxy.php?proxy_url=' + app;

$.ajax({
    url: proxy,
    cache: false,
    async: false,
    dataType: 'html'
    success: function(html){
         alert(html);
    },
    error: function(){

    }
});

Any ideas?

link|improve this question

What's going on the server-side? Is the server side called? I think you have to search the problem on the server. Is the script called? What 's the content of $h->body? – Tim Feb 27 '11 at 15:04
feedback

2 Answers

up vote 1 down vote accepted

Ah, perhaps this is the problem:

http://api.jquery.com/jQuery.ajax/

"Cross-domain requests and dataType: "jsonp" requests do not support synchronous operation."

And you said, you will use cross-domain requests, so you can not set async to false. Please try it with async = true and give feedback.

Ah, and do you get an alert message with empty content?

link|improve this answer
I use it for validation so async needs to be false. yes I get an emtpy alert message – ArtWorkAD Feb 27 '11 at 15:56
feedback

you can use YQL http://developer.yahoo.com/yql/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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