First in the web service i am creating process like it will receive soap+xml Like This :
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:Body>
<soap:pudata>
<ihut:arxmldata>
<ihutdata 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>
</ihutidata>
</ihut:argxmldata>
</ihut:putdata>
</soap:Body
</soap:Envelope>
i am taking only xml tags from it and converting it to String and passing it to other functions like java class know i want to convert it to object so that i can save it to database so i had created a class with @XMLAccessor, @XMLRootElement
Like This
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "ihutidata")
public class ihutidata {
@XmlAttribute(required = true)
public String devsrlno;
@XmlAttribute(required = true)
public String signalstrength;
@XmlElement(required = true)
public String autoip;
public String getdevsrlno() {
return devsrlno;
}
public void setdevsrlno(String value) {
this.devsrlno = value;
}
public String getsignalstrength() {
return signalstrength;
}
public void setsignalstrength(String value) {
this.signalstrength = value;
}
public String getAutoip() {
return autoip;
}
public void setAutoip(String value) {
this.autoip = value;
}
public ihutidata() {
devsrlno = null;
signalstrength = null;
autoip = null;
}
}
know from another java class i am calling ConvertToObject Function its not working i am passing that String file too.
i am calling like this
public static SaveToDb(String xmldata)
{
ihutidata resp = new ihutidata();
String strrespxml = null;
Class<ihutidata> req =ihutidata.class;//this is correct or not
ihutidata reqs =(ihutidata)OuterXml.ConvertToObject(req, argdata);//this is also wrong
if(resp!=null)
{
resp.autoip=ProcessAutoIP(reqs);
strrespxml=ConvertFromObject(resp);
}
return strrespxml;
}
//Not Working
public static Object ConvertToObject(Type rr, String strxml)
{
Object obj;
XStream xstream = new XStream();
obj = xstream.fromXML(strxml, rr);
return obj;
}
//Not Working
public static String ConvertFromObject(ihutidata argobj)
{
XStream xstream = new XStream();
String xmldata = xstream.toXML(argobj);
return xmldata;
}
after calling converttoobject() string file will be converted to object and then certain process happens it calls convertfromobject(). please anyone tell me how to do.