Sorry, i don't know.
Il giorno mer, 29/07/2009 alle 06.07 -0700, guitarro17 ha scritto:
> 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();
>               
>       } 
> 

Reply via email to