8

如果 contentType = "application/x-www-form-urlencoded; charset=utf-8",我可以使用 jQuery 调用我的网络服务

但是,这将返回 xml:<string>[myjson]</string>

如果我尝试使用“application/json; charset=utf-8” POST 到服务,我会收到一个 500 错误,其中包含空的 StackTrace 和 ExceptionType。我的网络服务功能从未被击中,所以我不太确定如何调试这种情况。

我的方法和类用适当的属性修饰,并设置为使用 JSON 作为它们的响应类型(我的 wsdl 和 disco 文件也是如此)。我在 web.config 中安装了 Ajax 扩展和所需的条目。

这是在 SharePoint 场上,但我不确定这会产生多大的不同。我在所有 WFE 上部署了 web.config 更改,并安装了 ajax 扩展。该服务再次起作用,它只接受默认内容类型以外的任何内容。

不知道我在这里错过了什么,伙计们......

我的ajax调用:

$.ajax({
type: "POST",
url: "/_vti_bin/calendar.asmx/Test",
dataType: "json",
data: "{}",
contentType: "application/json; charset=UTF-8",
success: function(msg){
    alert(msg);
    },
error: function(xhr, msg){ alert(msg + '\n' + xhr.responseText); }
});

我的网络服务类:

[WebService(Namespace = "http://namespace")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService()]
public class CalendarService : WebService
{
    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
    public string Test()
    {
        return "Hello World";
    }
}
4

7 回答 7

3

I have this working in 2.0 using web services, but I have put in place protection from the .d (see dataFilter below). I also am returning an array of objects. NOTE: the class for the object is static, or it would not work correctly for me at least.

  $.ajax({
        type: "POST",
        contentType: "application/json; charset=utf-8",
        data: "{}",
        dataFilter: function(data)
        {
            var msg;
            if (typeof (JSON) !== 'undefined' &&
                typeof (JSON.parse) === 'function')
                msg = JSON.parse(data);
            else
                msg = eval('(' + data + ')');
            if (msg.hasOwnProperty('d'))
                return msg.d;
            else
                return msg;
        },
        url: "webservice/ModifierCodesService.asmx/GetModifierList",
        success: function(msg)
        {
            LoadModifiers(msg);
        },
        failure: function(msg)
        {
            $("#Result").text("Modifiers did not load");
        }
    });

Here is a snippett of my web service:

...

[WebService(Namespace = "http://mynamespace.com/ModifierCodesService/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[ScriptService]
public class ModifierCodesService : System.Web.Services.WebService
{

     /// <summary>
    /// Get a list of Modifiers
    /// </summary>
    /// <returns></returns>
    [WebMethod(EnableSession = true)]
    public Modifier[] GetModifierList()
    {
        return GetModifiers();
    }
       /// <summary>
        /// Modifiers list from database
        /// </summary>
        /// <returns></returns>
        private Modifier[] GetModifiers()
        {
            List<Modifier> modifier = new List<Modifier>();
            ModifierCollection matchingModifiers = ModifierList.GetModifierList();
            foreach (Modifier ModifierRow in matchingModifiers)
            {
                modifier.Add(new Modifier(ModifierRow.ModifierCode, ModifierRow.Description));
            }
            return modifier.ToArray();
        }
    }

...

the object code:

 public static class ModifierList
    {

        /// <summary>
        /// Returns the Modifier Collection.
        /// </summary>
        /// <param name="prefix"></param>
        /// <returns></returns>
        public static ModifierCollection GetModifierList()
        {
于 2009-09-29T19:44:21.020 回答
1

今天我一直在用一个 iPhone 应用程序与一个 .Net Web 服务通信来解决这个问题。

我发现,如果我将我的内容类型更改为 application/jsonrequest,它就会顺利通过,并且我能够在我的 Web 服务器中处理数据。

只是为了笑,我将上面提到的行添加到我的 web.config 中,但它并没有使 application/json 工作。

于 2010-07-29T00:36:24.443 回答
0

我经常使用 JQuery AJAX JSON 调用 ASMX webservice。它在所有浏览器中都能完美运行。我正在使用安装了 ASP.NET AJAX 扩展的 .NET 2.0(捆绑在 3.5 中)。

我的班级有和你一样的装饰师。我的方法只有[WebMethod(EnableSession = true)]装饰器。但是,我的 web.config 在其 httpHandlers 部分中有以下条目:

<add verb="*" path="*jsonservice.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />

我的 jquery 调用如下所示:

$.ajax({
    type: "POST",
    contentType: "application/json; charset=utf-8",
    url: "path/to/service/jsonservice.asmx/MethodName",
    data: JSON.stringify(DTO),
    dataType: "json",
    success: function(rtrn) { alert("good"); },
    error: function(req, msg, err) { alert("bad"); }
});

这篇文章是我知识的根源。

于 2009-06-17T14:09:52.420 回答
0

我认为您正在寻找 WebInvoke 或 WebGet 属性,它可以让您指定 Uri 模板、正文样式、请求和响应格式,例如:

[WebGet(ResponseFormat= WebMessageFormat.Json)]

链接可能会有所帮助。WebInvoke 有一篇类似的文章(主要用于发布)。

于 2009-06-11T18:04:21.837 回答
0

如果您在 IE 中对此进行测试,请尝试从您的 contentType 属性中删除字符集声明(即它应该如下所示:

contentType: "application/json",

charset=UTF-8我还没有发现原因,但 IE 在使用 " " 部分进行 JSON 调用时似乎会变得扭曲。

替代文字

于 2009-05-29T09:55:41.990 回答
0

不确定它是否会这么简单,但我正在使用 jQuery 从我的 Web 方法中回调 JSON。

我看到的主要区别是类的属性

[System.Web.Script.Services.ScriptService]

    [WebService(Namespace = "http://MyNameSpace")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.Web.Script.Services.ScriptService]
    public class Web : System.Web.Services.WebService{

       [WebMethod]
       public string TestMethod(){
         return "Testing";
       }

    }

我必须假设您使用的是 3.5 框架,因为这是公开 JSON Web 方法的唯一方法。

我的 jQuery 调用看起来几乎相同,所以没有问题。

于 2009-05-23T06:04:17.143 回答
-1

看起来您必须在 scriptMethod 标记中指定 json 作为响应格式。这是来自 vb.net,但我相信你明白了:

ResponseFormat:=ResponseFormat.Json

于 2009-05-25T18:28:34.153 回答