I'm working with some web services that have already been created and I need to call them using ajax. The site I'm working on is hosted in a different domain than that of the web services. I'm now aware of the problems this causes with the same-origin policy.
I'm trying to get round it using JSON, based on articles:
and tonnes of other questions on here.
I have tried the following code (replaced actual domain with "webservice"):
<script type="text/javascript">
$(document).ready(function(){
$.getJSON("http://webservice/restserver.aspx?",
{
method: "userInfo",
userID: "039304303930302",
sessionID: "STRING",
format: "json"
},
function(data) {
alert("GET Returned");
});
});
</script>
1) Is there anything terribly wrong with this as I'm new to JSON and AJAX
2) Does the web service need to have a callback e.g.- "&callback=?" added to it
3) Is there any other way to get around cross-domain calls
Any suggestions or help will be most welcome as I have working on this for ages.
Thanks!