You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2003/03/31 20:55:02 UTC

DO NOT REPLY [Bug 18530] - org.xml.sax.SAXException: No deserializer defined for array type AcnInfoRow

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18530>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18530

org.xml.sax.SAXException: No deserializer defined for array type AcnInfoRow





------- Additional Comments From dims@yahoo.com  2003-03-31 18:55 -------
Please submit your schaat_allenm.HandTest as well...Typically you have to add
the typemapping by hand if you are constructing the call by hand.

        QName employee = new QName("http://DefaultNamespace", "Employee");
        TypeMappingRegistry registry = service.getTypeMappingRegistry();
        TypeMapping map = registry.getDefaultTypeMapping();
        map.register(Employee.class,
                employee,
                new BeanSerializerFactory(Employee.class, employee),
                new BeanDeserializerFactory(Employee.class, employee));

Thanks,
dims