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?