0
votes

I am trying to connect to JMS queue which is present in a Weblogic server. My client application is deployed in Websphere application server WAS. What are the jars which I have to use in-order to create a JMS provider to connect to Weblogic JMS? In need of your helps please...

2

2 Answers

0
votes

Older versions of WLS:

  • <WebLogic_Directory>\server\lib\wlclient.jar
  • <WebLogic_Directory>\server\lib\wljmsclient.jar

Newer versions of WebLogic Server

  • <WebLogic_Directory>\server\lib\wlthint3client.jar
0
votes

The relevant Oracle documentation for "the newest" (at the moment of writing) WebLogic Server 12c version:

Oracle® Fusion Middleware Developing Standalone Clients for Oracle WebLogic Server

As you can see for JMS clients there is several options like:

  • WebLogic Thin T3 client
  • JMS thin client

and others depending on your use case.

In all cases you'll find the libraries from WL_HOME\server\lib directory of your WebLogic Server installation.