The problem I am facing is a little wierd.... When I try running my application on Live, I get 500 Internal Sever Error, but when I try running the same thing on Local or UAT machines, it works fine.
Also, sometimes the application works fine, but if the browser window remains open for a while, say about 2 3 mins, it gives me 500 Internal Server Error. Can it be something to do with hibernate session?
Also , the error comes when code reaches at i.e when getSession is encountered...
Does anyone over here have any idea about this?
This message was edited 1 time. Last update was at by Kinnaree Patel
Inferno Solutions - Go With The Best!!!
95% people read history, 5% create it... Marching Towards the 5%...
SCJP 5.0 -> 88%, Next -> SCWCD
It is difficult to help without any logging. Check you logging configuration and your code. Are you throwing away the exceptiojn? Or redirecting the lofgging?
I have a feeling that what you're seeing is actually a classloader issue caused by incompatible library jars, or a classpath issue on your live server. I experienced the same NoClassDefFoundError despite including the required jar in the EAR and determining that it was present in the web-inf/lib folder.
There are two solutions:
1) Update your live server's classpath with whatever jar is missing. This wasn't an option for me as our server's classpath was locked down.
2) Remove all libraries, and one by one add the required jars back to the project (at the same time you can upgrade the jars to the latest version). This is what I did. It took 4 days but it solved the problem.
Goodluck,
D
This message was edited 1 time. Last update was at by Doug MacKenzie