Jump to content

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...