使用证书签署 Soap 请求

发布于 2024-12-19 07:44:46 字数 446 浏览 0 评论 0原文

我想使用计算机中存储的证书签署 Soap 请求(.NET 3.5,C#)(可以读取证书)。

我不希望对请求进行加密(这就是当我更改 WSHttpBinding 上的 Security.ModeSecurity.Message 属性时得到的结果) 。 我正在寻找签名的 Soap 标头

在阅读了 MSDN、博客、StackOverflow 上的大量文章之后...我想出了这种方法:使用 IClientMessageInspector 和方法 BeforeSendRequest。我可以在其中设置断点并查看我的请求,但如何修改其 XML 内容

I'd like to sign a Soap request (.NET 3.5, C#) with a certificate stored in the computer (reading of certificate is ok).

I don't want the request to be encrypted (that's what I get when I change Security.Mode and Security.Message properties on WSHttpBinding). I am looking for a signed Soap header.

After reading tons of articles on MSDN, blog, StackOverflow... I came up with this approach: using IClientMessageInspector and method BeforeSendRequest. I can set a breakpoint in it and see my request, but how to modify its XML content?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

智商已欠费 2024-12-26 07:44:46

可以修改消息 - 有关示例代码和说明,请参阅

基本上你复制 Message< /code> 作为缓冲副本复制到 XML 文档,修改 XML,然后从修改后的 XML 创建一个新的 Message 并将新的 Message 分配给 ref留言参数...

Modifying the message is possible - for sample code and explanations see

Basically you copy the Message to an XML Doc as a buffered copy, modify the XML, then create a new Message from that modified XML and assign the new Message to the ref Message param...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文