我可以查看由soap wcf 调用发出的原始请求吗
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过启用消息跟踪并使用服务跟踪查看器查看消息日志。
话虽如此,消息
无法创建 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.