Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8309027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:59:03+00:00 2026-06-08T18:59:03+00:00

I have a service which has two operations. RegisterUser UpdateUser I have a camel

  • 0

I have a service which has two operations.

RegisterUser
UpdateUser

I have a camel rout:

<camel:route id="myRoute">
    <camel:from uri="cxf:bean:myListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />            
    <camel:bean ref="processor" method="processMessage"/>
    <camel:to uri="xslt:file:resources/service/2.0.0/UserRegistration.xsl"/>
    <camel:to uri="cxf:bean:myTargetEndpoint"/>
</camel:route>

In my processor bean, when I specify:

RegisterUser registerUser = exchange.getIn().getBody(RegisterUser.class);

I get the register user object. Everything works fine.
The problem is that I want camel to route my request conditionally, for e.g:

If the service operation is RegisterUser I want to route the message to my specific bean and if the service operation is UpdateUser I want to route the message to the other bean.

I have tried to use camel xPath, but it not seems to be working.

<camel:route id="myRoute">
    <camel:from uri="cxf:bean:myListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />  
    <camel:choice>
        <camel:when>
            <camel:xpath>
                //RegisterUser
            </camel:xpath>
            <camel:bean ref="processor" method="processMessage"/>
            <camel:to uri="xslt:file:resources/service/2.0.0/UserRegistration.xsl"/>
        </camel:when>
    </camel:choice>                        
    <camel:to uri="cxf:bean:myTargetEndpoint"/>
</camel:route>

I was searching how to set up camel to route to the different targets but did not find anything. Maybe somebody knows where might be the problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:59:08+00:00Added an answer on June 8, 2026 at 6:59 pm

    The information of the operation required will be in the header of the message.

    The header you are looking for is called ‘operationName’

    So here is an example :

    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
        <route id="example">
            <from uri="cxf:bean:myListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />
            <log message="The expected operation is :: ${headers.operationName}" />
            <choice>
                <when>
                    <simple>${headers.operationName} == 'RegisterUser'</simple>
                        <bean ref="processor" method="processMessage"/>
                    <to uri="xslt:file:resources/service/2.0.0/UserRegistration.xsl"/>
                </when>
                <when>
                    <simple>${headers.operationName} == 'UpdateUser'</simple>
                    <!-- Do the update user logic here -->
                    <bean ref="processor" method="updateUser" />
                </when>
            </choice>
        <to uri="cxf:bean:myTargetEndpoint"/>
        </route>
    </camelContext> 
    

    (Note the example is using apache aries blueprint – but it will be identical for spring, other than the namespace)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a server application in Java which has two simple operations, addTwoInts and
I have a WCF service which has two methods exposed: Note: The wcf service
I have a service which has one endpoint , I have defined this endpoint
I have a service class which has overloaded constructors. One constructor has 5 parameters
Lets suppose I have a RESTful service which has a list of tasks. GET
Let's say I have a WCF service which has a method returning object Person.
I have a service named WcfService2 (original i know) which has an IService.cs file
I have a .net web application which has a reference to a web service.
I have an user object for my restful service, which has an userid and
I have my remote service which tries to run an activity from a different

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.