10

我正在尝试在调用 Web 服务之前在 c# 中添加自定义肥皂头信息。我正在使用 SOAP Header 类来完成这项工作。我可以部分但不完全按照我需要的方式做到这一点。这就是我需要肥皂头的样子

<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:Header>
      <Security xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
      <UsernameToken>
         <Username>USERID</Username>
         <Password>PASSWORD</Password>
        </UsernameToken>    
      </Security>
   </soap:Header>
   <soap:Body>
   ...

我可以添加肥皂标题如下

<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:Header>
      <UsernameToken xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
         <Username>UserID</Username>
         <Password>Test</Password>
      </UsernameToken>
   </soap:Header>
   <soap:Body>

我无法做的是添加包装“UsernameToken”的“Security”元素,如第一个示例中所示。任何帮助,将不胜感激。

4

1 回答 1

2

这个添加肥皂标题的链接对我有用。我正在调用我没有编写且无法控制的 SOAP 1.1 服务。我正在使用 VS 2012 并将该服务添加为我的项目中的 Web 参考。希望这可以帮助

我按照 J. Dudgeon 帖子底部的步骤 1-5 进行操作。

这是一些示例代码(这将在单独的 .cs 文件中):

namespace SAME_NAMESPACE_AS_PROXY_CLASS
{
    // This is needed since the web service must have the username and pwd passed in a custom SOAP header, apparently
    public partial class MyService : System.Web.Services.Protocols.SoapHttpClientProtocol
    {
        public Creds credHeader;  // will hold the creds that are passed in the SOAP Header
    }

    [XmlRoot(Namespace = "http://cnn.com/xy")]  // your service's namespace goes in quotes
    public class Creds : SoapHeader
    {
        public string Username;
        public string Password;
    }
}

然后在生成的代理类中,在调用服务的方法上,按照 J Dudgeon 的第 4 步添加此属性:[SoapHeader("credHeader", Direction = SoapHeaderDirection.In)]

最后,这是对生成的代理方法的调用,带有标题:

using (MyService client = new MyService())
{
    client.credHeader = new Creds();
    client.credHeader.Username = "username";
    client.credHeader.Password = "pwd";
    rResponse = client.MyProxyMethodHere();
}
于 2013-10-03T18:04:42.987 回答