In the last project I was able to use direct:vm component, which is in my opinion the best component to resolve my task. Unfortunately now I can't use it because I'm limited to ServiceMix's Camel version, which is 2.6.0-fuse-00-00, so I've found Normalized Message Router (NMR). I've found information that NMR is asynchronous on default, but can be set as a synchronous by parameter synchronous. Is it still good sollution to use it instead of direct:vm component? I'm using it with enrich component and I didn't found any problems with that.
Synchronous communication in Apache Camel between Camel Context's
432 Views Asked by Marcin Erbel At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in APACHE-CAMEL
- Scala POJO Aggregator Exception
- Extract data from JSON in vanilla Java/Camel/Spring
- Camel route, unparsed date
- Camel rabbitmq + convertSendAndReceive() : Could not convert incoming message with content-type [null]
- Apache Camel: How to test for instance of Set<CustomObject>
- Monitoring Multiple Instances of camel web application in a single Dashboard
- Can I split compressed files into json components in Camel via Spring DSL
- Database not update when using apache camel sql component
- Error Injecting endpoint into a bean in Camel
- How to define common route body in camel configuration?
- NoInitialContextException in Apache Camel
- How to notify when a Camel seda queue is complete?
- How to access Default Idempotent Repository map from java dsl?
- Camel HTTP End point Special Charcter(+) issue
- Camel Route as a String load and Run
Related Questions in ESB
- How to route by call method in proxy with WSO2?
- How to publish wsdl when using different endpoints in proxy with WSO2?
- How can microservices be truly independent when using an ESB (i.e. MassTransit)?
- Where can I download MuleSoft Community Edition?
- When passing data to an App in mule cloudhub via API gateway(CloudHub) getting exception -HTTP header is larger than 8192 bytes
- How to merge two wsdl in a wsdl file?
- Wso2ESB: Call Rest API through Entitlement policy from client producing CORS issue
- Mule Server 3.6 > Anypoint Studio > Raw JSON as POST data
- Mule Server 3.6 > Anypoint Studio > Request Connector
- Explain the relationship of ESB technology with EAI and SOA?
- Mule Server 3.6 > Anypoint Studio > Data Extraction
- WSO2 ESB cluster: Are workers able to reconnect after ELB dies?
- Synchronous communication in Apache Camel between Camel Context's
- wso2mb: error with durable subscriber
- How to keep mule CE 5.3.0 running
Related Questions in APACHE-SERVICEMIX
- Synchronous communication in Apache Camel between Camel Context's
- Servicemix 5.4 waiting for unsatisfied dependencies [[&transactionManager, &userTransaction]
- Nmr installation on ServiceMix 4
- ActiveMQ broker stop when zookeeper leader stop
- Mule Vs ServiceMix in terms of spring support
- Dependency Manager commands not working after upgrading Servicemix from 5.4.0 to 6.1.2
- how to register plugins to java registery
- How to register twelvemonkey.imageIO into java servicemix registery
- Camel To Interceptor does not seem to work
- Camel route over Mina2-Endpoint with option transferExchange=true
- ServiceMix 5.3.0 JPA issue
- how to integrate akka, camel and servicemix with jetty
- how to use Servicemix to make SOAP Web Services comunicate
- If route threw exception and handled is set to true, only first processor in doFinally is executed
- Error "No such instance method:java.util.Enumeration org.apache.log4j.Logger.getAllAppenders()" when run JWebSoketBundle in apache-servicemix 4.5.2
Related Questions in ARCHITECTURAL-PATTERNS
- Synchronous communication in Apache Camel between Camel Context's
- 'Model' and 'ViewModel' in Knockout.js
- Web Applications: Allowing super users to impersonate other users - Is there a design pattern for this?
- location of interfaces dilemma
- Naming conventions for a project containg only WCF ServiceReferences?
- Is ASP.NET MVC an erroneous implementation of the MVC architect pattern?
- Is CQRS alternative to CRUD?
- Android Architectural patterns
- Pipe and Filter, clarification needed
- Amazon SQS: how to find end of job?
- Is two way classes association bad?
- Pros and cons of the use of the DAO pattern
- Is MVC a Design Pattern or Architectural pattern
- MVVM Pattern Contradiction - Architectural Vs Presentation?
- Azure Service Bus, check if ASB is throttled by using SDK
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In an OSGi environment, each bundle is kept fairly separate from the others. The
NMRcomponent allows a bundle to expose a Camel route as a resource to other bundles in the container using this facility in ServiceMix. Thedirect-vmcomponent wasn't introduced until Camel 2.10, so for your version theNMRcomponent is the best fit. It is still considered lightweight, but more feature-rich than directly exposing the routes. It's still better than using theJBItechnology, which should be considered legacy.