ไคลเอนต์เพื่อส่งคำขอ SOAP และรับการตอบสนอง


159

กำลังพยายามสร้างไคลเอนต์ C # (จะได้รับการพัฒนาเป็นบริการ Windows) ที่ส่งคำขอ SOAP ไปยังบริการเว็บ (และรับผลลัพธ์)

จากคำถามนี้ฉันเห็นรหัสนี้:

protected virtual WebRequest CreateRequest(ISoapMessage soapMessage)
{
    var wr = WebRequest.Create(soapMessage.Uri);
    wr.ContentType = "text/xml;charset=utf-8";
    wr.ContentLength = soapMessage.ContentXml.Length;

    wr.Headers.Add("SOAPAction", soapMessage.SoapAction);
    wr.Credentials = soapMessage.Credentials;
    wr.Method = "POST";
    wr.GetRequestStream().Write(Encoding.UTF8.GetBytes(soapMessage.ContentXml), 0, soapMessage.ContentXml.Length);

    return wr;
}

public interface ISoapMessage
{
    string Uri { get; }
    string ContentXml { get; }
    string SoapAction { get; }
    ICredentials Credentials { get; }
}

ดูดีทุกคนรู้วิธีใช้งานและหากเป็นวิธีปฏิบัติที่ดีที่สุด

คำตอบ:


224

ปกติฉันใช้วิธีอื่นในการทำเช่นเดียวกัน

using System.Xml;
using System.Net;
using System.IO;

public static void CallWebService()
{
    var _url = "http://xxxxxxxxx/Service1.asmx";
    var _action = "http://xxxxxxxx/Service1.asmx?op=HelloWorld";

    XmlDocument soapEnvelopeXml = CreateSoapEnvelope();
    HttpWebRequest webRequest = CreateWebRequest(_url, _action);
    InsertSoapEnvelopeIntoWebRequest(soapEnvelopeXml, webRequest);

    // begin async call to web request.
    IAsyncResult asyncResult = webRequest.BeginGetResponse(null, null);

    // suspend this thread until call is complete. You might want to
    // do something usefull here like update your UI.
    asyncResult.AsyncWaitHandle.WaitOne();

    // get the response from the completed web request.
    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(
    @"<SOAP-ENV:Envelope xmlns:SOAP-ENV=""http://schemas.xmlsoap.org/soap/envelope/"" 
               xmlns:xsi=""http://www.w3.org/1999/XMLSchema-instance"" 
               xmlns:xsd=""http://www.w3.org/1999/XMLSchema"">
        <SOAP-ENV:Body>
            <HelloWorld xmlns=""http://tempuri.org/"" 
                SOAP-ENV:encodingStyle=""http://schemas.xmlsoap.org/soap/encoding/"">
                <int1 xsi:type=""xsd:integer"">12</int1>
                <int2 xsi:type=""xsd:integer"">32</int2>
            </HelloWorld>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>");
    return soapEnvelopeDocument;
}

private static void InsertSoapEnvelopeIntoWebRequest(XmlDocument soapEnvelopeXml, HttpWebRequest webRequest)
{
    using (Stream stream = webRequest.GetRequestStream())
    {
        soapEnvelopeXml.Save(stream);
    }
}

1
มันเป็นเรื่องเล็ก แต่ฉันใส่ทุกอย่างไว้ที่นี่รวมถึงสตริงคำขอ SOAP ด้วย
KBBWrite

5
ตกลงฉันคิดว่าคุณต้องใส่ในคำขอ SOAP ถ้าคุณมีตัวอย่างของคำขอน้ำหนักบรรทุกจากนั้นคุณสามารถสร้างคำขอเช่นนั้น ไม่แน่ใจว่าคุณใช้การรักษาความปลอดภัยประเภทใดหากคุณใช้ WS-Security ชื่อผู้ใช้และรหัสผ่านที่คุณสามารถส่งผ่านด้วยส่วนหัวคำขอ SOAP ของคุณ
KBBWrite

3
ฉันกำลังคิดในบางสิ่งเช่น HttpWebRequest webRequest = CreateWebRequest (_url, _action); webRequest.Credentials = NetworkCredential ใหม่ (ชื่อผู้ใช้รหัสผ่านโดเมน);
ฐานข้อมูล

3
@hamish: นี่เป็นเพียงตัวอย่างโค้ดแนวคิด อย่าถือว่าเป็นรหัสคุณภาพการผลิต
KBBWrite

4
มีประโยชน์อย่างมากและช่วยฉันทำงานด้วยการใช้ Telerik Fiddler เพื่อ POST ด้วยตนเองไปยังบริการเว็บของฉันเพราะฉันเห็นส่วนหัวทั้งหมดที่คุณตั้งไว้ ขอบคุณมาก ๆ.
raddevus

64

ผมได้รับการแก้ปัญหาแบบนี้ที่นี่ :

การส่งคำขอ SOAP และรับการตอบสนองใน. NET 4.0 C # โดยไม่ต้องใช้ WSDL หรือคลาสพร็อกซี:

class Program
    {
        /// <summary>
        /// Execute a Soap WebService call
        /// </summary>
        public static void Execute()
        {
            HttpWebRequest request = CreateWebRequest();
            XmlDocument soapEnvelopeXml = new XmlDocument();
            soapEnvelopeXml.LoadXml(@"<?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>
                    <HelloWorld xmlns=""http://tempuri.org/"" />
                  </soap:Body>
                </soap:Envelope>");

            using (Stream stream = request.GetRequestStream())
            {
                soapEnvelopeXml.Save(stream);
            }

            using (WebResponse response = request.GetResponse())
            {
                using (StreamReader rd = new StreamReader(response.GetResponseStream()))
                {
                    string soapResult = rd.ReadToEnd();
                    Console.WriteLine(soapResult);
                }
            }
        }
        /// <summary>
        /// Create a soap webrequest to [Url]
        /// </summary>
        /// <returns></returns>
        public static HttpWebRequest CreateWebRequest()
        {
            HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(@"http://localhost:56405/WebService1.asmx?op=HelloWorld");
            webRequest.Headers.Add(@"SOAP:Action");
            webRequest.ContentType = "text/xml;charset=\"utf-8\"";
            webRequest.Accept = "text/xml";
            webRequest.Method = "POST";
            return webRequest;
        }

        static void Main(string[] args)
        {
            Execute();
        }
    }

เราสามารถสร้างลูกค้าสบู่ xml โดยไม่ใช้สตริงสบู่ xml ด้วยการใช้รหัส c # เช่นเดียวกับ: var request = (HttpWebRequest) WebRequest.Create (uri); request.Method = Common.Method; ตัวอย่างหนึ่งเมธอด c # ที่สร้าง soap xml ไคลเอ็นต์มากกว่าหนึ่งรายการไปยังเซอร์วิส wsdl ที่ต่างกันพร้อมพารามิเตอร์
Dvlpr

ฉันได้รับข้อผิดพลาดต่อไปนี้และรหัสสิ้นสุด: 'soap' เป็นคำนำหน้าที่ไม่ได้ประกาศ บรรทัดที่ 2 ตำแหน่งที่ 18ฉันขาดอะไรไปหรือเปล่า คำขอ SOAP UI สำหรับเว็บเซอร์ของฉันอยู่ที่นี่: stackoverflow.com/questions/50430398/…
Vesnog

ทำงานร่วมกับwebRequest.Headers.Add("SOAPAction", "http://tempuri.org/.....");ตรวจสอบ SOAP Action ที่อยู่ใน SoapUI และใช้งานได้
Robert Koch

ฉันได้รับข้อผิดพลาดเมื่อฉันใช้เครื่องหมายจุดคู่ในส่วนหัว SOAPAction ฉันต้องทำ: webRequest.Headers.Add (@ "SOAPAction", "SomeAction");
เว็บสำหรับนักพัฒนา

วิธีรับไฟล์และแปลงเป็น PDF?
ลีอันโดร

20

แนวปฏิบัติที่เหมาะสมที่สุดคือการอ้างอิง WSDL และใช้มันเหมือนการอ้างอิงบริการเว็บ ง่ายขึ้นและทำงานได้ดีขึ้น แต่ถ้าคุณไม่มี WSDL นิยาม XSD เป็นรหัสที่ดี


1
ฉันจะเพิ่มส่วนหัวที่กำหนดเองสำหรับคำขอ SOAP ได้อย่างไรถ้าฉันเพิ่ม WSDL เป็นการอ้างอิงบริการเว็บและจุดสิ้นสุด ???
BASEER HAIDER JAFRI

12
คุณพูดถึงเรื่องนี้การอ้างอิงใด ๆ เกี่ยวกับวิธีการทำเช่นนี้?
Zapnologica

หาก WSDL ไม่ต้องการส่วนหัวที่กำหนดเองคุณไม่ควรเพิ่มส่วนหัว
StingyJack

1
โดยทั่วไปสิ่งที่จำเป็นในการส่ง - รับสบู่ มันเพียงพอที่จะใช้การเชื่อมซึ่งสนับสนุน SOAP เช่น wsHttpBinding และการอ้างอิง WSDL หรือไม่ ทุกอย่างอื่นเหมือนกับการใช้ REST (เรียกเมธอด WCF รับการตอบกลับ) หรือไม่
FrenkyB

ฉันเห็นด้วยกับ WSDL ของอดีตเป็นวิธีที่ซับซ้อนและไม่จำเป็น สิ่งที่คุณต้องทำคือไปที่การอ้างอิงบริการในโครงการของคุณ (ใน Visual Studio เวอร์ชันเก่า) คลิกขวาเพิ่มการอ้างอิงบริการและใส่รายละเอียดที่ถูกต้อง วัตถุ c # ถูกสร้างขึ้นที่จะต้องสร้างเป็นตัวแปร ทุกฟังก์ชันการทำงานของการบริการ WSDL สัมผัสแล้วผ่านรหัส
lllllllllllllIllllIll

19

ฉันคิดว่ามีวิธีที่ง่ายกว่า:

 public async Task<string> CreateSoapEnvelope()
 {
      string soapString = @"<?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>
                  <HelloWorld xmlns=""http://tempuri.org/"" />
              </soap:Body>
          </soap:Envelope>";

          HttpResponseMessage response = await PostXmlRequest("your_url_here", soapString);
          string content = await response.Content.ReadAsStringAsync();

      return content;
 }

 public static async Task<HttpResponseMessage> PostXmlRequest(string baseUrl, string xmlString)
 {
      using (var httpClient = new HttpClient())
      {
          var httpContent = new StringContent(xmlString, Encoding.UTF8, "text/xml");
          httpContent.Headers.Add("SOAPAction", "http://tempuri.org/HelloWorld");

          return await httpClient.PostAsync(baseUrl, httpContent);
       }
 }

สิ่งนี้ได้ผลเหมือนแชมป์ ฉันเพิ่มพารามิเตอร์ลงในวิธีการ CreateSoapEnvelope เพื่อให้สามารถส่งผ่านสตริง XML, URL โพสต์และ URL การดำเนินการเพื่อให้วิธีการใช้งานได้และมันเป็นสิ่งที่ฉันกำลังมองหา
Pete ลื่น

คำตอบที่ดีที่สุดสำหรับความคิดเห็นของฉันเพราะใช้ HttpClient ที่มีความเกี่ยวข้องมากกว่า WebResponse ที่ล้าสมัย
Akmal Salikhov

15

ฉันเขียนคลาสตัวช่วยทั่วไปมากกว่าซึ่งยอมรับพจนานุกรมแบบสตริงตามพารามิเตอร์ที่กำหนดเองเพื่อให้ผู้โทรสามารถตั้งค่าได้โดยไม่ต้องใช้รหัสยาก มันจะไปโดยไม่บอกว่าคุณควรใช้วิธีการดังกล่าวเมื่อคุณต้องการ (หรือต้องการ) เพื่อออกบริการเว็บที่ใช้ SOAP ด้วยตนเอง: ในสถานการณ์ที่พบบ่อยที่สุดแนวทางที่แนะนำจะใช้ WSDL บริการเว็บพร้อมกับVisual Studio Reference Serviceคุณสมบัติแทน

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Xml;

namespace Ryadel.Web.SOAP
{
    /// <summary>
    /// Helper class to send custom SOAP requests.
    /// </summary>
    public static class SOAPHelper
    {
        /// <summary>
        /// Sends a custom sync SOAP request to given URL and receive a request
        /// </summary>
        /// <param name="url">The WebService endpoint URL</param>
        /// <param name="action">The WebService action name</param>
        /// <param name="parameters">A dictionary containing the parameters in a key-value fashion</param>
        /// <param name="soapAction">The SOAPAction value, as specified in the Web Service's WSDL (or NULL to use the url parameter)</param>
        /// <param name="useSOAP12">Set this to TRUE to use the SOAP v1.2 protocol, FALSE to use the SOAP v1.1 (default)</param>
        /// <returns>A string containing the raw Web Service response</returns>
        public static string SendSOAPRequest(string url, string action, Dictionary<string, string> parameters, string soapAction = null, bool useSOAP12 = false)
        {
            // Create the SOAP envelope
            XmlDocument soapEnvelopeXml = new XmlDocument();
            var xmlStr = (useSOAP12)
                ? @"<?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>
                        <{0} xmlns=""{1}"">{2}</{0}>
                      </soap12:Body>
                    </soap12:Envelope>"
                : @"<?xml version=""1.0"" encoding=""utf-8""?>
                    <soap:Envelope xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"" 
                        xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" 
                        xmlns:xsd=""http://www.w3.org/2001/XMLSchema"">
                        <soap:Body>
                           <{0} xmlns=""{1}"">{2}</{0}>
                        </soap:Body>
                    </soap:Envelope>";
            string parms = string.Join(string.Empty, parameters.Select(kv => String.Format("<{0}>{1}</{0}>", kv.Key, kv.Value)).ToArray());
            var s = String.Format(xmlStr, action, new Uri(url).GetLeftPart(UriPartial.Authority) + "/", parms);
            soapEnvelopeXml.LoadXml(s);

            // Create the web request
            HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
            webRequest.Headers.Add("SOAPAction", soapAction ?? url);
            webRequest.ContentType = (useSOAP12) ? "application/soap+xml;charset=\"utf-8\"" : "text/xml;charset=\"utf-8\"";
            webRequest.Accept = (useSOAP12) ? "application/soap+xml" : "text/xml";
            webRequest.Method = "POST";

            // Insert SOAP envelope
            using (Stream stream = webRequest.GetRequestStream())
            {
                soapEnvelopeXml.Save(stream);
            }

            // Send request and retrieve result
            string result;
            using (WebResponse response = webRequest.GetResponse())
            {
                using (StreamReader rd = new StreamReader(response.GetResponseStream()))
                {
                    result = rd.ReadToEnd();
                }
            }
            return result;
        }
    }
}

สำหรับข้อมูลเพิ่มเติมและรายละเอียดเกี่ยวกับชั้นเรียนนี้คุณยังสามารถอ่านโพสต์นี้ในบล็อกของฉัน


1

ดังนั้นนี่คือรหัสสุดท้ายของฉันหลังจาก googling เป็นเวลา 2 วันในการเพิ่มเนมสเปซและขอสบู่พร้อมกับซอง SOAP โดยไม่ต้องเพิ่มพร็อกซี / อ้างอิงบริการ

class Request
{
    public static void Execute(string XML)
    {
        try
        {
            HttpWebRequest request = CreateWebRequest();
            XmlDocument soapEnvelopeXml = new XmlDocument();
            soapEnvelopeXml.LoadXml(AppendEnvelope(AddNamespace(XML)));

            using (Stream stream = request.GetRequestStream())
            {
                soapEnvelopeXml.Save(stream);
            }

            using (WebResponse response = request.GetResponse())
            {
                using (StreamReader rd = new StreamReader(response.GetResponseStream()))
                {
                    string soapResult = rd.ReadToEnd();
                    Console.WriteLine(soapResult);
                }
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        }
    }

    private static HttpWebRequest CreateWebRequest()
    {
        string ICMURL = System.Configuration.ConfigurationManager.AppSettings.Get("ICMUrl");
        HttpWebRequest webRequest = null;

        try
        {
            webRequest = (HttpWebRequest)WebRequest.Create(ICMURL);
            webRequest.Headers.Add(@"SOAP:Action");
            webRequest.ContentType = "text/xml;charset=\"utf-8\"";
            webRequest.Accept = "text/xml";
            webRequest.Method = "POST";
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        }
        return webRequest;
    }

    private static string AddNamespace(string XML)
    {
        string result = string.Empty;
        try
        {

            XmlDocument xdoc = new XmlDocument();
            xdoc.LoadXml(XML);

            XmlElement temproot = xdoc.CreateElement("ws", "Request", "http://example.com/");
            temproot.InnerXml = xdoc.DocumentElement.InnerXml;
            result = temproot.OuterXml;

        }
        catch (Exception ex)
        {
            Console.WriteLine(ex);
        }

        return result;
    }

    private static string AppendEnvelope(string data)
    {
        string head= @"<soapenv:Envelope xmlns:soapenv=""http://schemas.xmlsoap.org/soap/envelope/"" ><soapenv:Header/><soapenv:Body>";
        string end = @"</soapenv:Body></soapenv:Envelope>";
        return head + data + end;
    }
}

-5

โทร SOAP webservice ใน c #

using (var client = new UpdatedOutlookServiceReferenceAPI.OutlookServiceSoapClient("OutlookServiceSoap"))
{
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12;
    var result = client.UploadAttachmentBase64(GUID, FinalFileName, fileURL);

    if (result == true)
    {
        resultFlag = true;
    }
    else
    {
        resultFlag = false;
    }
    LogWriter.LogWrite1("resultFlag : " + resultFlag);
}

3
คือnew UpdatedOutlookServiceReferenceAPI.OutlookServiceSoapClient()อะไร
Chris F Carroll
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.