I'd like to create osgi bundle which listen for soap messages and route them to remote ejb. I have servicemix 4.x as a bundle environment, glassfish 4 as a ejb container and camel as routing engine. Is it possible to connect to each other?
Asked
Active
Viewed 988 times
1 Answers
0
Yes, there cxf
and ejb
components and you should be able to define your route like this:
from("cxf:...")
// ...
.to(ejb:...")
;
Please refer to: Apache Camel Components - CXF and EJB.

vikingsteve
- 38,481
- 23
- 112
- 156
-
The problem is that ejb is on the different jvm, so I must define host and port or jndi registry somewhere. – Marcin Wiśniewski Jan 16 '14 at 11:37