我正在实现一个WS服务,它必须支持WS-Trust (1.3)。OASIS将WS-Trust的名称空间定义为http://docs.oasis-open.org/ws-sx/ws-trust/200512 (在http://docs.oasis-open.org/ws-sx/ws-trust/200512中定义)。web中的许多实现都在使用名称空间http://schemas.xmlsoap.org/ws/2005/02/trust。为什么会这样呢?为什么有很多规范(和XSD)在http://schemas.xmlsoap.org下镜像...?在我看来,如果您使用schemas.xmlsoap.org,就不能说您实现了OASIS规范……命名空间。这是正确的吗?
发布于 2011-11-16 03:21:31
根据WS-Trust1.3的Identity Metasystem Interoperability,您必须使用http://docs.oasis-open.org/ws-sx/ws-trust/200512。只需看看here:
1. `http://schemas.xmlsoap.org/ws/2005/02/trust` is for WS-Trust 1.2
2. `http://docs.oasis-open.org/ws-sx/ws-trust/200512` is for WS-Trust 1.3https://stackoverflow.com/questions/8141691
复制相似问题