WebService SOAP1.1 SOAP1.12 HTTP PSOT方式调用

这篇具有很好参考价值的文章主要介绍了WebService SOAP1.1 SOAP1.12 HTTP PSOT方式调用。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Visual Studio 2022 新建WebService项目soap1.1,c++,开发语言

soap1.1,c++,开发语言

soap1.1,c++,开发语言

创建之后启动运行

soap1.1,c++,开发语言

设置默认文档即可

soap1.1,c++,开发语言

经过上面的创建WebService已经创建完成,添加HelloWorld3方法,

[WebMethod]
public string HelloWorld3(int a, string b)
{
//var s = a + b;
return $"Hello World a+b={a + b}";
}

属性页面如下:

soap1.1,c++,开发语言

 地址加上?wsdl----http://localhost:8012/WebService1.asmx?wsdl 可以查看具体方法,我们点开一个方法,查看具体调用方式,

http://localhost:8012/WebService1.asmx?op=HelloWorld3

soap1.1,c++,开发语言

soap1.1,c++,开发语言

下面使用 SOAP1.1 SOAP1.12 HTTP PSOT方式调用WebService,代码如下

  #region 测试 SOAP1.1 SOAP1.12 HTTP PSOT方式调用WebService 调用
        /// <summary>
        /// WebService SOAP1.1方法调用
        /// </summary>
        /// <param name="xmldata">调用方法所需参数</param>        
        public static string WebServiceSOAP11(int a, string b)
        {
            //http://localhost:8012/WebService1.asmx/HelloWorld3
            #region HTTP POST 请求和响应示例
            #region HTTP POST 请求和响应示例。所显示的占位符需替换为实际值
            //SOAP 1.1
            //以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。
            //请求
            //POST /WebService1.asmx HTTP/1.1
            //Host: localhost
            //Content-Type: text/xml; charset=utf-8
            //Content-Length: length替换
            //SOAPAction: "http://tempuri.org/HelloWorld3"

            //<?xml version="1.0" encoding="utf-8"?>
            //<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
            //  <soap:Body>
            //    <HelloWorld3 xmlns="http://tempuri.org/">
            //      <a>int替换</a>
            //      <b>string替换</b>
            //    </HelloWorld3>
            //  </soap:Body>
            //</soap:Envelope>

            //响应
            //HTTP/1.1 200 OK
            //Content-Type: text/xml; charset=utf-8
            //Content-Length: length

            //<?xml version="1.0" encoding="utf-8"?>
            //<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
            //  <soap:Body>
            //    <HelloWorld3Response xmlns="http://tempuri.org/">
            //      <HelloWorld3Result>string</HelloWorld3Result>
            //    </HelloWorld3Response>
            //  </soap:Body>
            //</soap:Envelope>
            #endregion

            HttpWebRequest httpWebRequest = null;
            string result = null;
            var webserviceurl = "http://localhost:8012/WebService1.asmx" ?? ConfigurationManager.AppSettings.Get("WebServiceUrl");
            httpWebRequest = (HttpWebRequest)WebRequest.Create(webserviceurl);
            //注意SOAP1.1 ContentType,需要SOAPAction,Content-Type: text/xml; charset=utf-8
            httpWebRequest.ContentType = "text/xml; charset=utf-8";
            httpWebRequest.Method = "post";
            httpWebRequest.Headers.Add("SOAPAction", "http://tempuri.org/HelloWorld3");

            Stream requestStream = httpWebRequest.GetRequestStream();
            StreamWriter streamWriter = new StreamWriter(requestStream);
            streamWriter.Write($"<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\r\n<soap:Body>\r\n<HelloWorld3 xmlns=\"http://tempuri.org/\">\r\n<a>{a}</a>\r\n<b>{b}</b>\r\n</HelloWorld3>\r\n</soap:Body>\r\n</soap:Envelope>");
            streamWriter.Close();
            requestStream.Close();

            //byte[] vs = Encoding.UTF8.GetBytes("a=66&b=1233");
            //requestStream.Write(vs, 0, vs.Length);
            httpWebRequest.ContentLength = vs.Length;
            //requestStream.Close();

            Stream responseStream = null;
            StreamReader reader = null;
            HttpWebResponse webResponse = (HttpWebResponse)httpWebRequest.GetResponse();
            try
            {
                if (webResponse.StatusCode == HttpStatusCode.OK)
                {
                    //返回值类型  Content-Type: text/xml; charset=utf-8
                    //StreamReader reader = new StreamReader(webResponse.GetResponseStream());
                    responseStream = webResponse.GetResponseStream();
                    reader = new StreamReader(responseStream);
                    result = reader.ReadToEnd();
                    XmlDocument xmlDocument = new XmlDocument();
                    xmlDocument.LoadXml(result);
                    result = xmlDocument.InnerText;
                }
            }
            catch (Exception ex)
            {
                result = $"查询出错,原因:{ex}";
            }
            finally
            {
                reader.Close();
                webResponse.Close();
                responseStream.Close();
                httpWebRequest.Abort();
            }
            return result;
            //if (!string.IsNullOrEmpty(result))
            //{
            //    System.Xml.Serialization.XmlSerializer xmlSerializer= new System.Xml.Serialization.XmlSerializer()
            //}
            #endregion
        }

        /// <summary>
        /// WebService SOAP1.2方法调用
        /// </summary>
        /// <param name="xmldata">调用方法所需参数</param>        
        public static string WebServiceSOAP12(int a, string b)
        {
            //http://localhost:8012/WebService1.asmx/HelloWorld3
            #region HTTP POST 请求和响应示例
            #region HTTP POST 请求和响应示例。所显示的占位符需替换为实际值
            //SOAP 1.2
            //以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。

            //POST /WebService1.asmx HTTP/1.1
            //Host: localhost
            //Content-Type: application/soap+xml; charset=utf-8
            //Content-Length: length

            //<?xml version="1.0" encoding="utf-8"?>
            //<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
            //  <soap12:Body>
            //    <HelloWorld3 xmlns="http://tempuri.org/">
            //      <a>int</a>
            //      <b>string</b>
            //    </HelloWorld3>
            //  </soap12:Body>
            //</soap12:Envelope>
            //HTTP/1.1 200 OK
            //Content-Type: application/soap+xml; charset=utf-8
            //Content-Length: length

            //<?xml version="1.0" encoding="utf-8"?>
            //<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
            //  <soap12:Body>
            //    <HelloWorld3Response xmlns="http://tempuri.org/">
            //      <HelloWorld3Result>string</HelloWorld3Result>
            //    </HelloWorld3Response>
            //  </soap12:Body>
            //</soap12:Envelope>
            #endregion

            HttpWebRequest httpWebRequest = null;
            string result = null;
            var webserviceurl = "http://localhost:8012/WebService1.asmx" ?? ConfigurationManager.AppSettings.Get("WebServiceUrl");
            httpWebRequest = (HttpWebRequest)WebRequest.Create(webserviceurl);
            //注意与SOAP1.1 区分 ContentType,不需要SOAPAction,Content-Type: application/soap+xml; charset=utf-8
            httpWebRequest.ContentType = "application/soap+xml; charset=utf-8";
            httpWebRequest.Method = "post";
            //不需要了 httpWebRequest.Headers.Add("SOAPAction", "http://tempuri.org/HelloWorld3");

            Stream requestStream = httpWebRequest.GetRequestStream();
            StreamWriter streamWriter = new StreamWriter(requestStream);
            streamWriter.Write($"<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\">\r\n<soap12:Body>\r\n<HelloWorld3 xmlns=\"http://tempuri.org/\">\r\n<a>{a}</a>\r\n<b>{b}</b>\r\n</HelloWorld3>\r\n</soap12:Body>\r\n</soap12:Envelope>");
            streamWriter.Close();
            requestStream.Close();

            //byte[] vs = Encoding.UTF8.GetBytes("a=66&b=1233");
            //requestStream.Write(vs, 0, vs.Length);
            httpWebRequest.ContentLength = vs.Length;
            //requestStream.Close();

            Stream responseStream = null;
            StreamReader reader = null;
            HttpWebResponse webResponse = (HttpWebResponse)httpWebRequest.GetResponse();
            try
            {
                if (webResponse.StatusCode == HttpStatusCode.OK)
                {
                    //返回值类型 Content-Type: application/soap+xml; charset=utf-8
                    //StreamReader reader = new StreamReader(webResponse.GetResponseStream());
                    responseStream = webResponse.GetResponseStream();
                    reader = new StreamReader(responseStream);
                    result = reader.ReadToEnd();
                    XmlDocument xmlDocument = new XmlDocument();
                    xmlDocument.LoadXml(result);
                    result = xmlDocument.InnerText;
                }
            }
            catch (Exception ex)
            {
                result = $"查询出错,原因:{ex}";
            }
            finally
            {
                reader.Close();
                webResponse.Close();
                responseStream.Close();
                httpWebRequest.Abort();
            }
            return result;
            //if (!string.IsNullOrEmpty(result))
            //{
            //    System.Xml.Serialization.XmlSerializer xmlSerializer= new System.Xml.Serialization.XmlSerializer()
            //}
            #endregion
        }

        /// <summary>
        /// WebService HTTP方法调用
        /// </summary>
        /// <param name="xmldata">调用方法所需参数</param>        
        public static string WebServiceHTTP(string xmldata)
        {
            //http://localhost:8012/WebService1.asmx/HelloWorld3
            #region HTTP POST 请求和响应示例
            #region HTTP POST 请求和响应示例。所显示的占位符需替换为实际值
            //以下是 HTTP POST 请求和响应示例。所显示的占位符需替换为实际值。
            // POST /WebService1.asmx/HelloWorld3 HTTP/1.1
            // Host: localhost
            // Content-Type: application/x-www-form-urlencoded
            // Content-Length: length替换
            // a=string替换&b=string替换

            // HTTP/1.1 200 OK
            // Content-Type: text/xml; charset=utf-8
            // Content-Length: length

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

            HttpWebRequest httpWebRequest = null;
            string result = null;
            var webserviceurl = "http://localhost:8012/WebService1.asmx/HelloWorld3" ?? ConfigurationManager.AppSettings.Get("WebServiceUrl");
            httpWebRequest = (HttpWebRequest)WebRequest.Create(webserviceurl);
            //注意与SOAP1.1,SOAP1.2 区分 ContentType,不需要SOAPAction,Content-Type: application/x-www-form-urlencoded
            httpWebRequest.ContentType = "application/x-www-form-urlencoded";
            httpWebRequest.Method = "post";

            Stream requestStream = httpWebRequest.GetRequestStream();
            StreamWriter streamWriter = new StreamWriter(requestStream);
            streamWriter.Write(xmldata);
            streamWriter.Close();
            requestStream.Close();

            //byte[] vs = Encoding.UTF8.GetBytes("a=66&b=1233");
            //requestStream.Write(vs, 0, vs.Length);
            httpWebRequest.ContentLength = vs.Length;
            //requestStream.Close();

            Stream responseStream = null;
            StreamReader reader = null;
            HttpWebResponse webResponse = (HttpWebResponse)httpWebRequest.GetResponse();
            try
            {
                if (webResponse.StatusCode == HttpStatusCode.OK)
                {
                    //返回值类型 Content-Type: text/xml; charset=utf-8
                    //StreamReader reader = new StreamReader(webResponse.GetResponseStream());
                    responseStream = webResponse.GetResponseStream();
                    reader = new StreamReader(responseStream);
                    result = reader.ReadToEnd();
                    XmlDocument xmlDocument = new XmlDocument();
                    xmlDocument.LoadXml(result);
                    result = xmlDocument.InnerText;
                }
            }
            catch (Exception ex)
            {
                result = $"查询出错,原因:{ex}";
            }
            finally
            {
                reader.Close();
                webResponse.Close();
                responseStream.Close();
                httpWebRequest.Abort();
            }
            return result;
            //if (!string.IsNullOrEmpty(result))
            //{
            //    System.Xml.Serialization.XmlSerializer xmlSerializer= new System.Xml.Serialization.XmlSerializer()
            //}
            #endregion
        }
        #endregion

使用代码

                string aa = WebServiceSOAP11(4, "888");
                Console.WriteLine($"WebService--SOAP1.1-- 返回值:{aa}");
                aa = WebServiceSOAP11(6, "0000");
                Console.WriteLine($"WebService--SOAP1.2-- 返回值:{aa}");
                aa = WebServiceHTTP("a=666666&b=8888");//注意参数名称不一致会报错,a,b
                Console.WriteLine($"WebService--http-- 返回值:{aa}");

运行效果

soap1.1,c++,开发语言文章来源地址https://www.toymoban.com/news/detail-764849.html

到了这里,关于WebService SOAP1.1 SOAP1.12 HTTP PSOT方式调用的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • FreeBASIC通过Delphi7 DLL调用MS SOAP使用VB6 Webservice

    前几篇笔记习练了IIS soapis30配置、VB6 webservice创建、Delphi7和VB6 webservice访问: VB6 COM webservice发布,VB.NET和Delphi 7 对webservice访问,及MS Soap Toolkit 3.0在IIS上的ISAPI配置_Mongnewer的博客-CSDN博客 本篇笔记重点编写 Delphi7 DLL 对MS soap3 进行封装,让FreeBASIC通过Delphi7的DLL封装,访问IIS上的

    2024年02月09日
    浏览(54)
  • 接口漏洞-WebService-wsdl+SOAP-Swagger+HTTP-WebPack

    什么是接口?        接口就是位于复杂系统之上并且能简化你的任务,它就像一个中间人让你不需要了解详细的所有细节。像谷歌搜索系统,它提供了搜索接口,简化了你的搜索任务。再像用户登录页面,我们只需要调用我们的登录接口,我们就可以达到登录系统的目的

    2024年02月07日
    浏览(37)
  • Postman进行Soap webservice接口测试

    许多人认为Postman是高级REST客户端,Postman是处理通过HTTP发送的请求的工具。其实Postman也可以测试与协议无关的SOAP webservice api接口。 要使用Postman发出SOAP请求,请执行以下操作: 1、提供SOAP端点作为URL,可以使用SOAP的WSDL的路径作为URL。 2、将请求方法设置为POST。 3、Body中选

    2024年01月20日
    浏览(48)
  • 基于SpringBoot 的SOAP WebService实现(二)

    成功启动springboot应用后,使用postman新建POST请求,地址: http://localhost:8080/soap/userManagement  正文body选择raw,XML格式。 headers填入如下键值对:  其中xlms字段是 WSDL中的namespace字段。   发送请求,返回了一个User类 。 至此,webservice SOAP服务发布测试成功。 新建客户端模块,m

    2024年02月09日
    浏览(38)
  • 第六十五天 API安全-接口安全&WebPack&REST&SOAP&WSDL&WebService

    1.HTTP类接口-测评 2.RPC类接口-测评 3.Web Service类-测评 参考链接:https://www.jianshu.com/p/e48db27d7c70 内容点: SOAP(Simple Object Access Protocol)简单对象访问协议是交换数据的一种协议规范, 是一种轻量的、简单的、基于XML(标准通用标记语言下的一个子集)的协议,它被设计 成在WEB上

    2024年02月22日
    浏览(40)
  • .NetCore调用Soap接口

    添加服务引用的方式无法满足我请求Soap接口,所以写了个Soap帮助类,使用HttpClient的方式请求接口。 提示:以下是本篇文章正文内容,下面案例可供参考 一条 SOAP 消息就是一个普通的 XML 文档,包含下列元素: 必需的 Envelope 元素,可把此 XML 文档标识为一条 SOAP 消息 可选的

    2024年02月04日
    浏览(34)
  • WebService 客户端增加Header头、并且指定命名空间、添加拦截器(日志拦截器,自定义拦截器)、soap:Envelope 添加命名空间

    1.增加Header头 生成XML结果如下 2.添加拦截器 3.soap:Envelope 添加命名空间 生成XML结果如下

    2024年02月10日
    浏览(46)
  • API 接口主流协议有哪些?如何创建 HTTP/HTTP、WebSocket/WebSockets、TCP/UDP、gRPC、SOAP、Dubbo/HSF 等不同协议?

    API 接口协议繁多,不同的协议有着不同的使用场景。70% 互联网应用开发者日常仅会接触到最通用的 HTTP 协议,相信大家希望了解更多其他协议的信息。我们今天会给大家介绍各种 API 接口主流协议和他们之间的关系。 接口协议分成两类: 传输层协议和应用层协议。 传输层协

    2023年04月21日
    浏览(91)
  • java发送soap请求和解析soap的响应

    2024年02月11日
    浏览(53)
  • 什么是SOAP

    什么是SOAP? SOAP (Simple Object Access Protocol) 是一种基于XML的通信协议,用于在网络上交换结构化的信息。它被广泛用于分布式系统中的应用程序间通信。 SOAP定义了一组规范,描述了消息的格式、通信的方式和处理消息的过程。它允许应用程序在不同的操作系统和编程语言之间进

    2024年02月06日
    浏览(24)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包