vote up 4 vote down star

Hi,

I'm trying to call a server side method from client side via jQuery, my code is as follows:

Server side:

    using System.Web.Services;
    [WebMethod()]
    //[ScriptMethod()]
    public static void SendMessage(string subject, string message, string messageId, string pupilId)
    {
        //send message
    }

Client side:

$("#btnSendMessage").live("click", function(){
  var subject = $("#tbSubject").val();
  var message = $("#tbMessage").val();
  var messageId = $("#hdnMessageId").val();
  var pupilId = $("#hdnPupilId").val();

  $.ajax({
      type: "POST",
      url: "./MessagePopup.aspx/SendMessage",
      data: ("subject=" + subject + "&message=" + message + "&messageId=" + messageId + "&pupilId=" + pupilId),
      error: function(XMLHttpRequest, textStatus, errorThrown){
          alert(textStatus);
      },
      success: function(result){
         alert("success");
      }
   });
   return false;
});

I've added a break point in the server side SendMessage method but it's never hitting it, but when I run the code the jQuery success method is called. Any ideas what would be causing this?`

flag

and code inside the SendMessage is not running, or just can't debug it? – Amr ElGarhy May 20 at 9:05
Both, the SendMessage code isn't running and I can't debug it. – Fermin May 20 at 9:22
Is your server side method really an ASPX page and not ASMX or WCF web service? URL points to aspx web page. – Artem K. May 20 at 9:30
Yeah my server side method is inside an ASPX page, should I create a seperate ASMX or WCF webservice? – Fermin May 20 at 9:38

3 Answers

vote up 3 vote down check

To call ASP.NET AJAX "ScriptServices" and page methods, you need to use the full $.ajax() syntax:

$.ajax({
  type: "POST",
  url: "MessagePopup.asmx/SendMessage",
  data: "{subject:'" + subject + "',message:'" + message + ",messageId:'" + messageId + "',pupilId:'" + pupilId +"'}",
  contentType: "application/json; charset=utf-8",
  dataType: "json",
  success: function(msg) {
    // Do something interesting here.
  }
});

See this post for details on why that's necessary: http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/

link|flag
Got it working, only difference on this code is the url was MessagePopup.aspx, not asmx. Thanks guys. – Fermin May 20 at 10:48
vote up 0 vote down

You should use web service instead of regular aspx web page. Web pages has no support to call web methods, I believe your jQuery request loads the HTML page instead. I suggest you two things:

  1. Use Fiddler2 (with IE) or HttpFox (with Firefox) to debug AJAX requests and responses on client side.
  2. Use WCF web service on the server side. in this case you can use SvcConfigEditor and SvcTraceViewer to configure and debug web methods on the server side.
link|flag
Why do you say WCF rather than ASMX? – Fermin May 20 at 10:23
WCF is now primary and recommended communication technology for .NET. It has a tons of capabilities over asmx web servives, better testability (Google for "Unit testing WCF services"). Strategically, WCF is a right choice to learn. Check this post for more about asmx vs WCF: social.msdn.microsoft.com/Forums/en-US/… – Artem K. May 20 at 10:51
Also, you can check Microsoft performance benchmarks: msdn.microsoft.com/en-us/library/… – Artem K. May 20 at 10:56
I'll check it out, thanks guys. – Fermin May 20 at 18:12
vote up 3 vote down

It looks like you're trying to make use of a page method.

Take a look here Page Methods in ASP.NET Ajax for help

link|flag
I didn't know about Page Methods +1 – José Basilio May 20 at 10:22

Your Answer

Get an OpenID
or

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