Axis « Collection « JPA Q&A





1. axis2 qname not fond for the package: org.hibernate.collection    stackoverflow.com

I am trying to test an axis2 service by creating a client using wsdltocode and using adb databinding. While testing it I get the following error. qname not fond for the ...

2. Hibernate collections and SOAP/Axis    forum.hibernate.org

Hello, I have seen some information on this topic, but I haven't seen the problem I'm having. So, here it goes: I have a domain object that has a java.util.Set member. The domain object is a persistent object and the Set member value will be a hibernate Set instance (lazy loaded one-to-many). I want send this object to a remote client ...

3. Using collection with Axis web service    forum.hibernate.org

First of all I'm not sure why your WSDL is producing a mapping to object[] instead of yourClass[] . Anyways, this is a matter of simple java ... I do stuff like this with Axis 1.x and more recently with Axis2 all the time: Object [] objectArray = property.getRooms() List objectList = Arrays.asList(objectArray); Set arraySet = new HashSet (objectList); There's your ...