我在项目中添加了服务参考。
我需要按照以下方式传递安全标头
<soapenv:Header>
<oas:Security>
<oas:UsernameToken>
<oas:Username>username</oas:Username>
<oas:Password>!password</oas:Password>
</oas:UsernameToken>
</oas:Security>
我该如何设置。如果您查看我如何设置请求,是否可以对标头进行相同的设置。
安全性xsds嵌入在WSDL中。
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd
和
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd。
对服务操作的请求如下所示:
MyWebService.PortTypeClient client = new MyWebService.PortTypeClient();
MyWebService.SecurityHeaderType secHeader = new MyWebService.SecurityHeaderType();
RetrieveOperationRequest detailsRequest = new RetrieveOperationRequest ();
detailsRequest.inputParam1 = "1234";
var result = client.RetrieveOperation(secHeader, detailsRequest);
我如何生成标题部分???
您可以看到我通过了安全标头,因为Web服务需要这样做。
谢谢。
最佳答案
我设法找到解决方案/解决方法。
这是在Web.config文件中设置的。
<client>
<endpoint address="http://localhost:6478/service/1.0"
binding="basicHttpBinding" bindingConfiguration="ServiceEndpointBinding"
contract="TestService.PortType" name="ServiceEndpoint">
<headers>
<ns2:Security xmlns:ns2="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns:ns1="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<ns2:UsernameToken>
<ns2:Username>username</ns2:Username>
<ns2:Password>!password</ns2:Password>
</ns2:UsernameToken>
</ns2:Security>
</headers>
</endpoint>
</client>
不幸的是,我找不到该解决方案的来源。我只是在解决这个问题。
关于c# - 在MVC C#中生成SOAP header ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46089979/