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

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

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

网上一堆常见的方法我就不说了,这里说说我找到的个人感觉不错的方法:

一种就是简单粗暴的拼装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;
            }

        }

    }

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

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

<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>

 

转载于:https://my.oschina.net/u/170467/blog/731621

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值