RE: JNA class path with tomcat

2011-07-12 Thread Bill Miller
Throwable can be very helpful if you log the exception (one of the few times a catch Throwable is not a bad thing). Bill -Original Message- From: charithsoori [mailto:charithso...@gmail.com] Sent: July 8, 2011 7:40 PM To: users@tomcat.apache.org Subject: JNA class path with tomcat Hi, I am

Re: JNA class path with tomcat

2011-07-12 Thread André Warnier
Bill Miller wrote: The problem is undoubtedly your .dll or .so is not in the correct directory. That's probably true. Normally you need to place those files in /tomcat but that assumes that /tomcat is your current directory when you startup. Essentially you need to ensure that you are

RE: JNA class path with tomcat

2011-07-12 Thread Bill Miller
paths that may not be correct in 100% of situations are the path to problems. Bill -Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: July 12, 2011 2:27 PM To: Tomcat Users List Subject: Re: JNA class path with tomcat Bill Miller wrote: The problem is undoubtedly

Re: JNA class path with tomcat

2011-07-12 Thread André Warnier
-Original Message- From: André Warnier [mailto:a...@ice-sa.com] Sent: July 12, 2011 2:27 PM To: Tomcat Users List Subject: Re: JNA class path with tomcat Bill Miller wrote: The problem is undoubtedly your .dll or .so is not in the correct directory. That's probably true. Normally you need

Re: JNA class path with tomcat

2011-07-11 Thread Pid
On 09/07/2011 00:40, charithsoori wrote: Hi, I am trying to run a web application which is which using JNA . My application work fins as standalone and when it configured as a web app tomcat it giving error java.lang.NoClassDefFoundError: com/stibocatalog/hunspell/HunspellLibrary . It

JNA class path with tomcat

2011-07-08 Thread charithsoori
Hi, I am trying to run a web application which is which using JNA . My application work fins as standalone and when it configured as a web app tomcat it giving error java.lang.NoClassDefFoundError: com/stibocatalog/hunspell/HunspellLibrary . It seems native library not loading. How I can solve