SOAP中的授权

时间:2012-04-23 12:02:30

标签: http authentication soap

我想验证在我的服务器上发送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>

我不确定哪一个是正确的解决方案。

0 个答案:

没有答案