I am getting a "Caused by: javax.xml.bind.JAXBException:
"org.helios.routing.server.EndpointInformation" doesnt contain
ObjectFactory.class or jaxb.index" exception when attempting to execute the
following route:
public void configure() throws Exception {
from("direct:ping")
.marshal(jaxb)
.to(endpointInformation.getEpUrl())
.unmarshal(jaxb)
.to("browse:pingEnd");
}
where
jaxb = new JaxbDataFormat();
jaxb.setContextPath(targetClassName);
and targetClassName = "org.helios.routing.server.EndpointInformation"
I am using Camel 2.0-M1
--
View this message in context:
http://www.nabble.com/JAXB-Exception-tp23706927p23706927.html
Sent from the Camel - Users mailing list archive at Nabble.com.