Hi,
Has anyone on this list managed to serialize AND deserialize a bean with Axis's bean
serializer or there own custom serializer / deserializer ever ?
Just to know that it has been done once will fill me with a renewed hope. If you can
tell me how you side stepped the ubiquitous error (Error : org.xml.sax.SAXException:
Deserializing parameter 'arg1': could not find deserializer for type
ANYTYPEWHATSOEVEREXCEPTPRIMATIVES) as well I may very well weep with joy.
Many thanks
Russell
PS check this out:
call.registerTypeMapping(ArgumentSet.class, qn, FSSerializerFactory.class,
FSDeserializerFactory.class, t);
TypeMapping tm = call.getTypeMapping();
boolean isit = tm.isRegistered(ArgumentSet.class, qn);
System.out.println("Well isit ? : "+isit);
DeserializerFactory dsf =
(org.apache.axis.encoding.DeserializerFactory)tm.getDeserializer(qn);
if(dsf != null) {
FSDeserializer fsd =
(com.freeserve.fsmap.encoding.FSDeserializer)dsf.getDeserializerAs(Constants.AXIS_SAX);
}
all works, yes I can find the f***** deserializer but AxisEngine cannot: anyone,
anyone ??
RB