How to use RTC Plain Java API in webservices?
![]()
Is it possible to use the RTC Plain Java API in webserices (for an in house application)?
When we try this I get the following error
This Web axisService has deployment faultsError: java.lang.NoClassDefFoundError: com/ibm/team/repository/common/TeamRepositoryException at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Unknown Source) at org.apache.axis2.description.java2wsdl.DefaultSchemaGenerator. |
Accepted answer
![]()
You need to get the location of the Java API in the class path. You don't go into much detail about what the web hosting application is (e.g. Apache, Apache Tomcat, WAS...) or how you might be deploying (war file, bare jar or class files...)
I just replied to a post that I've been using the Java API in a Apache Tomcat environment. I deploy a war file and all the required libraries are in the WebContent/WEB-INF/lib folder of the package. Karthik Krishnan selected this answer as the correct answer
Comments Thanks Kevin for your feedback. I am planing to use Apache Tomcat.
1
Karthik,
Thanks Kevin.
|