C# Windows サービス: SOAP リクエストを送信し、応答を受信
この記事では、SOAP リクエストを送信し、応答を受信するための C# Windows サービスを作成する方法について説明します。この方法は C# のネイティブ機能を利用するため、効率的で便利です。
次のコードは代替手段を提供します:
<code class="language-csharp">using System.Xml; using System.Net; using System.IO; public static void CallWebService() { string url = "http://xxxxxxxxx/Service1.asmx"; string action = "http://xxxxxxxx/Service1.asmx?op=HelloWorld"; XmlDocument soapEnvelopeXml = CreateSoapEnvelope(); HttpWebRequest webRequest = CreateWebRequest(url, action); InsertSoapEnvelopeIntoWebRequest(soapEnvelopeXml, webRequest); // 开始异步调用Web请求 IAsyncResult asyncResult = webRequest.BeginGetResponse(null, null); // 暂停线程,直到调用完成 asyncResult.AsyncWaitHandle.WaitOne(); string soapResult; using (WebResponse webResponse = webRequest.EndGetResponse(asyncResult)) { using (StreamReader rd = new StreamReader(webResponse.GetResponseStream())) { soapResult = rd.ReadToEnd(); } Console.Write(soapResult); } } private static HttpWebRequest CreateWebRequest(string url, string action) { HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url); webRequest.Headers.Add("SOAPAction", action); webRequest.ContentType = "text/xml;charset=\"utf-8\""; webRequest.Accept = "text/xml"; webRequest.Method = "POST"; return webRequest; } private static XmlDocument CreateSoapEnvelope() { XmlDocument soapEnvelopeDocument = new XmlDocument(); soapEnvelopeDocument.LoadXml(@"<envelope http:="" xmlns:soap-env="" xmlns:xsd="" xmlns:xsi=""><body><helloworld http:="" soap-env:encoding xmlns=""><int1 xsd:integer="" xsi:type=""></int1></helloworld></body> </envelope>"); return soapEnvelopeDocument; } private static void InsertSoapEnvelopeIntoWebRequest(XmlDocument soapEnvelopeXml, HttpWebRequest webRequest) { using (Stream stream = webRequest.GetRequestStream()) { soapEnvelopeXml.Save(stream); } }</code>
このメソッドは、外部ライブラリに依存せずに SOAP リクエストを送信し、応答を受信するための柔軟かつ効率的な方法を提供します。
以上がSOAP リクエストを送信し、応答を受信する C# Windows サービスを作成する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。