Re: [Axis2] Some questions about Axis2

2007-04-19 Thread Arnold Maderthaner
Hi Deepal ! What else could I do ? Is there any type mapping possibility or what will happen if I just change the generated wsdl manually and deploy it with my webservice ? Will axis2 recognize that this is not anyType but an Instance of my Object ? yours Arnold On 4/19/07, Deepal Jayasinghe

Re: [Axis2] Some questions about Axis2

2007-04-19 Thread Deepal Jayasinghe
Hi Arnold ; Axis2 java2wsld is based on JDK 1.4 not JDK 1.5, so it does not identify the object type of the list and it will treat the list as just java.util.List . That is why you are getting xs:anyType for the return value. To overcome the issue , the only workaround is to return Object array in

Re: [Axis2] Some questions about Axis2

2007-04-19 Thread Amila Suriarachchi
hi, the List type is not supported by the Axis2. although you have written it List this is not interpret by the Axis2. the possible option it to use it as an array e.g. Data1[] On 4/19/07, Arnold Maderthaner <[EMAIL PROTECTED]> wrote: Hi ! I have to write some webservices (client and server)

[Axis2] Some questions about Axis2

2007-04-19 Thread Arnold Maderthaner
Hi ! I have to write some webservices (client and server) and want to use Axis2 so I wrote some test classes: Data classes: public class Data1 { List array = new ArrayList(); public List getArray() { return array; } public void setArray(List array) { this.array = arra