TOMCAT and JNI problem...

2004-01-26 Thread J.Pablo M
Hello. I'm running a JSP based Web aplicacion using Tomcat wich uses a Java Class that loads a native library (JNI). The files are created as follows: javac extractor/HTDInterface.java javah extractor.HTDInterface then I compile my c++ source code with the header file

Re: TOMCAT and JNI problem...

2004-01-26 Thread Giuseppe Briotti
Then I made a script to start the tomcat with the LD_LIBRARY_PATH environment variable set up: - #!/bin/sh export JAVA_HOME=/opt/java export CATALINA_HOME=/usr/local/jakarta-tomcat export PATH=${JAVA_HOME}/bin:${PATH} export

Re: TOMCAT and JNI problem...

2004-01-26 Thread J.Pablo M
Briotti [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: TOMCAT and JNI problem... Date: Mon, 26 Jan 2004 17:29:02 +0100 (CET) Then I made a script to start the tomcat with the LD_LIBRARY_PATH environment variable set up

RE: TOMCAT and JNI problem...

2004-01-26 Thread Götz, Bernd
: TOMCAT and JNI problem... Hello. I'm running a JSP based Web aplicacion using Tomcat wich uses a Java Class that loads a native library (JNI). The files are created as follows: javac extractor/HTDInterface.java javah extractor.HTDInterface then I compile my c