I have a webapp that is integrating with a RMI interface on a weblogic server. During development I used the wlfullclient.jar and everything was fine.
But as I deployed the war on Tomcat I encountered a problem:
validateJarFile(.../wlfullclient-10.3.2.jar) - jar not loaded. See Servlet Spec 2.3 ...Offending class: javax/servlet/Servlet.class
So wlfullclient.jar has its own implementation of javax.servlet.Servlet and Tomcat doesnt like it.
What can I do? Without wlfullclient.jar I get
javax.sercurity.auth.login.LoginException: Login failure: all modules ignored
I have tried using wlthint3client.jar, wls-api.jar, wlclient.jar. Doesn't seem to work, my integration tests wont work. Any ideas?