> 백엔드 개발 > C++ > SOAP 요청을 보내고 응답을 받기 위해 C# Windows 서비스를 만드는 방법은 무엇입니까?

SOAP 요청을 보내고 응답을 받기 위해 C# Windows 서비스를 만드는 방법은 무엇입니까?

Susan Sarandon
풀어 주다: 2025-01-24 06:41:08
원래의
596명이 탐색했습니다.

How to Create a C# Windows Service to Send SOAP Requests and Receive Responses?

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿