git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1325985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2012-04-13 22:21:27 +00:00
parent 6687d567c7
commit f81a790ff5
2 changed files with 70 additions and 26 deletions

View File

@ -33,7 +33,7 @@ import javax.naming.NamingException;
* necessary when the list of nodes is provided. So the role of this class is to
* transform properties before passing it to
* <CODE>ActiveMQInitialContextFactory</CODE>.
*
*
* @author Pawel Tucholski
*/
public class ActiveMQWASInitialContextFactory extends ActiveMQInitialContextFactory {
@ -54,7 +54,7 @@ public class ActiveMQWASInitialContextFactory extends ActiveMQInitialContextFact
* <li>(java.naming.connectionFactoryNames,value)=>(connectionFactoryNames,value)
* <li>(java.naming.provider.url,url1;url2)=>java.naming.provider.url,url1,url1)
* <ul>
*
*
* @param environment properties for transformation
* @return environment after transformation
*/
@ -66,31 +66,33 @@ public class ActiveMQWASInitialContextFactory extends ActiveMQInitialContextFact
while (it.hasNext()) {
Map.Entry entry = (Map.Entry)it.next();
String key = (String)entry.getKey();
String value = (String)entry.getValue();
if (entry.getKey() instanceof String && entry.getValue() instanceof String) {
String key = (String)entry.getKey();
String value = (String)entry.getValue();
if (key.startsWith("java.naming.queue")) {
String key1 = key.substring("java.naming.queue.".length());
key1 = key1.replace('.', '/');
environment1.put("queue." + key1, value);
} else if (key.startsWith("java.naming.topic")) {
String key1 = key.substring("java.naming.topic.".length());
key1 = key1.replace('.', '/');
environment1.put("topic." + key1, value);
} else if (key.startsWith("java.naming.connectionFactoryNames")) {
String key1 = key.substring("java.naming.".length());
environment1.put(key1, value);
} else if (key.startsWith("java.naming.connection")) {
String key1 = key.substring("java.naming.".length());
environment1.put(key1, value);
} else if (key.startsWith(Context.PROVIDER_URL)) {
// websphere administration console does not exept , character
// in provider url, so ; must be used
// all ; to ,
value = value.replace(';', ',');
environment1.put(Context.PROVIDER_URL, value);
} else {
environment1.put(key, value);
if (key.startsWith("java.naming.queue")) {
String key1 = key.substring("java.naming.queue.".length());
key1 = key1.replace('.', '/');
environment1.put("queue." + key1, value);
} else if (key.startsWith("java.naming.topic")) {
String key1 = key.substring("java.naming.topic.".length());
key1 = key1.replace('.', '/');
environment1.put("topic." + key1, value);
} else if (key.startsWith("java.naming.connectionFactoryNames")) {
String key1 = key.substring("java.naming.".length());
environment1.put(key1, value);
} else if (key.startsWith("java.naming.connection")) {
String key1 = key.substring("java.naming.".length());
environment1.put(key1, value);
} else if (key.startsWith(Context.PROVIDER_URL)) {
// websphere administration console does not accept the , character
// in provider url, so ; must be used
// all ; to ,
value = value.replace(';', ',');
environment1.put(Context.PROVIDER_URL, value);
} else {
environment1.put(key, value);
}
}
}

View File

@ -0,0 +1,42 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.activemq.jndi;
import java.util.Hashtable;
import javax.naming.Context;
public class ActiveMQWASInitialContextFactoryTest extends JNDITestSupport {
public void testTransformEnvironment() {
Hashtable<Object, Object> originalEnvironment = new Hashtable<Object, Object>();
originalEnvironment.put("java.naming.connectionFactoryNames", "ConnectionFactory");
originalEnvironment.put("java.naming.topic.jms.systemMessageTopic", "jms/systemMessageTopic");
originalEnvironment.put(Context.PROVIDER_URL, "tcp://localhost:61616;tcp://localhost:61617");
originalEnvironment.put("non-string", Integer.valueOf(43));
@SuppressWarnings("unchecked")
Hashtable<Object, Object> transformedEnvironment = new ActiveMQWASInitialContextFactory().transformEnvironment(originalEnvironment);
assertEquals("ConnectionFactory", "ConnectionFactory", transformedEnvironment.get("connectionFactoryNames"));
assertEquals("topic.jm", "jms/systemMessageTopic", transformedEnvironment.get("topic.jms/systemMessageTopic"));
assertEquals("java.naming.provider.url", "tcp://localhost:61616,tcp://localhost:61617", transformedEnvironment.get("java.naming.provider.url"));
assertNull("non-string", transformedEnvironment.get("non-string"));
}
}