Search code examples
javawebspherewebsphere-8ibm-was

Websphere : Where should I add the jar file for LoginModule


I have written a login module in WebSphere, if I want to use it in application level I can add that in shared libraries, but right now I want to use it under system login under the RMI_Inbound, I can add the path of my class there, but where exactly I need to put the jar files and how to configure it ?

I have gone through many documents but none tells where to keep jar file or edit any xml, they all tell just to mention the classname of loginmodule like com.custom.loginmodule .


Solution

  • If you want to add it in the RMI_Inbound, then the best place would be WebSphere\AppServer\lib\ext folder. After adding jar you have to restart the server to make classes visible in the JVM.