Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I get full text search results as JSON from SOLR server.

If I directly access the URL in browser, browser is able to show me the result as JSON.

But if I use the same URL via my application, app is also not able to get the JSON

also firebug shows it as '400 Bad Request'.

I added &callback=? to the URL and then firebug atleast shows JSON response but still cant get success function to execute after the JSON call.

Here is my code for the same :

jQuery.getJSON(
        tempURL, 
        'wt=xslt&tr=resource_json.xsl&q=resourceName:test*&start=0&rows=20&callback=?', 
        function(jsondata) {
            alert('jsondata : ' + jsondata);
        }
    );

and tempURL : "http://fe-z062j.fe.de.bosch.com:8090/solr/resource/select"

Could you let me know what is the reason behind this. Is there any systax mistake I am doing?

Regards,

Satya

share|improve this question
5  
Could you show us the jquery you are executing – Stefan H Jul 27 '11 at 8:36
It's probably not the same actual url. firebug shows you the exact url used with ajax, so check that. – Ariel Jul 27 '11 at 8:37
This could be failing the same origin policy (en.wikipedia.org/wiki/Same_origin_policy), take a look at JSONP in the jQuery documentation, and plase show us the code for your AJAX request. – Ben Everard Jul 27 '11 at 8:38
Post your code please – marto Jul 27 '11 at 8:38
please provide an url, code snipet ... something? – Lachezar Todorov Jul 27 '11 at 8:39
show 7 more comments

closed as too localized by Tim Post Mar 29 '12 at 12:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

The server you're requesting data from has to support jsonp. For example you would define a callback function

function jsonpCallback(data){alert(data);}

then you add a script tag to your dom with callback as a get parameter containing the name of your callback function

<script type="text/javascipt" src="http://server.com/jsonp.php?callback=jsonpCallback"></script>

Finally the server returns the data like this so it gets passed to your callback

jsonpCallback("some data");

share|improve this answer

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