Question

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.

Was it helpful?

Solution

Try Wireshark to see what gets transmitted over the wire.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top