Hi,

I am working on this titled item and thought I might be able to get some advise from you. I am trying to figure out the Axis2 corresponding code to figure out which method it is invoking. Specially, CXF integration into geronimo has the following code:

RpcContainer container = (RpcContainer)this.deploymentInfo.getContainer();
Object result = null;
try {
result = container.invoke(this.deploymentInfo.getDeploymentID(), m, paramArray, null, null);
} catch (OpenEJBException e) {
    throw new Fault(e);
}

the above code basically forwards the call to openejb container (which is what geronimo uses for openejb3). I was going to add similar code for Axis2 integration, but I don't know how to get Method m and Object[] paramArray ((method and method signatures) from Axis2.

Any advice is appreciated!

Lin

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to