gpt4 book ai didi

c# - asp.net 网络服务 (.asmx)

转载 作者:太空宇宙 更新时间:2023-11-03 15:06:03 24 4
gpt4 key购买 nike

内部网络服务使用 soap 通过 HTTP 工作。但是当我们尝试访问 Web 服务的 [WebMethod] 时,事情是如何基于 URL 和 jquery ajax 开始工作的呢? SOAP 是否仍然扮演着 jQuery ajax 的角色?如果是如何?如果不是,为什么不呢?您可以使用以下示例来简化操作。

下面是asmx的代码:

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
public class MyService : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}

最佳答案

可以使用 AJAX 调用 WebMethods,因为传输是 HTTP。您可以在 Internet 和 SO 上找到许多这样的示例:

jQuery AJAX call to an ASP.NET WebMethod

Calling ASP.Net WebMethod using jQuery AJAX

SOAP 是有效负载的信封(具有一些附加功能)。是否要在 WebMethod 中使用它取决于您。

以下是如何在 Web 应用程序项目中创建 Hello World 服务:

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}

以下是如何使用 jQuery 使用它:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>

<script>
console.log($.ajax);
$.ajax({
type: "POST",
url: "http://localhost:55501/WebService1.asmx/HelloWorld",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response.d) {
alert(response.d);
}
});
</script>

来自服务器的响应将是 {d: "Hello World"} 因为 jQuery 将添加 Accept header “application/json”。

以下是您如何从控制台应用程序使用它:

static void Main(string[] args)
{
var client = new HttpClient();
var uri = new Uri("http://localhost:55501/WebService1.asmx/HelloWorld")

// Get xml
var response = client.PostAsync(uri, new StringContent("")).Result;
Console.WriteLine(response.Content.ReadAsStringAsync().Result);

Console.WriteLine();

// Get Json
var response1 = client.PostAsync(uri,
new StringContent("", Encoding.UTF8, "application/json")).Result;
Console.WriteLine(response1.Content.ReadAsStringAsync().Result);
}

输出:

<?xml version="1.0" encoding="utf-8"?>
<string xmlns="http://tempuri.org/">Hello World</string>

{"d":"Hello World"}

关于c# - asp.net 网络服务 (.asmx),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43493727/

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