如何基于WSDL从C#中使用Web服务(SOAP 1.1,WS-Security)?

时间:2016-08-04 15:15:24

标签: c# web-services soap-client ws-security

我有一个Web服务(https://facturaelectronica.dian.gov.co/habilitacion/B2BIntegrationEngine/FacturaElectronica/facturaElectronica.wsdl)的WSDL,它指定它是SOAP 1.1并且应该使用WS-Security。

生成的SOAP标头应该类似于以下示例:

<soapenv:Header>
  <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401wss-wssecurity-secext-1.0.xsd">
    <wsse:UsernameToken>
      <wsse:Username>8ac82326-3016-430f-8d69-9efc4bcefd8f</wsse:Username>
      <wsse:Password>6361b7b5322acb07ced00a35a85a4cc5183da3a42ede0b07f5780 67a18425a55</wsse:Password>
      <wsse:Nonce>FmbZRkx1jh2A+imgjD2fLQ==</wsse:Nonce>
      <wsu:Created>2015-07-31T16:34:33.762Z</wsu:Created>
    </wsse:UsernameToken>
  </wsse:Security>
</soapenv:Header>

有关如何在C#中执行此操作的任何建议? (试图使用WSE3.0和WCF,但没有用)

谢谢。

路易斯

0 个答案:

没有答案