Looking up
JNDI Environment
The following parameters should be specified within the environment passed to JNDI while looking up for an admin object from the FioranoMQ Server. The FioranoMQ Server would be running on the default socket acceptor configuration.
// Modify the IP, Port according to the server's socket acceptor configuration
String url = "http://localhost:1856";
// environment passed to jndi
Hashtable env = new Hashtable ( );
env.put (Context.SECURITY_PRINCIPAL, "anonymous");
env.put (Context.SECURITY_CREDENTIALS, "anonymous");
env.put (Context.PROVIDER_URL, url);
env.put(Context.INITIAL_CONTEXT_FACTORY,"fiorano.jms.runtime.naming.FioranoInitialContextFactory");
- An application can use the actual string values of the static variables defined in javax.naming.Context class.
- An application can also specify these parameters in a file called jndi.properties, located in the working directory of the application. The user code does not need to pass any parameters programmatically.
Looking up from Server Running on HTTP Protocol
In addition to specifying the jndi parameters as mentioned in the preceding section, the application needs to specify the protocol as HTTP. This is done by adding the following line to the application code:
env.put(FioranoJNDIContext.TRANSPORT_PROTOCOL, FioranoJNDIContext.PROTOCOL_HTTP);
Since the code uses the FioranoJNDIContext class, the following must be added to the code:
import fiorano.jms.runtime.naming.FioranoJNDIContext;
Code modifications are not required when viewed from an external JNDI repository or when picking up environment variables from jndi.properties.
Viewing from Server Running on JSSE Protocol
When viewing from a server running on JSSE protocol, the application, besides specifying the jndi parameters specified above, should also specify the protocol as JSSE_SSL. In addition, it should specify the security manager. This can be done by adding the following line to the application code:
env.put (Context.SECURITY_PROTOCOL, FioranoJNDIContext.PROTOCOL_JSSE_SSL);
env.put (FioranoJNDIContext.SSL_SECURITY_MANAGER, "JSSESecurityManager");
Since the code uses the FioranoJNDIContext class, the following must be added to the code:
import fiorano.jms.runtime.naming.FioranoJNDIContext;
Looking up from Server Running on LPC Protocol
When viewing from a server running on LPC protocol, the application should specify the protocol as LPC in addition to specifying the jndi parameters mentioned above. This is done by adding the following line to the application code:
env.put(FioranoJNDIContext.TRANSPORT_PROTOCOL, FioranoJNDIContext.PROTOCOL_LPC);
Since the code uses the FioranoJNDIContext class, the following must be added to the code:
import fiorano.jms.runtime.naming.FioranoJNDIContext;