Sorry didn't post cuz I thought I was doing things pretty standard like, here is my conf:
<beans xmlns="http://activemq.org/config/1.0"> <!-- Allows us to use system properties as variables in this configuration file --> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/> <broker useJmx="true"> <brokerName>Rob's Computer AMQ 4.0.2 broker</brokerName> <!-- Use the following to set the broker memory limit (in bytes) <memoryManager> <usageManager id="memory-manager" limit="1048576"/> </memoryManager> --> <!-- Use the following to configure how ActiveMQ is exposed in JMX --> <managementContext> <managementContext connectorPort="1098" jmxDomainName="org.apache.activemq"/> </managementContext> <!-- In ActiveMQ 4, you can setup destination policies --> <destinationPolicy> <policyMap><policyEntries> <policyEntry topic="FOO.>"> <dispatchPolicy> <strictOrderDispatchPolicy /> </dispatchPolicy> <subscriptionRecoveryPolicy> <lastImageSubscriptionRecoveryPolicy /> </subscriptionRecoveryPolicy> </policyEntry> </policyEntries></policyMap> </destinationPolicy> <persistenceAdapter> <!-- <journaledJDBC journalLogFiles="5" dataDirectory="${activemq.home}/activemq-data"/> --> <!-- To use a different datasource, use th following syntax : --> <journaledJDBC journalLogFiles="5" dataDirectory="../activemq-data" dataSource="#derby-ds"/> </persistenceAdapter> <transportConnectors> <transportConnector name="default" uri="tcp://localhost:61605" discoveryUri="multicast://default"/> <transportConnector name="stomp" uri="stomp://localhost:61606"/> </transportConnectors> <networkConnectors> <!-- by default just auto discover the other brokers --> <networkConnector name="default" uri="multicast://default"/> <!-- <networkConnector name="host1 and host2" uri="static://(tcp://host1:61616,tcp://host2:61616)" failover="true"/> --> </networkConnectors> </broker> Everything works dandy until I throw in the 'networkConnector' element under 'networkConnectors'. -- View this message in context: http://www.nabble.com/networkConnectors-causing-NPE-tf2598042.html#a7248306 Sent from the ActiveMQ - User mailing list archive at Nabble.com.
