Trace Host of a SOAP Request

佐手、 提交于 2019-12-11 17:13:16

问题


The software my company uses has a web service which signature is more or less like this:

[WebMethod]
public DataSet MakeQuery(string sql) {
}

NOTE 1: I don't have the code for this.

Recently, we noted the Sql Server gets a lot of processes without dying, so I want to trace the input of this webMethod.

Is any way I can do this?

I was thinking of a SoapExtension, but i don't have the source code for the web service. basically I want to know the name of the machine that sends the SOAP request.

NOTE 2: The SQL Server's processes report the server as the host.


回答1:


Try Wireshark to see what gets transmitted over the wire.



来源:https://stackoverflow.com/questions/802595/trace-host-of-a-soap-request

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!