I am trying to set up a simple jQuery example to make AJAX calls in a .NET webservice. Using the following example below, I get AJAX errors that simply say 0 in the result instead of any meaningful message:
Javascript call
function QSHelloWorld() { var options = { type: "POST", url: "http://localhost:1087/QueryService.asmx/HelloWorld", data: "{}", contentType: "application/json", dataType: "json", success: AjaxSucceeded, error: AjaxFailed }; $.ajax(options); } function AjaxSucceeded(result) { alert(result.d); } function AjaxFailed(result) { alert("Error: " + result.status + " " + result.statusText); }
ASP.NET WebSite
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="jQueryTest._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script language="javascript" type="text/javascript" src="js/jquery-1.3.2-vsdoc2.js" /> <script language="javascript" type="text/javascript" src="js/qsAJAX.js" /> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title></title> </head> <body> <form id="formMain" runat="server"> <div> <script type="text/javascript"> QSHelloWorld(); </script> </div> </form> </body> </html>
ASP.NET WebService
using System.Web.Script.Services; using System.Web.Services; namespace QueryService { /// <summary> /// Summary description for Service1 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ScriptService] public class QueryService : WebService { [WebMethod] [ScriptMethod] public string HelloWorld() { return "Hello World"; } } }
When I call QSHelloWorld, I get a message with the message Error: 0 without additional information.
I am currently running this example using Windows 7, do I need to have something specially installed besides the .NET Framework 3.5 SP1 in order to run it correctly?
Thanks,
Daven
source share