gpt4 book ai didi

c# - ASMX 网络服务和 HTTP GET

转载 作者:太空宇宙 更新时间:2023-11-03 22:21:00 25 4
gpt4 key购买 nike

我正在尝试创建一个可以执行 HTTP GET 请求的 ASMX 网络服务。我有以下简单的代码片段来说明我已经完成的工作。

using System.Web.Script.Services;
...

[WebMethod]
[ScriptMethod(UseHttpGet = true)]
public string HelloWorld(HttpContext context)
{
return context.Request.Params.Get("userId").ToString();
}

除此之外,我还在我的 Web.config 文件中添加了以下节点

<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>

我面临的问题是,每当我尝试调试此网络服务。我不知道问题出在哪里,如果能帮助我摆脱困境,我将不胜感激。我意识到 HTTP GET 请求应该非常简单,但我真的不确定是什么原因让我感到沮丧。

最佳答案

我觉得你想要

[WebMethod]
[ScriptMethod(UseHttpGet = true)]
public string HelloWorld(int userId)
{
return userId.ToString();
}

您可以在函数签名中指定参数,如果需要,您可以将 HttpContext 作为 Context(基类 WebService 上的一个属性)访问。

关于c# - ASMX 网络服务和 HTTP GET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3118519/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com