如何显示Web服务调用的soap请求xml?
我正在使用公司网络服务的网络方法。
此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你想怎么看?如果它在代码内部;我不知道。 (不)幸运的是,.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.