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