I am writing a web service for an existing client. Ok - I know that's backwards, but that's simply the way this project has to be done.
I am also new to web services so treating me like a newbie is helpful!
I see that the first thing that gets called when someone calls a soap method in my web service is the sub new()
I am hoping to be able to examine, or log the soap xml inside this sub - but don't have a clue where to begin. For example:
ok - I made up the soap.text (as if anything in MS is THAT easy), but that's what I would like to be able to do.
I am also new to web services so treating me like a newbie is helpful!
I see that the first thing that gets called when someone calls a soap method in my web service is the sub new()
Code:
Public Sub New() End Sub
Code:
Public Sub New()
msgbox(soap.text)
End Sub