Thank you!

But, in J2ME, What I need to do? Same?

In my client I have this:

public void testWebService() throws Exception { 
                
                SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
                
                SoapObject soapObject = new SoapObject(url,"getAlerts");
                
                envelope.addMapping(url, "Alert", new Alert().getClass());
                
                envelope.setOutputSoapObject(soapObject);
                
                HttpTransport transport = new HttpTransport(url);
                
                transport.call("getAlerts",envelope);
                
                //HERE IS THE PROBLEM...
                Vector ret = (Vector)envelope.getResponse();
                
        } 

-- 
View this message in context: 
http://www.nabble.com/Help-with-Deserialization-of-complex-object-with-Java-Webservice-tp24709922p24718858.html
Sent from the Axis - User mailing list archive at Nabble.com.

Reply via email to