i need to write a java web service to get a soap request as input the soap file will be :
Post http://www.ssss.com/modem/service.java http/1.1
Accept-Encoding:gzip,deflate
Content-Type:Application/Soap+xml;charset=UTF-8;action="http://www.sss.com/modem/getdata"
User-Agent:Jakarta Commons-HttpClient/3.1
Host:www.sss.com
Content-Length:1581
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ihut="http://www.hutiamdps.com/IHutiGprsModem">
<soap:Header>
<ihut:UserCredentials>
<ihut:Username>dseadmin</ihut:Username>
<ihut:Password>4AEF228BD172621CA5BC8EF6EA6A68B4</ihut:Password>
</ihut:UserCredentials>
</soap:Header>
<soap:Body>
<ihut:putdata>
<ihut:argxmldata>
<ihutidata xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" devsrlno="101" signalstrength="30" devicedatetime="01/24/2010 10:10:23 AM" gprsdatetime="01/24/2010 10:10:23 AM" debug="yes">
<autoip>1034|Chromepet|Chennai117.97.24.32</autoip>
<instant>1|2|3|4|5|6|7|8|9|10|11|12|13|14|15</instant>
<cumulative>1|2|3|4|5|6|7|8|9|10|11|12|13|14|15</cumulative>
<powerfailure>01/24/2010 10:10:10 AM|01/24/2010 10:10:11 AM</powerfailure>
<tamper>01/24/2010 10:10:10 AM|10|11</tamper>
</ihutidata>
</ihut:argxmldata>
</ihut:putdata>
</soap:Body>
</soap:Envelope>
and after getting this soap request as input i want only tags and values i want to skip other unwanted datas then to convert whole file as string for further purpose to serialize and deserialize and then store it to database please any one help me.