RE: AW: configuration problem

2003-07-15 Thread awischer
hm, may be it sound's like I'm a little bit stupid but... can you tell me 
howto or even better where to read?

thanx
andreas

Re: AW: configuration problem

2003-07-15 Thread awischer
both library's are precompiled and are delivered as part of the domino 
server  without sourcecode. So, there is no chance to change it. 
Adding the library path to CLASSPATH dosen't really help. 
This is the part of catalina.sh i've changed for getting the second error 
message:

---schnipp--
  "$_RUNJAVA" $JAVA_OPTS $CATALINA_OPTS \
  -Djava.library.path="$PATH":/opt/lotus/notes/latest/linux: \
  -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" -classpath 
/opt/lotus/notes/latest/linux:"$CLASSPATH" \
  -Dcatalina.base="$CATALINA_BASE" \
  -Dcatalina.home="$CATALINA_HOME" \
  -Djava.io.tmpdir="$CATALINA_TMPDIR" \
  org.apache.catalina.startup.Bootstrap "$@" start \
  >> "$CATALINA_BASE"/logs/catalina.out 2>&1 &
---schnapp---

any other idea ??

configuration problem

2003-07-15 Thread awischer
Hi all,

I'am struglling with an application using Lotus Domino Taglibs. When 
accessing the jsp i always get a tomcat error page telling:

...
org.apache.jasper.JasperException: no lsxbe in java.library.path
 at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
 at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
 at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
 and so on

For this reason I changed the startup script adding the parameter

 -Djava.library.path="$PATH":/opt/lotus/notes/latest/linux

after this it seems tomcat is able to find the shared library but it'll 
raise another error:

...
org.apache.jasper.JasperException: 
/opt/lotus/notes/60010/linux/liblsxbe.so: libxmlpar.so: cannot load shared 
object file: No such file or directory
 at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
 at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
 at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
... and so on

the recomended file "libxmlpar.so" is in the same directory as the 
"liblsxbe.so", so i wonder why tomcat can't find this

the tomcat server is version 4.1 and is  running on SuSE Linux 7.2, my JDK 
is version 1.4.1_02 from Sun.


any help is appreciated
Andreas