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.