| | | |
| | <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <tns:GetConfiguration xmlns:tns="http://security.com/"> <tns:sXmlQuery> <!--Text--> </tns:sXmlQuery> </tns:GetConfiguration> </SOAP-ENV:Body> </SOAP-ENV:Envelope> | |
| | | |
|
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <tns:GetListNames xmlns:tns="http://security.com/"> <tns:sXmlQuery> <!--Text--> </tns:sXmlQuery> </tns:GetListNames> </SOAP-ENV:Body> </SOAP-ENV:Envelope> |
|
|
|
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <tns:GetItemNames xmlns:tns="http://security.com/"> <tns:sXmlQuery> <!--Text--> </tns:sXmlQuery> </tns:GetItemNames> </SOAP-ENV:Body> </SOAP-ENV:Envelope> |
From above XML, I need to extract the method name (GetConfiguration,GetListNames,GetItemNames) which are highlighted. I've written httpmodule and it will keep receiving the web requests, how specific method names can be tracked among more requests? Please advice.