Hi All,

I've been banging my head against the wall now for a week, trying to get a 
camel route going which consumes a remote service on an EJB2 container in 
weblogic 10.3. I keep getting class versioning issues between my client and the 
server.I have the exact same versions of the server jars in karaf as bundles 
and I import them through my manifest.  My bundle installs ok into karaf with a 
state of "Active" and the camel routes start up. I'm a newbie in the osgi, 
camel world.

I'm running camel 2.19.1 in apache karaf 4.1.1.

My blueprint looks like this:

<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0";
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
           
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.0.0";
           xmlns:jaxws="http://cxf.apache.org/blueprint/jaxws";
           xmlns:cxf="http://cxf.apache.org/blueprint/core";
           xmlns:camel="http://camel.apache.org/schema/blueprint";
           xmlns:camelcxf="http://camel.apache.org/schema/blueprint/cxf";
           xsi:schemaLocation="
             http://www.osgi.org/xmlns/blueprint/v1.0.0 
https://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
             http://cxf.apache.org/blueprint/jaxws 
http://cxf.apache.org/schemas/blueprint/jaxws.xsd
             http://cxf.apache.org/blueprint/core 
http://cxf.apache.org/schemas/blueprint/core.xsd
             ">

  <bean id="eTimesheetMediationRoutes" 
class="au.gov.qld.ambulance.services.legacywrapper.eTimesheetMediation"/>

  <bean id="eTimesheetEJB2Bean" 
class="au.gov.qld.ambulance.services.legacywrapper.eTimesheetEJB2Bean"/>

  <camelContext id="camel" xmlns="http://camel.apache.org/schema/blueprint";>
    <routeBuilder ref="eTimesheetMediationRoutes"/>
  </camelContext>

</blueprint>

My manifest is as follows:

Manifest-Version: 1.0
Bnd-LastModified: 1499385820689
Build-Jdk: 1.8.0_131
Built-By: mshaw
Bundle-Blueprint: OSGI-INF/blueprint/camel-context.xml
Bundle-ManifestVersion: 2
Bundle-Name: legacywrapper
Bundle-SymbolicName: au.gov.qld.ambulance.tams.legacywrapper
Bundle-Version: 0.0.1.SNAPSHOT
Created-By: Apache Maven Bundle Plugin
Export-Package: au.gov.qld.ambulance.services.legacywrapper;uses:="au.go
v.qld.des.aftimesheet.dto,javax.naming,org.apache.camel.builder";versio
n="0.0.1",au.gov.qld.ambulance.services.legacywrapper.domain;uses:="jav
ax.xml.bind,javax.xml.bind.annotation";version="0.0.1"
Import-Package: au.gov.qld.des.aftimesheet.dto;version="0.0.0",au.gov.ql
d.des.aftimesheet.ejb;version="0.0.0",au.gov.qld.des.aftimesheet.except
ion;version="0.0.0",com.fasterxml.jackson.annotation;version="[2.8,3)",
com.fasterxml.jackson.databind;version="[2.8,3)",javax.ejb,javax.naming
,javax.rmi,javax.xml.bind,javax.xml.bind.annotation,javax.xml.namespace
,org.apache.camel;version="[2.19,3)",org.apache.camel.builder;version="
[2.19,3)",org.apache.camel.model;version="[2.19,3)",org.apache.camel.mo
del.rest;version="[2.19,3)",org.osgi.service.blueprint;version="[1.0.0,
2.0.0)",org.restlet.data,org.slf4j;version="[1.7,2)",au.gov.qld.des.aft
imesheet.officer.dto;version="0.0.0",weblogic.jndi,javax.rmi.CORBA,org.
omg.CORBA,org.omg.CORBA.portable,org.omg.CORBA_2_3,org.omg.CORBA_2_3.po
rtable
Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"
Tool: Bnd-3.3.0.201609221906

My route builder impl class:


public class eTimesheetMediation extends RouteBuilder {

    Logger logger = LoggerFactory.getLogger(eTimesheetMediation.class);

    @BeanInject("eTimesheetEJB2Bean")
    eTimesheetEJB2Bean eTimesheetEJB2Bean;

    @Override
    public void configure() throws Exception {

        
restConfiguration().component("restlet").host("localhost").port(8095).bindingMode(RestBindingMode.json);

        rest("/services/legacywrapper/etimesheet")
                .post()
                .consumes(MediaType.APPLICATION_JSON.getName())
                .type(ETimesheetRequest.class)
                .to("direct:extractTimesheetId");

        from("direct:extractTimesheetId")
                .process(new Processor() {
                    @Override
                    public void process(Exchange exchange) throws Exception {
                        ETimesheetRequest eTimesheetRequest = 
exchange.getIn().getBody(ETimesheetRequest.class);
                        
exchange.getIn().setBody(eTimesheetRequest.getTimesheetId());
                    }
                })
                .to("direct:etimesheetGet");


        from("direct:etimesheetGet")
                .doTry()
                    .bean(eTimesheetEJB2Bean, "mediate")
                    .log(LoggingLevel.INFO,"Timesheet successfully transformed")
                    .convertBodyTo(String.class, "UTF-8")
                .doCatch(Exception.class)
                    .log(LoggingLevel.ERROR ,exceptionMessage().toString())
                    .throwException(new 
RuntimeException(exceptionMessage().toString()))
                .endDoTry();


    }
}


My ejb client code / bean:


public class eTimesheetEJB2Bean {

    public String mediate(Integer eTimesheetId) {

        Hashtable env = new Hashtable();
        env.put(Context.INITIAL_CONTEXT_FACTORY, 
"weblogic.jndi.WLInitialContextFactory");
        env.put(Context.PROVIDER_URL, "t3://poldesaps02:5013");
        env.put(Context.SECURITY_PRINCIPAL, "testuser4");
        env.put(Context.SECURITY_CREDENTIALS, "passw0rd");

        Context ic = null;

        try {
            ic = new InitialContext(env);
        }catch (NamingException e) {
            throw new RuntimeException(e);
        }

        return marshallTimesheetToJSON(ic ,getTimesheet(ic, eTimesheetId));

    }



    public TimesheetTransferObject getTimesheet (Context ic, Integer 
eTimesheetId) {
        Object homeObject = null;

        try {
            homeObject = ic.lookup(TimesheetSessionFacadeHome.JNDI_NAME);
        } catch (NamingException e) {
            throw new RuntimeException(e);
        }

        TimesheetSessionFacadeHome home = (TimesheetSessionFacadeHome) 
PortableRemoteObject.narrow(homeObject, TimesheetSessionFacadeHome.class);

        TimesheetSessionFacade remote = null;
        try {
            remote = (TimesheetSessionFacade) 
PortableRemoteObject.narrow(home.create(), TimesheetSessionFacade.class);
            TimesheetTransferObject result = remote.getTimesheet(eTimesheetId);
//            TimesheetTransferObject result = new TimesheetTransferObject();

            return result;
        } catch (ClassCastException e) {
            throw new RuntimeException(e);
        } catch (RemoteException e) {
            throw new RuntimeException(e);
        } catch (CreateException e) {
            throw new RuntimeException(e);
        }catch (AFTimesheetException e) {
            throw new RuntimeException(e);
        }
    }

    private String marshallTimesheet (Context ic, TimesheetTransferObject 
timesheet) {

        String xml = "";
        ByteArrayOutputStream baos = new ByteArrayOutputStream();

        try {
            JAXBContext jc = JAXBContext.newInstance(String.class, 
TimesheetTransferObject.class);
            JAXBIntrospector introspector = jc.createJAXBIntrospector();
            Marshaller marshaller = jc.createMarshaller();
            marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true);
            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
            if (null == introspector.getElementName(timesheet)) {
                JAXBElement jaxbElement = new JAXBElement(new 
QName("http://services.ambulance.qld.gov.au/data/services/corporate/hri/timeandattendance";,
 "Timesheet", "ta"), timesheet.getClass(), timesheet);

                marshaller.marshal(jaxbElement, baos);
            } else {
                marshaller.marshal(timesheet, baos);
            }
            xml += baos.toString();
        } catch (JAXBException e) {
            throw new RuntimeException(e);
        }
        return xml;
    }

    private String marshallTimesheetToJSON (Context ic, TimesheetTransferObject 
timesheet) {

        try {
            ObjectMapper objectMapper = new ObjectMapper();
            
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
            objectMapper.addMixIn(MealBrokenTransferObject.class, 
MealBrokenTransferObjectMixIn.class);
            objectMapper.addMixIn(ShiftTransferObject.class, 
ShiftTransferObjectMixIn.class);
            objectMapper.addMixIn(TimesheetTransferObject.class, 
TimesheetTransferObjectMixIn.class);
            objectMapper.addMixIn(CallOutTransferObject.class, 
CalloutTransferObjectMixIn.class);
            objectMapper.addMixIn(CallOutCaseTransferObject.class, 
CallOutCaseTransferObjectMixIn.class);
            objectMapper.addMixIn(AllowanceTransferObject.class, 
AllowanceTransferObjectMixIn.class);
            return objectMapper.writeValueAsString(timesheet);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }

    }

}


Any help / insight would be really appreciated.

Cheers,
Matt.





This email, including any attachments sent with it, is confidential and for the 
sole use of the intended recipient(s). This confidentiality is not waived or 
lost, if you receive it and you are not the intended recipient(s), or if it is 
transmitted/received in error.

Any unauthorised use, alteration, disclosure, distribution or review of this 
email is strictly prohibited. The information contained in this email, 
including any attachment sent with it, may be subject to a statutory duty of 
confidentiality if it relates to health service matters.

If you are not the intended recipient(s), or if you have received this email in 
error, you are asked to immediately notify the sender. You should also delete 
this email, and any copies, from your computer system network and destroy any 
hard copies produced.

If not an intended recipient of this email, you must not copy, distribute or 
take any action(s) that relies on it; any form of disclosure, modification, 
distribution and/or publication of this email is also prohibited.

Although the Queensland Ambulance Service takes all reasonable steps to ensure 
this email does not contain malicious software, the Queensland Ambulance 
Service does not accept responsibility for the consequences if any person's 
computer inadvertently suffers any disruption to services, loss of information, 
harm or is infected with a virus, other malicious computer programme or code 
that may occur as a consequence of receiving this email.

Unless stated otherwise, this email represents only the views of the sender and 
not the views of the Queensland Government.

********************************************************************************

The content presented in this publication is distributed by the Queensland 
Government as an information source only. The State of Queensland makes no 
statements, representations or warranties about the accuracy, completeness or 
reliability of any information contained in this publication. The State of 
Queensland disclaims all responsibility and all liability (including without 
limitation for liability in negligence) for all expenses, losses, damages and 
costs you might incur as a result of the information being inaccurate or 
incomplete in any way, and for any reason reliance was placed on such 
information.

Reply via email to