Re: Help with Deserialization of complex object with Java Webservice

2009-07-29 Thread Carmelo
Probably you have to write a metod in your client to deserialize that object, and you need to do your class Alert implementing serializable. ES: public class Alert implements serializable{ attributes... public Allert(){} } Remember you have to do a class with an empty constructor. Then befor you

Re: Help with Deserialization of complex object with Java Webservice

2009-07-29 Thread Carmelo
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

WARN Please initialize the log4j system properly

2009-07-24 Thread Carmelo
Hi, i've used axis2 wsdl2java tool to create a client from an application i've deployed. I get this error when i try to run the client: log4j:WARN No appenders could be found for logger (org.apache.axis2.description.AxisService). log4j:WARN Please initialize the log4j system properly. What should

Re: WARN Please initialize the log4j system properly

2009-07-24 Thread Carmelo
://www.mobilefish.com/developer/log4j/log4j.html Step 10 is about configuring log4j.properties, which is likely what you need to do. - Shasta Thank you so much! It is easy and it works! Bye. Carmelo.