I have two Applications Installed on Websphere Server v.6. 1. SGOApplication 2. ReportingWeb
SGOApplication has a shared library mapped on Application Level i.e. SGOAPPSHLIB
This library is having a logging framework jar(logsrv.jar). There is a class in logsrv.jar called SLEEventLogger which logs the messages to a file and uses some other third party classes which are all bundled in logsrv.jar
I want to use logsrv.jar for ReportingWeb Application. I made a call for SLEEventLogger class from another class in ReportingWeb. I was able to build the ear and deploy it as logsrv.jar is there in the build path.
After that, I tried following things, but none of them worked.
- Mapped SGOAPPSHLIB on Application level for ReportingWeb Application. Used application class loader first policy.
- Created a new Shared library REPSHLIB and put logsrv.jar in it. Mapped this library with application.Used application class loader first policy.
- Mapped REPSHLIB on server level. THIS WORKED for REPORTINGWEB Application but other Application SGOApplication is not able to find the class now.
I am getting ClassDefNotFoundException: com.statestreet.framework.logging.SLEEventLogger when trying to run webapplication and control reached that particular class where I used SLEEventLogger.
I tried to search for SLEEventLogger class from Troubleshooting>Classloader in websphere Console. I was able to find that SLEEventLogger class is being loaded by Module Class Loader.
Could someone please tell me how to resolve this issue. I tried so many permutations and combinations on the server configuration but with no luck. I am totally messed up with this.