Hi,
We have this Problem since the changes for CXF_1806 were introduced in 2.0.x cxf: https://issues.apache.org/jira/browse/CXF-1806 "Use Spring JMSTemplate in JMSConduit instead of direct JMS" What we try to do is that we create an "unstarted" endpoint (conduit or destination) and overwrite during runtime the default "java.naming.provider.url" that was given in the cxf.xml file. It is possible to update the value of the java.naming.provider.url property. But it seems that the JMSConnection was already created and the changed property has no effect. Hope someone can help. Here part of our cxf.xml <jms:address destinationStyle="queue" jndiConnectionFactoryName="ConnectionFactory" jndiDestinationName="dynamicQueues/ResourceProvisioning" connectionUserName="soiuser" connectionPassword="soipasswd"> <jms:JMSNamingProperty name="java.naming.factory.initial" value="org.apache.activemq.jndi.ActiveMQInitialContextFactory" /> <jms:JMSNamingProperty name="java.naming.provider.url" value="tcp://localhost:61616" /> </jms:address> Regards, Hartmut Lang
