![]() |
RTView®
User Guide |
Application Options TIBCO Hawk SSL Parameters
To use SSL with EMS Transport for TIBCO Hawk (version 4.6+), you will need to create a Java class named MyHawkSSLHandler that extends the GmsRtViewHawkCustomSSLHandler class. In MyHawkSSLHandler.java, define the following method: public Hashtable getSSLParams ()This method will get called to retrieve the list of SSL parameters to pass in when RTView creates the TIBCO Hawk Console. See TIBCO Hawk documentation for information on creating a Hashtable of SSL parameters suitable to pass into the TIBCO Hawk Console. Add gmsjhawkds.jar, located in the lib directory (found in your installation directory), to your classpath when you compile MyHawkSSLHandler. The compiled MyHawkSSLHandler class must be included in the RTView classpath by adding it to the definition for the RTV_USERPATH environment variable. The following is an example of MyHawkSSLHandler: import java.util.Hashtable;
public class MyHawkSSLHandler
extends GmsRtViewHawkCustomSSLHandler
public Hashtable getSSLParams
()
Hashtable sslParameters = new Hashtable();
}
|
|
|
|