vote up 8 vote down star
8

I'm trying to use jQuery to get data from an ASP.NET web service (SharePoint Server 2007 lists.asmx) but any call to a web service will really help as a first step in that direction.

flag

6 Answers

vote up 6 vote down check

The problem with @mnour source is that jQuery is not going to be able to deserialize the WSDL file returned. You need to make sure it is deserialized in JSON or XML.

link|flag
vote up 2 vote down

Here is an example to call your webservice using jQuery.get:

$.get("http://doman.com/webservice.asmx", { name: "John", time: "2pm" },
  function(data){
    alert("Data Loaded: " + data);
  });

In the later example, you call "webservice.asmx", giving it 2 parameters: name and time. Then, a function is called in callback.

link|flag
vote up 2 vote down

I don't know about that specific SharePoint web service, but you can decorate a page method or a web service with <WebMethod()> (in vb.net) to ensure that it serializes to JSON. You can probably just wrap the method that webservice.asmx uses internally, in your own web service.

Dave Ward has a nice walkthrough on this.

link|flag
vote up 1 vote down

I quite often use ajaxpro along with jquary. ajaxpro lets me call .net functions from JS and I use jquary for the rest.

link|flag
vote up 2 vote down

I have a decent example here on using the JQuery AJAX call with asmx web services... http://blog.sonerdy.com/2008/10/jquery-ajax-and-asmx.html

There is a line of code to uncommment in order to have it return JSON.

link|flag
vote up 3 vote down

I use this method as a wrapper so that I can send parameters. Also using the variables in the top of the method allows it to be minimized at a higher ratio and allows for some code reuse if making multiple similar calls.

function InfoByDate(sDate, eDate){
var divToBeWorkedOn = '#AjaxPlaceHolder';
var webMethod = 'http://MyWebService/Web.asmx/GetInfoByDates'
var parameters = "{'sDate':'" + sDate + "','eDate':'" + eDate + "'}"

$.ajax({
	type: "POST",
	url: webMethod,
	data: parameters,
	contentType: "application/json; charset=utf-8",
	dataType: "json",
	success: function(msg) {    
		$(divToBeWorkedOn).html(msg.d);
	},
	error: function(e){
		$(divToBeWorkedOn).html("Unavailable");				 
	}
});

}

Hope that helps.

please note that this requires the 3.5 framework to expose JSON webmethods that can be consumed in this manner

link|flag

Your Answer

Get an OpenID
or

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