when adding a property to an soap object can't specify it's type .... I need integer but it always sets it to "d:string" <timestamp i:type="d:string">1312191347</timestamp>
here is the way I add the proprety:
SoapObject _client = new SoapObject("urn:PopfaxService", "PopfaxService.getModifiedObjects");
PropertyInfo UIDInfo = new PropertyInfo ();
UIDInfo.name = "timestamp";
UIDInfo.type = PropertyInfo.INTEGER_CLASS;
_client.addProperty(UIDInfo,String.valueOf(timestamp));
can anyone help ?