Examine incoming SOAP in New Sub for Web Service

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • !NoItAll
    Contributor
    • May 2006
    • 297

    Examine incoming SOAP in New Sub for Web Service

    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()
    Code:
    Public Sub New()
    End Sub
    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:

    Code:
    Public Sub New()
    
          msgbox(soap.text)
    
    End Sub
    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.
Working...