hi folks,
I've got a problem with the deserializing of JavaBeans during runtime...
in my deploy descriptor, I'v registered my JavaBean compliant class:
<beanMapping qname="targetNamespace:foo.MyJavaBeanClass"
xmlns:targetNamespace="urn:MyWebServiceName"
languageSpecificType="java:foo.MyJavaBeanClass"/>
everthing works fine, until the MyJavaBeanClass class contains (has a field
of) ANOTHER
javabean compliant class (MyOtherJavaBeanClass)... then I get the exception:
org.xml.sax.SAXException: No deserializer for
{http://foo}MyOtherJavaBeanClass during runtime.
registering the other class (the same way like above) didn't help.
what am I doing wrong ?
thanks,
peter
ps: working with axis 1.1 beta...