我想对在我的服务器上发送 SOAP 请求的用户进行身份验证,并且我想使用基本授权。在 REST 中,我通常使用Authorization
标题。我也可以在这里使用它还是应该使用soap:Header
这样的元素?
<SOAP-ENV:Header>
<h:BasicAuth xmlns:h="http://soap-authentication.org/basic/2001/10/"
SOAP-ENV:mustUnderstand="1">
<Name>admin</Name>
<Password>broccoli</Password>
</h:BasicAuth>
</SOAP-ENV:Header>
我不确定哪一个是正确的解决方案。