Hi,
If I get you right the problem is that the classes generated by jaxb do not
implement Serializable?! This can be changed by adding custom binding for
jaxb. I haven't tried out how to use this with Camel but I guess this should
be a starting point. You can also google for jaxb java class serializable.
Should be something like this:
<?xml version="1.0" encoding="UTF-8"?>
<jxb:bindings version="2.0"
xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<jxb:bindings >
<jxb:globalBindings>
<jxb:serializable uid="1" />
</jxb:globalBindings>
</jxb:bindings>
</jxb:bindings>
Hope this helps.
--
View this message in context:
http://www.nabble.com/Does-Jaxb-With-Spring-Remoting-%28proxy%29-work---tp24956379p24982316.html
Sent from the Camel - Users (activemq) mailing list archive at Nabble.com.