fuseesb

OpenJPA - Transaction management is not available… (Fuse ESB)

﹥>﹥吖頭↗ 提交于 2019-12-04 16:03:08
I'm having trouble with RESOURCE_LOCAL transaction type for JPA in Fuse ESB. I also don't have a complete understanding of whether JTA or RESOURCE_LOCAL is better for me. My persistence.xml : <persistence-unit name="invoicePersistence" transaction-type="RESOURCE_LOCAL"> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider> <jta-data-source>osgi:service/javax.sql.DataSource/(osgi.jndi.service.name=jdbc/invDataSource)</jta-data-source> <non-jta-data-source>osgi:service/javax.sql.DataSource/(osgi.jndi.service.name=jdbc/invDataSource)</non-jta-data-source> <class>com.company

Work Flow in Camel vs BPM

◇◆丶佛笑我妖孽 提交于 2019-12-03 03:04:02
We have used Apache camel as a Workflow engine.First Wehave WebService One and wait for the response and based on the response call WebService 2 or WebService 3.Its a pure WorkFlow and have couple of WorkFlow Steps like this.I have got less chances to work on a BPM product , like JBOSS BPM etc. Other than long running and support for human task any other good reason we have to choose a BPM product ? If both long running and human task support are not needed in our project can we use Camel or JBOSS FUSE to orchestrate business processes ? Thanks, Leo. salaboy Yeah.. as Antoine mention, from the

Debugging FuseESB application in Eclipse

我们两清 提交于 2019-11-30 05:07:00
问题 Fuse ESB uses karaf server with OSGi. for the code if anybody has steps to get the debugger for the application it will help. I am currently using Eclipse Indigo. As OSGi is used we are using Maven to build the same. Which plugin will help for Karaf with OSGi 回答1: Java allows you to remote debug any JVM running. So if you start the ESB with a debug argument, then it will run in debug mode listening on port 5005. davsclaus:/opt/fuse-esb-7.0.1.fuse-084$ bin/fuseesb debug Listening for transport

How to configure maven-bundle-plugin to exclude Import-Service and Export-Service?

夙愿已清 提交于 2019-11-29 23:20:30
问题 I use maven-bundle-plugin to create OSGi compliance jars. It generates expected OSGi MANIFEST, except Import-Service and Export-Service. According to http://wiki.osgi.org/wiki/Import-Service, using Import-Service is deprecated. No wonder I failed to start a consumer bundle in distributed fabric mode (cluster). The bundle's MANIFEST contains Import-Service entry which causes it to wait (grace period). It started perfectly as I remove that entry manually. So, how to configure maven-bundle