Enterprise RTView® 
User Guide


Application Options

TIBCO EMS Administration SSL Parameters
NOTE: This section assumes you have a working knowledge of writing, compiling and deploying Java classes.

To use SSL with your TIBCO EMS Administration connections, you will need to create a Java class named MyTibJmsSSLHandler that extends the com.sl.gmsjtibjmsadmin.GmsRtViewTibJmsSSLHandler class.

In MyTibJmsSSLHandler, define the following method:

public Map getSSLParams (String serverUrl)
This method will get called to retrieve the list of SSL parameters to pass in when Enterprise RTView creates each TIBCO EMS Server Administration connection. See the TIBCO EMS documentation for information on creating a Map of SSL parameters suitable to pass into the TIBCO EMS Server Administration connection.

Add gmsjtibjmsadmin.jar, located in the lib directory (found in your installation directory), to your classpath when you compile MyTibJmsSSLHandler. The compiled MyTibJmsSSLHandler class must be included in the Enterprise RTView classpath by adding it to the definition for the RTV_USERPATH environment variable.

The following is an example of MyTibJmsSSLHandler:

import java.util.*;
import com.tibco.tibjms.TibjmsSSL;
import com.sl.gmsjtibjmsadmin.GmsRtViewTibJmsSSLHandler;

public class MyTibJmsSSLHandler extends GmsRtViewTibJmsSSLHandler
{

public Map getSSLParams (String serverUrl)
{
        System.out.println("==> MyTibJmsSSLHandler.getSSLParams");
        return null;
}

}
   


 
JMS, JMX and Java are trademarks and/or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. They are mentioned in this document for identification purposes only. 

 
SL, SL-GMS, GMS, Enterprise RTView, SL Corporation, and the SL logo are trademarks or registered trademarks of Sherrill-Lubinski Corporation in the United States and other countries. Copyright © 1998-2008 Sherrill-Lubinski Corporation. All Rights Reserved.