![]() |
Enterprise
RTView®
User Guide |
|
Application Options TIBCO EMS Administration
SSL Parameters
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.*;
public class MyTibJmsSSLHandler
extends GmsRtViewTibJmsSSLHandler
public Map getSSLParams
(String serverUrl)
}
|
|
|
|
|