Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 WCF 连接到 Java 服务。该服务需要对正文进行签名,并且仅对 SOAP 消息的正文进行签名。
我正在使用 MutualCertificate 安全性进行自定义绑定,但似乎这不仅标志着正文,而且还签署了标题(或其中的一部分)。
真的吗?
如果是,我怎样才能只签署身体?
谢谢
我认为您可以使用:
[MessageBodyMember(ProtectionLevel=ProtectionLevel.EncryptAndSign)]
或者
[MessageBodyMember(ProtectionLevel=ProtectionLevel.Sign)]
突出显示您想要签名/加密的内容?