i am creating web service in which web method will receive a data in Soap+xml i had created the Pojo class for it what i had planned is to process it using Hash map. My input data as object will be :
POST http://www.hutiamdps.com/IHutiGprsModem/dataservice.java HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: application/soap+xml;charset=UTF-8;action="http://www.hutiamdps.com/IHutiGprsModem/pudata"
User-Agent: Jakarta Commons-HttpClient/3.1
Content-Length: 1581
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ihut="http://www.hutiamdps.com/IHutiGprsModem">
<soap:Header>
................
</soap:Header>
<soap:Body>
<autoip>1034|Chromepet|Chennai117.97.24.32</autoip>
</soap:Body
</soap:Envelope>
@WebMethod(operationName = "operation")
public String operation(@WebParam(name = "xmldata") Object xmldata)
{
.........
return ;
}
To avoid that content upto soap envelope and also tags to process it get xml tags values out of it please tell me is it possible.