从jQuery Ajax调用WCF服务POST方法

时间:2015-09-30 08:24:38

标签: javascript c# jquery ajax wcf

我有以下WCF方法

[OperationContract]
[WebInvoke(Method = "POST")]
public string HelloWorld(string stest)
{
    return stest.ToString();
}

我有一个jQuery Ajax客户端代码,如下所示

$.ajax({
        type: "POST",
        contentType: "application/json; charset=utf-8",
        url: '../../Service.svc/HelloWorld',
       data: { 'stest': 'testdata' },
        dataType: 'json',
        success: function (resp) {

        },
        error: function (error)
        {
            alert(error);
        }
    });

当ajax调用HellowWorld方法时,获取

  

错误NetworkError:500内部服务器错误。

我如何从jquery ajax调用wcf Post方法。

0 个答案:

没有答案