Skip to main content

Connecting to Tibco JMS after installing required Stage Libs.

  • February 14, 2022
  • 0 replies
  • 30 views

AkshayJadhav
StreamSets Employee
Forum|alt.badge.img

Problem:

After installing Tibco JMS Driver you get this exception:

JMS_00 - Could not create initial context 'com.tibco.tibjms.naming.SSLTibjmsInitialContextFactory' with provider URL 'ssl://HOST_NAME:PORT,ssl://HOSTNAME:PORT' : javax.naming.NoInitialContextException: Cannot instantiate class: com.tibco.tibjms.naming.SSLTibjmsInitialContextFactory [Root exception is java.lang.ClassNotFoundException: com.tibco.tibjms.naming.SSLTibjmsInitialContextFactory]

Solution:

Typically, there are several additional JMS properties that need to be set in order to use SSL with Tibco. You can find some relevant documentation here : https://www.ibm.com/support/knowledgecenter/en/SSBLQQ_8.6.0/com.ibm.rational.rit.integration.doc/topics/c_tibco_test_ssl_tibco_ems.html

Specifically, in the Additional JMS Configuration Properties section, you'll probably need the following:

"com.tibco.tibjms.naming.security_protocol" : "ssl"
"com.tibco.tibjms.naming.ssl_enable_verify_host" : "false"
"com.tibco.tibjms.naming.ssl_expected_hostname" : "ssl://<server-host>"
"com.tibco.tibjms.naming.ssl_identity" : "/path/to/server-cert.p12"
"com.tibco.tibjms.naming.ssl_password" : "ssl_pass"
"com.tibco.tibjms.naming.ssl_trusted_certs" : "/path/to/cert_chain.pem"
com.tibco.tibjms.naming.ssl_vendor" : "j2se-default"
"com.tibco.tibjms.factory.username" : "username" 
"com.tibco.tibjms.factory.password" : "password"

Did this topic help you find an answer to your question?
This topic has been closed for comments