|
From: Leif M. <le...@ta...> - 2007-08-23 16:57:02
|
Jacob, Java is throwing that error because another expection is being thrown within your CMClient class's class initializer. Java is finding the class but can not initialize it. It could be that a class referenced in there is not being found, or some of the initialization logic is failing. What is that class doing? Are you getting more of a stack trace? Does it load any native libraries or anything like that? You want to see what the root exception is. That will tell you the exact cause. Can you post the full log output you are getting? Cheers, Leif Jacob Caniparoli wrote: > I am having some real trouble getting the wrapper to start up my > application. This is the error that I get: > > Unable to locate the class cashmatch.client.CMClient: > java.lang.ExceptionInInitializerError > > I am using integration method #1. The weird thing is that it is > finding the class, because if I spell the class name wrong I get a > different error: > > Unable to locate the class cashmatch.client.CMlient: > java.lang.ClassNotFoundException: cashmatch.client.CMlient > > So, I don't know why it is telling me it can't find the class, when it > obviously is. If anybody has seen anything like this or has any > suggestions, that would be greatly appreciated. > > -Jacob > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ------------------------------------------------------------------------ > > _______________________________________________ > Wrapper-user mailing list > Wra...@li... > https://lists.sourceforge.net/lists/listinfo/wrapper-user > |