C#访问Java的WebService添加Header验证的问题

最近c#开发调用java的webservice接口,调用过程当中老是报错缺乏header验证信息,与接口发布方沟通,查看soap文件才知道原来有的接口方法须要加soapheader验证,可是本地直接经过wsdl地址生成的代理客客户端方法中是看不出来的。java

首先要理解webservice的原理,webservice的交互最终都是基于SOAP信息的交互的。web

网上一堆常见的方法我就不说了,这里说说我找到的我的感受不错的方法:c#

一种就是简单粗暴的拼装soap了,这是最直观有效可是很麻烦的方法了。安全

public class InvokeServiceWithSoap
    {
        public static void InvokeService()
        {
            StringBuilder soap = new StringBuilder();
            soap.Append("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
            soap.Append("<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:end=\"http://localhost/service/\">");
            soap.Append("<soapenv:Header>");
            soap.Append("<wsse:Security xmlns:wsse=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\">");
            soap.Append("<wsse:UsernameToken>");
            soap.Append("<wsse:Username>username</wsse:Username>");//用户名
            soap.Append("<wsse:Password Type=\"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText\">password</wsse:Password>");//口令
            soap.Append("</wsse:UsernameToken>");
            soap.Append("</wsse:Security>");
            soap.Append("</soapenv:Header>");
            soap.Append("<soapenv:Body>");
            soap.Append("<end:service1>");
            soap.Append("<arg0></arg0>");
            soap.Append("</end:service1>");
            soap.Append(" </soapenv:Body>");
            soap.Append(" </soapenv:Envelope>");

            string url = "http://localhost/end:service1";
            var result = GetSOAPReSource(url, soap.ToString());

        }

        public static string GetSOAPReSource(string url, string datastr)
        {
            try
            {
                //request
                Uri uri = new Uri(url);
                WebRequest webRequest = WebRequest.Create(uri);
                webRequest.ContentType = "text/xml; charset=utf-8";
                webRequest.Method = "POST";
                using (Stream requestStream = webRequest.GetRequestStream())
                {
                    byte[] paramBytes = Encoding.UTF8.GetBytes(datastr.ToString());
                    requestStream.Write(paramBytes, 0, paramBytes.Length);
                }
                //response
                WebResponse webResponse = webRequest.GetResponse();
                using (StreamReader myStreamReader = new StreamReader(webResponse.GetResponseStream(), Encoding.UTF8))
                {
                    string result = "";
                    return result = myStreamReader.ReadToEnd();
                }

            }
            catch (Exception ex)
            {
                throw ex;
            }

        }

    }

另一种方法是我找到的最简单的,我就是使用了下面的方法:ui

直接使用.net中的服务引用,注意是服务引用(相似WCF引用)主要经过servicemodel来设置安全认证信息,framework3.0以上都支持,
引用后将 Config中 servicemodel 的 endpoint  节点 增长headers ,安全验证信息增长尽可能来便可。
如下是完整的config:url

<system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="Service1SoapBinding" maxReceivedMessageSize="99999999"/>
      </basicHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://local:9090/
Service1"
          binding="basicHttpBinding" bindingConfiguration="onlineUserServiceSoapBinding"
          contract="smpwcf.Service1" name="Service1ImplPort" >
            <headers>
                <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
                    <wsse:UsernameToken>
                        <wsse:Username>username</wsse:Username>
                        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">password</wsse:Password>
                    </wsse:UsernameToken>
                </wsse:Security>
            </headers>
        </endpoint>
    </client> 21   </system.serviceModel>
相关文章
相关标签/搜索