The TIBCO Platform is a real-time, composable data platform that will bring together an evolving set of your TIBCO solutions - and it's available now!
A chart showing the TIBCO Platform vision
Jump to content
Forums
Ask questions and gain insight from discussions

We are currently using Tibco.EMS.DLL in order to connect with JMS service. My code working without SSL, but now we are in need to implement SSL integration using Tibco.ems.dll using C# code (.Net Core). Could you help me in how to implement SSL integrate


Baljeet Kumar

Recommended Posts

My current code without SSL is like this -

 queueFactory = contextLookup == string.Empty ? new TIBCO.EMS.QueueConnectionFactory(serverUrl) : (QueueConnectionFactory)lcxt.Lookup(contextLookup);

        QueueConnection connection = queueFactory.CreateQueueConnection(userName, password);

        connection.Start();

        QueueSession session = connection.CreateQueueSession(false, TIBCO.EMS.SessionMode.AutoAcknowledge);

        TIBCO.EMS.Queue queue = session.CreateQueue(requestQueueName);

        QueueSender sender = session.CreateSender(queue);

        TextMessage message = session.CreateTextMessage(Request.TibcoServiceCall.Request);

        TIBCO.EMS.Queue replyqueue = session.CreateQueue(replyQueueName);

Question - How can I implement SSL in this code. Could you please share some refrence or code sample to implement SSL to integrate Tibco.EMS.DLL file to call JMS service.

Thanks,

Baljeet

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...