How can I make get request from Sharepoint object model to external web service? I tried did it with ajax request:
$.get("http:/servername/webservice_name", function(data, status) {
alert("Data: " + data[0] + "\nStatus: " + status);
});But I have an error: Access denied. My web service has response in JSON format. I have read a lot of article, but there are no decisions. I read, that ajax forbidden in SharePoint for external web service. How can I make it without ajax?