Thanks godnet for your reply.

If i have a Jms consumer how can I configure the authentication?
I tried this in servicemixhome/conf/login.properties:

servicemix-domain {
         LdapLoginModule REQUIRED
            
userProvider="ldap://192.168.1.117:389/ou=Users,dc=in2mldap,dc=site";
             userFilter="(&(uid={USERNAME})(objectClass=inetOrgPerson))"
             useSSL=false
             debug=true;
     };

it has no effect on any request I made to bus.

i am trying to put messages from one queue to another queue like this:
        <camelContext id="camel1"
xmlns="http://activemq.apache.org/camel/schema/spring";> 
                <route>
                        <from
uri="jbi:endpoint:urn1:org:apache:servicemix:tutorial:camel:jmsC1:consumer1"/>
                        <to
uri="jbi:endpoint:urn1:org:apache:servicemix:tutorial:camel:jmsP3:provider3"/>
                </route> 
        </camelContext>

it is working fine. It never asks me for authentication.

Here are my consumer and provider

<jms:consumer service="tutorial:jmsC1"
                  endpoint="consumer1"
                  destinationName="tutorial.camel.queue1"
                  connectionFactory="#connectionFactory"
                  targetService="tutorial:jmsC1" 
                  targetEndpoint="consumer1" />

<jms:provider service="tutorial:jmsP3"
                  endpoint="provider3" 
                  destinationName="tutorial.camel.queue3"
                  connectionFactory="#connectionFactory" />


Please help me to find what is wrong?
-- 
View this message in context: 
http://www.nabble.com/ServiceMix-LDAP-Support-tp16701684p17181960.html
Sent from the ServiceMix - User mailing list archive at Nabble.com.

Reply via email to