vote up 0 vote down star

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.

flag

1 Answer

vote up 1 vote down check

Try Wireshark to see what gets transmitted over the wire.

link|flag
Wireshark will definitely help you out, just insure that you're not using SSL. Here's a writeup of using Wireshark to debug web services: molecularvoices.molecular.com/2008/… – Paul Lindner May 12 at 22:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.