如何显示Web服务调用的soap请求xml?

发布于 2024-10-30 12:13:05 字数 189 浏览 1 评论 0原文

我正在使用公司网络服务的网络方法。

此 Web 方法在调用时需要一个参数:

CompanyOpereations srv = new CompanyOperations();
srv.getCustomerInfo(input);

调用此方法时如何查看我的soap 请求 xml?

I am using a web method of a company's web service.

This web method requires one parameter when calling it:

CompanyOpereations srv = new CompanyOperations();
srv.getCustomerInfo(input);

How can I see my soap request xml when calling this method?

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

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

发布评论

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

评论(1

攒眉千度 2024-11-06 12:13:05

你想怎么看?如果它在代码内部;我不知道。 (不)幸运的是,.NET 在为开发人员隐藏它方面做得非常好。

但是,如果您只想调试调用而不做其他事情:请尝试 Fiddler。它将向您显示 Web 服务调用的请求/响应(包括标头和其他所有内容)。这是我们用于调试 Web 服务的工具。但您可以将它用于使用 HTTP 协议进行通信的所有内容。

How do you want to see it? If it's inside the code; I don't know. (Un)Fortunately .NET does a pretty good job of hiding it for the developer.

However, if you just want to debug the calls and nothing else: try Fiddler. It will show you the Request/Response (including headers and everything else) for the webservice calls. This is what we use for debugging webservices. But you can use it for everything that uses the HTTP protocol for communication.

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