I am trying to integrate Cyber Ark (security management) with Spring and we use Mule as our ESB
<jms:connector
name="jmsConnector"
jndiProviderUrl="${tibjmsURL}"
connectionFactoryJndiName="${tibjmsConnFactory}"
username="${tibjndiUser}"
jndiInitialFactory="${tibjndiInitialFactoryClassName}"
specification="1.1"
createMultipleTransactedReceivers="true"
numberOfConcurrentTransactedReceivers="1"
>
<spring:property name="password">
<ref bean="idsJmsPassword"/>
</spring:property>
I am trying to get my password from the cyber ark and that is injected as a spring bean.Any one done this before? How do i inject a password into the JMS connector (tag show in the code)?Currently it loads it from a property file.