We are using Spring JMS in weblogic . In our JNDI Template we are specifying the target server name ,where the JMS queue exists.

<bean id="jndiTemplate" class="org.springframework.jndi.JndiTemplate">
        <property name="environment">
            <props>
                <prop key="java.naming.factory.initial">weblogic.jndi.WLInitialContextFactory</prop>
                <prop key="java.naming.provider.url">t3://${WS_HOST}:${WS_PORT}</prop>
            </props>
        </property>
    </bean>

Is there any way to get the target server name and port at runtime ,when the app is deployed?

link|improve this question

55% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.