C# Web 服务返回错误



我需要一些帮助。请对我温柔一点,我还不是专家。

问题是我试图通过 JSON 将数据从客户端(浏览器)发送到服务器(网络服务)。当我在Fiddler中查看POST数据时,我可以看到我发送的JSON。这是有效的(经过测试)。但是我的网络服务(当我手动测试时,我得到返回 OK)返回以下内容:"{"消息":"处理请求时出错。 ","StackTrace":","异常类型":"}"

不幸的是,它仅供内部使用,所以我无法为您发布网络服务。

有人可以向我解释出了什么问题吗?

1.)Javascript代码:

<script>
  var markers = "{param1:1, param2:"test"}";
    $.ajax({
        type: "POST",
        url: "http://xxx.xxx.xxx.xxx/site/util.asmx/CreateMarkers",
        // The key needs to match your method's input parameter (case-sensitive).
        data: JSON.stringify({ Markers: markers }),
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (data) { alert(data); },
        failure: function (errMsg) {
            alert(errMsg);
        }
       });
</script>

2.) ASMX 代码

<%@ WebService Language="C#" Class="site.Util" %>
using System;
using System.Web.Services;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Script.Services;
namespace site{
[WebService(Namespace="http://xxx.xxx.xxx.xxx/site/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Util: WebService
{    
  [WebMethod]
  [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
  public string CreateMarkers(int param1, string param2)
  {
    return "OK";
  }
}

尝试格式化发送的数据以匹配 Web 服务方法

<script>
    var markers = {param1:1, param2:"test"}; //<-- format the model
    $.ajax({
        type: "POST",
        url: "http://xxx.xxx.xxx.xxx/site/util.asmx/CreateMarkers",
        // The key needs to match your method's input parameter (case-sensitive).
        data: JSON.stringify(markers),  //<-- just send the markers
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (data) { alert(data); },
        failure: function (errMsg) {
            alert(errMsg);
        }
   });
</script>

我遇到了同样的问题,并在web.config中解决了它:

<customErrors mode="Off" />

更改后,消息、异常类型和堆栈跟踪将正确填充,而不是标准的"处理请求时出错",当 mode=on 时,所有异常都会返回,并且对调试或报告不是很有帮助。

相关内容

  • 没有找到相关文章

最新更新