Hi all,
I want to develop a camel route which processes a xml message. Above a
simple route to demonstrate my use case.
<route id="processMessage">
<from uri="activemq:queue:startMessageProcessing"/>
<bean ref="messageService" method="convertMessage"/>
<bean ref="jbossService" method="validateMessage"/>
<bean ref="jbossService" method="persistMessage"/>
<to uri="activemq:queue:forwardMessage"/>
</route>
I want to do all JPA persist logic by EJB's within a JBoss AS 7. See the
methods of "jbossService" within my example.
And now my question. What's the "best" solution to communicate with a JBoss
AS 7 to invoke EJB's synchronously? Wrapping of the EJB calls within
Soap-Webservices could be a solution but I'am concerned about the
performance. When the system goes into production we have to process 10000
and more messages as fast as possible.
Maybe someone has a more faster solution?
Best regards
--
View this message in context:
http://servicemix.396122.n5.nabble.com/Communication-between-SMX-and-JBoss-AS7-tp5716972.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.