Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Erro autenticando ServiceMix

Como faço para autenticar em uma fila como a do ServiceMix

ActiveMQComponent activeMQComponent = ActiveMQComponent.activeMQComponent("tcp://localhost:61616"); activeMQComponent.setUserName("karaf"); activeMQComponent.setPassword("karaf"); context.addComponent("activemq", activeMQComponent);

Quando tento colocar o user em pass ele passa a mensagem de ero:

Caused by: javax.security.auth.login.LoginException: Username can not be null

1 resposta
solução!

final CamelContext context = new DefaultCamelContext(); final ActiveMQComponent component = new ActiveMQComponent(context);

final ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616"); connectionFactory.setUserName("karaf"); connectionFactory.setPassword("karaf"); component.setConnectionFactory(connectionFactory);

context.addComponent("activemq", component);