Hi,
I am deploying a war file in
Tomcat 6.0 . As part of this war file, I am using a thirdparty api (which internally access ejbs deployed on remote weblogic server).
I dont have any controller on the thirdpary , or the server where thier ejbs are running. I dont even know the
ejb details.
All I need to do to access that api is, I have to specify the jndi connection factory and host details in my war file. Previously I deployed this was in
JBOSS and it worked fine with the jndi.properties in /WEB-INF/classes folder. But , this is not working in tomcat. If I set jndi properties using system.setProperty(), it is working in tomcat.
My question is, why the jndi.properties in my war is not recognized in tomcat ? How to configure them for Tomcat ? I cant use Syste,.setProperties() because, there is another module running in the same war which uses another set of jndi properties.
Can I get some help here