alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

ActiveMQ example source code file (ActiveMQWASInitialContextFactory.java)

This example ActiveMQ source code file (ActiveMQWASInitialContextFactory.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - ActiveMQ tags/keywords

activemqinitialcontextfactory, activemqinitialcontextfactory, activemqwasinitialcontextfactory, context, hashtable, hashtable, iterator, naming, namingexception, namingexception, string, string, util

The ActiveMQ ActiveMQWASInitialContextFactory.java source code

/**
 * 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 java.util.Iterator;
import java.util.Map;

import javax.naming.Context;
import javax.naming.NamingException;

/**
 * This implementation of <CODE>InitialContextFactory should be used
 * when ActiveMQ is used as WebSphere Generic JMS Provider. It is proved that it
 * works on WebSphere 5.1. The reason for using this class is that custom
 * property defined for Generic JMS Provider are passed to InitialContextFactory
 * only if it begins with java.naming or javax.naming prefix. Additionaly
 * provider url for the JMS provider can not contain ',' character that is
 * necessary when the list of nodes is provided. So the role of this class is to
 * transform properties before passing it to
 * <CODE>ActiveMQInitialContextFactory.
 * 
 * @author Pawel Tucholski
 */
public class ActiveMQWASInitialContextFactory extends ActiveMQInitialContextFactory {

    /**
     * @see javax.naming.spi.InitialContextFactory#getInitialContext(java.util.Hashtable)
     */
    public Context getInitialContext(Hashtable environment) throws NamingException {

        return super.getInitialContext(transformEnvironment(environment));
    }

    /**
     * Performs following transformation of properties:
     * <ul>
     * <li>(java.naming.queue.xxx.yyy,value)=>(queue.xxx/yyy,value)
     * <li>(java.naming.topic.xxx.yyy,value)=>(topic.xxx/yyy,value)
     * <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
     */
    protected Hashtable transformEnvironment(Hashtable environment) {

        Hashtable environment1 = new Hashtable();

        Iterator it = environment.entrySet().iterator();

        while (it.hasNext()) {
            Map.Entry entry = (Map.Entry)it.next();
            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);
            }
        }

        return environment1;
    }
}

Other ActiveMQ examples (source code examples)

Here is a short list of links related to this ActiveMQ ActiveMQWASInitialContextFactory.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.