Hi There, I have a Message driven bean deployed in the Weblogic 7.0 which subscribes to a topic from another Welbogic server. My deployment descriptor looks like this <weblogic-ejb-jar> <weblogic-enterprise-bean> <ejb-name>MetricsFeedbackListener</ejb-name> <message-driven-descriptor> <destination-jndi-name>jms.SampleTopic</destination-jndi-name> <initial-context-factory>weblogic.jndi.WLInitialContextFactory</initial-context-factory> <provider-url>t3://172.0.34.02:7001</provider-url> <connection-factory-jndi-name>javax.jms.TopicConnectionFactory</connection-factory-jndi-name> </message-driven-descriptor> </weblogic-enterprise-bean> </weblogic-ejb-jar> IS there a way to have the <provider-url> configurable, I mean passing as a system property etc., instead of hardcoding here. The reason being I have to manually change each time , I move the build from DEV to SIT ,PROD environements. Zafer
Hi I guess if you use Service Locatorpattern you would have only one place to change when you deploy on other environment.. See if you can use that.. Regards Maulin