我可以查看由soap wcf 调用发出的原始请求吗

发布于 2024-08-22 06:46:50 字数 131 浏览 8 评论 0原文

我正在使用 WCF 向第三方服务发出 SOAP 请求。该服务要求我签署请求,我认为我正在这样做,但收到错误: 无法创建 SSL/TLS 安全通道 所以我想知道是否有办法查看原始 xml正在发送,以便我可以看到问题出在哪里?

I am making a SOAP request using WCF to a third party service. The service requires that I sign the request, which I think I am doing but I get the error: Could not create SSL/TLS secure channel So I am wondering if there is a way to see the raw xml that is being sent so I can see where the problem is?

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

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

发布评论

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

评论(2

雨落星ぅ辰 2024-08-29 06:46:50

您可以通过启用消息跟踪并使用服务跟踪查看器查看消息日志

话虽如此,消息 无法创建 SSL/TLS 安全通道 意味着传输级别存在问题,因此我怀疑您是否会在消息跟踪中找到很多用处。这可能意味着您没有正确的客户端证书或根本没有; ASP.NET 论坛上的此帖子可能会帮助您解决此问题。

You can see the contents of a message by enabling message tracing and using the Service Trace Viewer to view the message logs.

Having said that, the message Could not create SSL/TLS secure channel implies a problem at the transport level, so I doubt that you are going to find much of use in the message trace. It likely means you don't have the right client certificate or none at all; this thread on the ASP.NET forums might help you out with that.

︶葆Ⅱㄣ 2024-08-29 06:46:50
OperationContext.Current.RequestContext.RequestMessage.ToString()
OperationContext.Current.RequestContext.RequestMessage.ToString()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文