简体   繁体   English

通过HTTP调用Soap Web服务,给出异常“连接关闭”

[英]Calling Soap web service over HTTP giving exception “Connection close”

I am calling third party Web service over HTTP but it is failing to connect in WPF application/Console Application. 我正在通过HTTP调用第三方Web服务,但是无法在WPF应用程序/控制台应用程序中连接。 Exception is connection close. 例外是连接关闭。 Wondering why it is closed though same SOAP message works in SOAP UI. 想知道为什么在SOAP UI中可以使用相同的SOAP消息关闭它的原因。 Can I give Action with URN as I copyed from SOAP UI. 从SOAP UI复制时,是否可以对URN采取操作。 Please suggest what is wrong. 请指出出什么问题了。 Since it is not using browser so cros domain problem should not be. 由于未使用浏览器,因此cros域问题不应该出现。

My C# code is as follows. 我的C#代码如下。

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Xml;

namespace CTWpfApp
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            CallWebService();
        }
        public static void CallWebService()
        {
            var _url = "https://myService.com/webservices/ct/services/4.1";
            var _action = "urn:provider/interface/ctservices/getCPNInstances";

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

            // Start the asynchronous operation to get the response
            webRequest.BeginGetResponse(new AsyncCallback(GetResponseCallback), webRequest);
        }

        private static void GetResponseCallback(IAsyncResult asynchronousResult)
        {
            HttpWebRequest request = (HttpWebRequest)asynchronousResult.AsyncState;

            // End the operation /* I'm getting the exception Connection Close."*/
            HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(asynchronousResult); 
            Stream streamResponse = response.GetResponseStream();
            StreamReader streamRead = new StreamReader(streamResponse);
            string responseString = streamRead.ReadToEnd();
            Console.WriteLine(responseString);
            // Close the stream object
            streamResponse.Close();
            streamRead.Close();

            // Release the HttpWebResponse
            response.Close();           
        }

        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";
            webRequest.KeepAlive = false;
            webRequest.Timeout = 300000;
            return webRequest;
        }

        private static XmlDocument CreateSoapEnvelope()
        {
            XmlDocument soapEnvelop = new XmlDocument();
            soapEnvelop.LoadXml(@"<SOAP-ENV:Envelope xmlns:SOAP-ENV=""http://schemas.xmlsoap.org/soap/envelope/"" xmlns:ns1=""urn:dictionary:com.ct.webservices""><SOAP-ENV:Header xmlns:wsse=""http://docs.myses.org/wss/2004/01/200401-wss-wssecurity-secext-1.0.xsd""><wsse:Security SOAP-ENV:mustUnderstand=""1""><wsse:UsernameToken><wsse:Username>fiwjiueji</wsse:Username><wsse:Password Type=""http://docs.myses.org/wss/2004/01/200401-wss-username-token-profile-1.0#PasswordText"">tjrrfrsi</wsse:Password></wsse:UsernameToken></wsse:Security></SOAP-ENV:Header><SOAP-ENV:Body><ns1:getCPNInstances></ns1:getCPNInstances></SOAP-ENV:Body></SOAP-ENV:Envelope>");
            return soapEnvelop;
        }

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

Take out the webRequest.KeepAlive = false in the CreateWebRequest method. 在CreateWebRequest方法中取出webRequest.KeepAlive = false。

When using HTTP/1.1, Keep-Alive is on by default. 使用HTTP / 1.1时,默认情况下启用“保持活动”。 Setting KeepAlive to false may result in sending a Connection: Close header to the server. 将KeepAlive设置为false可能会导致向服务器发送Connection:Close标头。 -From http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest.keepalive.aspx -来自http://msdn.microsoft.com/zh-CN/library/system.net.httpwebrequest.keepalive.aspx

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM