从jquery发送数据到wcf Web服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从jquery发送数据到wcf Web服务相关的知识,希望对你有一定的参考价值。

我试图使用jquery从一个html页面发送一个json字符串到一个wcf webservice。但是它给出了错误而没有返回所需的结果。 html页面显示错误。如何调试服务以查看页面是否实际调用了Web服务。请帮忙。

IService1.cs

public interface IService1
{

    [OperationContract]
    string GetData(int value);

    [OperationContract]
    CompositeType GetDataUsingDataContract(CompositeType composite);

    // TODO: Add your service operations here
}


// Use a data contract as illustrated in the sample below to add composite types to service operations.
[DataContract]
public class CompositeType
{
    bool boolValue = true;
    string stringValue = "Hello ";

    [DataMember]
    public bool BoolValue
    {
        get { return boolValue; }
        set { boolValue = value; }
    }

    [DataMember]
    public string StringValue
    {
        get { return stringValue; }
        set { stringValue = value; }
    }
}

Service1.svc.cs

namespace WcfService2
{

public class Service1 : IService1
{
    public string GetData(int value)
    {
        return string.Format("You entered: {0}", value);
    }

    public CompositeType GetDataUsingDataContract(CompositeType composite)
    {
        if (composite == null)
        {
            throw new ArgumentNullException("composite");
        }
        if (composite.BoolValue)
        {
            composite.StringValue += "Suffix";
        }
        return composite;
    }
}
}

jquery代码

var markers = [{ "value": "128" }];

    $.ajax({
        type: "POST",
        async: false,
        data: JSON.stringify({ Markers: markers }),
        url: "http://localhost:13008/Service1.svc/GetData",
        contentType: "application/json; charset=utf-8",
        dataType: "json",          
        success: function (data) {
            alert(data);
        },
        error: function () {
            alert("Error");
        }
    });
答案

我想你需要提一下webHttpBinding来为restful服务配置端点。默认情况下,当您在visual studio中启动服务时,它可能正在使用basicHttpBinding。

您还需要添加未在ide中检查的属性[WebInvoke(Method =“GET”,ResponseFormat = WebMessageFormat.Json,uriTemplate =“/ json / {id}”)]。但是类似于它的东西是你需要添加的东西。

另一答案

删除AJAX调用中的数据部分并在url中传递参数。像这样:http://localhost:13008/service1.svc/GetData?value=128

以上是关于从jquery发送数据到wcf Web服务的主要内容,如果未能解决你的问题,请参考以下文章

从 AJAx 向 WCF Webservice 链接发送数据

将 JSON 数据从 JQuery 发送到 WCF REST 方法时出现问题

从 WCF 服务向网站发送数据

将数据(复杂数据/原始数据)发送到服务并获取响应(复杂数据/原始数据)的最佳方式(WCF 或 WEB API)

将数据从 jquery ajax 请求传递到 wcf 服务失败反序列化?

jQuery - 使用 ajax 调用将 JSON 发送到 WCF 服务为空