Hello All,
 
I think this question was asked several times before but somehow I could understand it by looking at the previous threads.
 
I have an object of type 'User'  that is being returned by webservice. Here is my wsdl mapping
 

<beanMapping languageSpecificType="java:myEntities.User" qname="ns1:User" xmlns:ns1="urn:MyServiceService"/>

Here is my client code that registers the class

QName qnUser = new QName("urn:ProjectManagerService", "User");

call.registerTypeMapping(User.class, qnUser,
    new org.apache.axis.encoding.ser.BeanSerializerFactory(
      User.class, qnUser),
    new org.apache.axis.encoding.ser.BeanDeserializerFactory(
      User.class , qnUser));

This works fine , but how do I register a type mappin for an Array of 'User ' objects  and what should be the beanmapping tag look like ?

 

Thanks a lot in advacne.

 

 

 

Reply via email to