On 07/04/2008, George Thiruvathukal <[EMAIL PROTECTED]> wrote:
> $ cat qpid.bindings
> QueueConnectionFactory=org.apache.qpid.client.AMQConnectionFactory
> ...
You need to prefix the key with the type of object, e.g.
connectionfactory.QueueConnectionFactory=org.apache.qpid.client.AMQConnectionFactory
> One things that looks suspicious in
> PropertiesFileInitialContextFactory.java is this code
> snippet:
>
> protected ReadOnlyContext createContext(Map data, Hashtable environment)
> {
> return new ReadOnlyContext(environment, data);
> }
> Why are environment and data getting swapped?
I think this is ok - the arguments to ReadOnlyContext are just in a
different order from the createContext method.
RG