在.net 6.0中 调用远程服务器web服务,Webservices(xxx.asmx) ,RESTful 风格,2种解决方案。

1.使用 Connected Services**:**

  • 右键单击您的项目,选择 "Add"(添加)-> "Connected Services"(已连接的服务)。

  • 在 "Connected Services" 对话框中,选择 "WCF Web Service"。

  • 在 "WCF Web Service" 对话框中,输入 xxx.asmx 的 URL 地址(例如:http://A.B.C.com/ABCWebService/product/ProductService.asmx),然后点击"转到",然后在点击下方服务中的xxxSoap,右边操作框里面会显示所有方法,然后在输入一个命名空间(例如:CBEC.Web.ProductWebService),然后点击 "下一步"(前往)。截图如下:

  • Visual Studio 将会获取 xxx.asmx 中的方法列表。选择您想要添加的方法,然后点击 "Finish"(完成)。

  • Visual Studio 将为您生成一个代理类,该代理类包含远程服务器上的方法,您可以像调用本地方法一样使用这些方法。

示例代码:

cs 复制代码
using System;
using System.Threading.Tasks;
using YourServiceReference; // 请将 YourServiceReference 替换为实际的服务引用名称

class Program
{
    static async Task Main()
    {
        // 创建服务引用的客户端
        var client = new HuiLvServiceSoapClient(HuiLvServiceSoapClient.EndpointConfiguration.HuiLvServiceSoap);

        // 调用远程服务器的方法
        var result = await client.YourRemoteMethodAsync(param1, param2);
        
        // 处理返回的结果
        Console.WriteLine(result);
    }
}

2.使用 HTTP 客户端:

如果 HuiLvService.asmx 提供的是 RESTful 风格的 Web API,您可以使用 HttpClient 类来进行 HTTP 请求。这种方法适用于 Web API 返回的数据是 JSON 或其他常见格式的情况。

示例代码

cs 复制代码
using System;
using System.Net.Http;
using System.Text.Json;
using System.Threading.Tasks;

class Program
{
    static async Task Main()
    {
        using var client = new HttpClient();

        // 设置基础地址
        client.BaseAddress = new Uri("https://your-remote-server-url/");

        // 构造请求数据
        var requestData = new YourRequestData { /*...*/ };

        // 将请求数据序列化为 JSON
        var requestDataJson = JsonSerializer.Serialize(requestData);

        // 构造 HTTP 请求
        var content = new StringContent(requestDataJson, System.Text.Encoding.UTF8, "application/json");

        // 发起 POST 请求
        var response = await client.PostAsync("HuiLvService.asmx/YourRemoteMethod", content);

        // 处理响应
        if (response.IsSuccessStatusCode)
        {
            var responseContent = await response.Content.ReadAsStringAsync();
            // 将响应内容反序列化为结果类型
            var result = JsonSerializer.Deserialize<YourResultType>(responseContent);
            // 处理返回的结果
            Console.WriteLine(result);
        }
        else
        {
            Console.WriteLine("HTTP 请求失败:" + response.StatusCode);
        }
    }
}

请注意,以上代码中的 YourServiceReferenceYourRemoteMethodAsyncYourRequestDataYourResultType 等都是示例,请根据实际情况替换为您的实际服务引用和方法名称。另外,HTTP 客户端方法适用于 RESTful 风格的 Web API,如果服务提供的是 SOAP Web 服务,请使用 Service References 方法来调用。

相关推荐
东东51614 分钟前
基于ssm的网上房屋中介管理系统vue
前端·javascript·vue.js
张3蜂1 小时前
Gunicorn深度解析:Python WSGI服务器的王者
服务器·python·gunicorn
harrain1 小时前
什么!vue3.4开始,v-model不能用在prop上
前端·javascript·vue.js
qq_297574676 小时前
【实战教程】SpringBoot 集成阿里云短信服务实现验证码发送
spring boot·后端·阿里云
碎梦归途7 小时前
思科网络设备配置命令大全,涵盖从交换机到路由器的核心配置命令
linux·运维·服务器·网络·网络协议·路由器·交换机
七维大脑虚拟机7 小时前
飞牛NAS公网IPv6+DDNS远程访问零延迟教程
运维·服务器·网络
fanruitian7 小时前
uniapp android开发 测试板本与发行版本
前端·javascript·uni-app
rayufo7 小时前
【工具】列出指定文件夹下所有的目录和文件
开发语言·前端·python
RANCE_atttackkk7 小时前
[Java]实现使用邮箱找回密码的功能
java·开发语言·前端·spring boot·intellij-idea·idea
小天源7 小时前
nginx在centos7上热升级步骤
linux·服务器·nginx