我想用用户名和密码对WCF服务上的请求进行身份验证--接收到的请求soap头将是这样的,那么我应该如何配置wcf服务来检查数据库中的用户名和密码。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:ns="http://schemas.datacontract.org/2004/07/">
<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken-2">
<wsse:Username></wsse:Username>
<wsse:Password></wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<tem:RequestForCustomsExemption>
<customsExemptionRequest>
<BILL_NUMBER>12583603</BILL_NUMBER>
</customsExemptionRequest>
</tem:RequestForCustomsExemption>
</soapenv:Body>
</soapenv:Envelope>发布于 2018-11-15 16:15:40
您需要使用自定义UsernamePasswordValidator扩展。这篇文章应该有您需要的所有信息:如何:使用自定义用户名和密码
https://stackoverflow.com/questions/53313948
复制相似问题