thanks in advance. the http soap request structure to the web application /web service is
<soap:Body>
<m:Notify xmlns:m="http://www.w3schools.com/prices">
<m:Username> .. </m:Username>
<m:Password> ... </m:Password>
<m:Entity>Advertiser</m:Entity>
<m:ID>ID of advertiser</m:ID>
<m:Mode>Add</m:Mode>
</m:Notify>
</soap:Body>
i need to read this parameters and insert them to database .
i am very new to such soap request handling
please advice how can i read these parameters of body in page or with web service.. ? which is better ? and how to access them
thanks in advance..