Reputation: 43
From where can I get TibjmsConnectionFactory dependency? I want to use TibjmsConnectionFactory in my Springboot application to publish and receive message in tibco EMS
Upvotes: 1
Views: 6486
Reputation: 544
It's available in maven repository. https://mvnrepository.com/artifact/com.tibco/tibjms
latest available version on March 2021 is 8.38.3
<!-- https://mvnrepository.com/artifact/com.tibco/tibjms -->
<dependency>
<groupId>com.tibco</groupId>
<artifactId>tibjms</artifactId>
<version>8.38.3</version>
</dependency>
if 8.38.3 is not working try 6.3.0 (it was problem with repo not sure if fixed already)
Please note that you also can get your current TibcoEMS version jars from EMS server C:\tibco\ems\8.2\lib and then upload them to your local repo.
tibjms.jar is the jar contains TibjmsConnectionFactory class
mvn install:install-file -Dfile=tibjms.jar -DgroupId=com.tibco.ems -DartifactId=tibjms -Dversion=8.2 -Dpackaging=jar -DgeneratePom=true
Upvotes: 1
Reputation: 713
<dependency>
<groupId>com.tibco</groupId>
<artifactId>tibjms</artifactId>
<version>8.38.3</version>
</dependency>
This is the latest version.
Upvotes: 0
Reputation: 912
You could try this:
First, add this to your pom.xml
<repositories>
<repository>
<id>tibjms</id>
<url>http://repository.openmindonline.it/</url>
</repository>
</repositories>
and then dependency
<dependency>
<groupId>tibco-ems</groupId>
<artifactId>tibjms</artifactId>
<version>4.1</version>
</dependency>
There is a newer version from this repository but it looks like it cannot be accessed publicly.
Upvotes: 1