calling native code

2004-04-05 Thread Astrid Wagner
Hi, I am using tomcat 4.1.24 and want to use native c-code with JNI. I have a shared library installed in an oracle subdirectory that is added to the LD_LIBRARY_PATH when Apache is started (apachectl) but when I restart tomcat this directory is no longer in it which leads to a

Re: calling native code

2004-04-05 Thread Astrid Wagner
Thanks Pete -Original Message- From: Astrid Wagner [mailto:[EMAIL PROTECTED] Sent: 05 April 2004 13:13 To: [EMAIL PROTECTED] Subject: calling native code Hi, I am using tomcat 4.1.24 and want to use native c-code with JNI. I have a shared library installed in an oracle subdirectory

Solution for mod_weppp Communitcation interrupted error message

2003-10-28 Thread wagner
Hi! I think I found the cause of the weird Communitcation interrupted error message. The description of the problem and the solution I implemented is found in the following page: http://www.nlink.com.br/~wagner/webapp_error.html The text would be somewhat long if I described it here in this e

Re: problems starting/stopping tomcat

2003-09-15 Thread Astrid Wagner
and tried to start, you got the error because tomcat was still listening on port 8005 for shutdown. You need to change both ports, or better yet, fix the cause for tomcat not shutting down properly ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Astrid Wagner [mailto

java.lang.UnsatisfiedLinkError

2003-09-15 Thread Astrid Wagner
Hi, I have three different web applications installed and running in three different modes (e.g. test, training ) but basically based on the same code otherwise. In all of them I use a native c library to call shell commands. When I test one web app everything works fine. When I switch to

Re: java.lang.UnsatisfiedLinkError

2003-09-15 Thread Astrid Wagner
Hi, Where do I set the java.library.path property for different webapps? Thanks. Astrid Astrid Wagner wrote: Hi, I have three different web applications installed and running in three different modes (e.g. test, training ) but basically based on the same code otherwise. In all of them I use

Re: java.lang.UnsatisfiedLinkError

2003-09-15 Thread Astrid Wagner
?rev=1.79content-type=text/vnd.viewcvs-markup -Tim Astrid Wagner wrote: Hi, Where do I set the java.library.path property for different webapps? Thanks. Astrid Astrid Wagner wrote: Hi, I have three different web applications installed and running in three different modes (e.g. test, training

Re: problems starting/stopping tomcat

2003-09-15 Thread Astrid Wagner
this directly but a 3rd party library used by your webapp does. Yoav Shapira Millennium ChemInformatics -Original Message- From: Astrid Wagner [mailto:[EMAIL PROTECTED] Sent: Monday, September 15, 2003 9:08 AM To: Tomcat Users List Subject: Re: problems starting/stopping tomcat Thanks. We rebooted

Re: problems starting/stopping tomcat

2003-09-15 Thread Astrid Wagner
As another alternative, though dirty and potentially very bad if there's more than one webapp on the server: write a ServletContextListener that does System.exit(n) at the end of its contextDestroyed method ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Astrid Wagner

Re: problems starting/stopping tomcat

2003-09-15 Thread Astrid Wagner
not be finished etc. How do I avoid running into such severe problems: do I have to implement sth. like a timeout in the c programm to guarantee it will quit ?! Thanks for your help. Astrid Astrid Wagner wrote: Thanks for the quick response. Shapira, Yoav wrote: Howdy, Several things to do: Try

problems starting/stopping tomcat

2003-09-13 Thread Astrid Wagner
Hi , I use tomcat 4.1.24, jdk 1.4.0 and Apache 1.3 on Solaris 8. After having developed and successfully run many servlets I now receive a port 8080 already in use problem after I try to start tomcat. Sep 13, 2003 10:20:54 AM org.apache.commons.modeler.Registry loadRegistry INFO: Loading registry

how to run web application in different modes like test, production

2003-08-04 Thread Astrid Wagner
Hi all, I have a web application that runs -depending on the content of a property file - in different modes. But the application can only run in either one of these modes at a time. I want to be able to run the web application in serveral modes at the same time (e.g to test different DBs,

ant question: compile native code

2003-07-28 Thread Astrid Wagner
Hi, I want to use ant to compile some native C code (part of my web application). Before searching around: can someone tell me how I have to modify my build.xml (for my web application) to make it automatically compile the C code and create the header file (via javah jni ...) or where to look?

tomcat connection/port problem

2003-07-24 Thread Astrid Wagner
Hi, I use tomcat 4.1.24, jdk 1.4.0 and Apache 1.3 on Solaris 8. I am able to run a servlet with my configuration but when I submit in this first page I receive an errror. The catalina.out log file simply says: Jul 24, 2003 8:53:58 AM org.apache.commons.modeler.Registry loadRegistry INFO: Loading

Re: tomcat connection/port problem

2003-07-24 Thread Astrid Wagner
Wagner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 9:25 AM To: [EMAIL PROTECTED] Subject: tomcat connection/port problem [Thu Jul 24 09:01:26 2003] [jk_ajp_common.c (642)]: sending to ajp13 #79 [Thu Jul 24 09:01:27 2003] [jk_ajp_common.c (681)]: ERROR: can't receive the response message

problem finding css

2003-07-24 Thread Astrid Wagner
Hi, I am using Apache 1.3 with tomcat 4.1.24. When I use netscape 7 to run my web application everything works fine. When I use e.g netscape 4 the style sheets can not be found. How do I have to configure Apache/tomcat ? In the html page the source is refered to as: link href=/main.css

Re: problem finding css

2003-07-24 Thread Astrid Wagner
have to read about the VirtualHost tag more. Thanks anyway. Astrid Ralph Einfeldt wrote: I would expect that you have to use link href=/html/main.css ... to get the file. Otherwise the alias directive won't match. -Original Message- From: Astrid Wagner [mailto:[EMAIL PROTECTED] Sent

Re: problem finding css

2003-07-24 Thread Astrid Wagner
to do this in httpd.conf Thanks. Astrid Astrid Wagner wrote: No I forgot to state that http.conf has also: DocumentRoot /home/minerva/servers/upolu//ipr_files/static_html otherwise it wouldn't find it in any case. I assume the main.css is looked up in /home/oraedt/app/oracle/product/9iAS_1.0.2.2

running as diff. account

2003-07-24 Thread Astrid Wagner
Hi, This may be off topic but maybe someone else had this requirement: I need to call a system call running in a different account than the account the web application runs: E.g All web applications etc. run as accountA but my web application needs to call a rsh command (via native interface) run

Re: running as diff. account

2003-07-24 Thread Astrid Wagner
the rsh command directly -Original Message- From: Astrid Wagner [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 3:44 PM To: [EMAIL PROTECTED] Subject: running as diff. account E.g All web applications etc. run as accountA but my web application needs to call a rsh command (via

Re: running as diff. account

2003-07-24 Thread Astrid Wagner
to use, just as you would with ssh. John Astrid Wagner wrote: Hi, Can you detail the second solution a little bit: I can create a shell sript with my rsh system command in it and owned by accountB but it will still run as accountA when called by a servlet, won't it. I am no unix expert, maybe you

which mod_jk.so to use with Apache 1.3

2003-07-17 Thread Astrid Wagner
Hi, I try to connect tomcat 4.1.24 to an existing Apache 1.3 installation (Solaris 8). To do so I read I need mod_jk.so and I found a download page http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/release/v2.0.2/bin/solaris8/ but below it says to get * mod_jk2-1.3-eapi.so is

Re: I'm officially lost with mod_jk

2003-07-17 Thread Astrid Wagner
Hi Werner, Sorry to link into your conversation: It seems that you went through the problems I am about to have (connecting tomcat 4 to Apache 1.3: Solaris 8). Since I haven't gotten a response to a previous email: Where did you get mod_jk ? Why did you have to compile it and can you give more

deploying with ant

2003-07-14 Thread Astrid Wagner
Hi, I am trying to install my web application into a tomcat web installation. I thought ant install is the right thing to do and it successfully performed but I can not see any of my web part within the tomcat installation and neither can I call one of my servlets. I thought I would see my

web.xml question

2003-07-14 Thread Astrid Wagner
Hi, This is an (hopefully) easy question: I run my new web application but do not seem to get the servlet to run. I can run a simple index.html page (machine:port/my-web-appl/index.html) within my web application installation so $CATALINA_HOME/webapps/my-web-appl/index.html is found. But when I

winXP configured tomcat4.1.16 not refreshing...?

2003-07-08 Thread Winston Wagner T Quesang
i installed tomcat4.1.24 in winXP w/ SP1 bt, it has error blabla.. so i installed the older one tomcat4.1.16, but it doesn't refreshing whatever i edit in my .jsp files... other than that it doesn't recognize new file (either .jsp or .html) created in the context/folder i created.

Serious problem with the mod_jk: j_security_check

2003-04-03 Thread Wagner Sales
: j2sdk 1.4.1_02 jakarta-tomcat-4.1.24 apache-2.0.45 Sorry by the bad english, and if possible, help!!! Wagner Wagner Sales Linux/UNIX Consultant - +55(11) 81343678 - To unsubscribe, e-mail: [EMAIL

RES: ENC: SSL Error: no cipher suites in commom

2003-02-12 Thread Wagner
Hello Bill, I'm using the most commom browsers. I tested on IE 5.5 and Netscape... and got the same errors on both. Thanks in advance, Wagner Garcia Campagner. -Mensagem original- De: Bill [mailto:[EMAIL PROTECTED]] Enviada em: segunda-feira, 10 de fevereiro de 2003 17:28 Para: [EMAIL

RES: SSL Error: no cipher suites in commom

2003-02-12 Thread Wagner
Hello Tony, I am using Tomcat 3.3.1a... The factory declaration is used only in version 4... am i wrong?? Thanks a lot, Wagner Garcia Campagner. -Mensagem original- De: Tony Dahbura [mailto:[EMAIL PROTECTED]] Enviada em: terca-feira, 11 de fevereiro de 2003 20:41 Para: Tomcat Users

RES: SSL Error: no cipher suites in commom

2003-02-12 Thread Wagner
about keytool and importing v3 certificates?? I tested the certificate on apache and it worked fine... Thanks a lot, Wagner. -Mensagem original- De: Wagner [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 12 de fevereiro de 2003 09:10 Para: 'Tomcat Users List' Assunto: RES: SSL Error

SSL Error: no cipher suites in commom

2003-02-11 Thread Wagner
eystore" keypass="client" / Is there anything wrong Any misconfiguration I've tried to install the same certificate on apache and it worked fine. Thanks in advance, Wagner Garcia Campagner. - To unsubscribe,

ENC: SSL Error: no cipher suites in commom

2003-02-11 Thread Wagner
Hello, Nobody knows what can be wrong with my configuration?? I really need this SSL connection to work... The certificate is a v3 verisign and i'm using tomcat 3.3.1a Thanks again in advance, Wagner. -Mensagem original-De: Wagner [mailto:[EMAIL PROTECTED]]Enviada em: terça

HELP, PLEASE! Tomcat creates too many threads!

2003-01-07 Thread Wagner José Queiroz de Santana
Jan06 ?00:00:00 /usr/local/j2sdk1.4.0_01/bin/java -Djava.endorsed.dirs=/usr/local/jakarta-tomcat 040 S root 6165 8678 0 60 0- 58223 tcp_re Jan06 ?00:00:00 /usr/local/j2sdk1.4.0_01/bin/java -Djava.endorsed.dirs=/usr/local/jakarta-tomcat -- Wagner Santana Analista

Re: Tomcat 4.x and Java Processes

2003-01-07 Thread Wagner José Queiroz de Santana
] -- Wagner Santana Analista de Sistemas - TIM Av. Conde da Boa Vista, 800 081 3216-2713081 99136661 -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Apache is buffering Tomcat' Responses?

2002-10-24 Thread Hanno Wagner
Hi, I am quite new to the thematic of Tomcat together with Apache. I am running a project where in the first step a Tomcat-Configuration standalone was used to have a WebApplication running. To be able to use the .htaccess-Feature from Apache (since I really know only apache and not tomcat), I

Re: Tomcat Hangs-UP...

2002-05-29 Thread Wagner Danda
up of tomcat and changing to another payed solution (like Websphere, JRun, ...) PS: we are trying to solve this problem since 4 months ago!!! We arealdy tried A LOT of alternatives solutions... We neen and serius help. thank you all in advance, Wagner Danda [EMAIL PROTECTED] Sun Java

Re: Tomcat Hangs-UP...

2002-05-28 Thread Wagner Danda S. Filho
the classic OutOfMemory error. Tomcat just hangs-up with no reason. PS 2: We already used OptimizeIt to tune the application. PS 3: Tomcat stops even with a low rate of usage. Wagner Danda -- Mensagem original --- De : Rui Oliveira [EMAIL PROTECTED] Para: [EMAIL

Re: Stdout and Stderr

2002-05-18 Thread Wagner Danda
/catalina.err Thanks! Wagner Danda Jeff Macomber wrote: Generally these messages are in catalina.out or localhost_log... Jeff -Original Message- From: Wagner Danda [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 7:52 PM To: Tomcat Users List Subject: Stdout and Stderr Hello

Re: Heap Size for Tomcat

2002-05-16 Thread Wagner Danda
Hello, is it important to use the -Xms and -Xmx with tomcat? Doesn´t he already manage the heap? When I should use this and when I should not? Thanks. Wagner Danda Phillip Morelock wrote: The official way to do it is to set a TOMCAT_OPTS or CATALINA_OPTS variable with the string that you

Stdout and Stderr

2002-05-16 Thread Wagner Danda
Hello, in tomcat 4, where can I get the stderr and the stdout? Better, where can I see the tomcat errors (like OutOfMemory and others)? Thanks in advance, Wagner Danda -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: VM size increases.

2002-05-14 Thread Wagner Danda
Hi Philip, do you know any memory leak associated with the Oracle Thin JDBC driver? Thank you in advance. - Wagner Danda Sun Certified Programmer for JavaT 2 Platform - Original Message - From: Phillip Morelock [EMAIL

HOWTO: Multiple tomcat instances: Apache 1.3.x - Tomcat 4.x - mod_webapp

2001-12-26 Thread Joseph Wagner
Hello everybody, I recently spent some time setting up a server with a single apache instance and multiple tomcat instances - for use as a shared hosting environment. I wasn't able to find much official documentation on this topic, so I put together a short HOWTO on the subject:

ldap authentication with tomcat

2001-08-22 Thread Astrid Wagner
Hi, I am new to the subject: How can I enforce ldap authentication for certain resources using tomcat - similar to the Directory toProtectResourcePath Options FollowSymLinks AllowOverride None AuthType Basic AuthName Authentication AuthLDAPURL ldap://ldapUrl require

Antwort: Re: what are war files?

2001-08-14 Thread bastian . wagner
i am developing jsp sites, but i never had to use war files. do i need them really - what is the function of that files? greets bastian -- Externe MailDmitri Colebatch [EMAIL PROTECTED]

what are war files?

2001-08-13 Thread bastian . wagner
sorry for that question, but i dont know it thx bastian

how many visits can tomcat deal with

2001-08-09 Thread bastian . wagner
hi how many visits can tomcat deal with at the same time? in other words: on how many visit should i use load balancing to increase performance? how many hits (or visits) is your tomcat dealing with every day? greets bastian

two tomcats on one pc

2001-08-09 Thread bastian . wagner
hi, is it possible to run two instances of tomcat on one pc. one instance for internals and one for the www. i thought of using two different ports... ist this possible? greets bastian

tomcat default page

2001-08-07 Thread bastian . wagner
hi, if i link onto a directory wihtout a index.html, tomcat uses a default page to display the containing files of the directory. is it possible to edit this page? if yes, where can i find it? thx bastian

jasper exeption

2001-08-06 Thread bastian . wagner
hi, i have a problem with a simple if clause in my jsp. the syntax of the code is correct, but tomcat will not compile the page. here is the alert: plz can u help me greets bastian Internal Servlet Error: org.apache.jasper.JasperException: Unable to compile class for JSPC:

Antwort: RE: jasper exception

2001-08-06 Thread bastian . wagner
thats it - thx... -- Externe MailLEACH, Alison [EMAIL PROTECTED] 06.08.200111:28

do i need ant to develop jsp pages with tomcat?

2001-07-19 Thread bastian . wagner
hi, i am new to tomcat. i want to develop jsp pages that should interact with databases like mysql e.g. what is ant needed for? do i need it for simple jsp development. i just downloaded the tomcat binary and installed it. is that all i have to do? thx for help cu bastian

Email troubles

2001-04-07 Thread Niels Wagner
Hi , I'm sorry, but I receive al lot of mail where the mail delivery programm complains with Diagnostic-Code: 501 5.1.8 [EMAIL PROTECTED]... Domain of sender address [EMAIL PROTECTED] does not exist I receive only the status text and not the message, which i'm interested in. I could also

Building Tomcat-3.2.1

2001-03-18 Thread Niels Wagner
Hi everybody, i downloaded the source of tomcat 3.2.1 and tried to build it. I followed the README and got ant, jaxp (1.0.1), jsse ... My setup: SuSE Linux 7.0, IBMJava2-13. Environment variables export JAKARTA_HOME=/opt export TOMCAT_HOME=/opt/jakarta-tomcat-3.2.1 export

help! getting it to work with MS PWS4

2001-03-11 Thread Jan Wagner
Hi, I just don't seem to get it up and working in windows 98 with PWS 4. I installed the JDK 1.2.2 first, then Tomcat, and set up the windows registry according to instructions. The ISAPI redirector works, but trying to open the example page gives an "server or dns not found" error. HTTP log

Re: MySQL driver - java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver

2001-02-26 Thread Niels Wagner
his helps you, but I installed the driver only yesterday and didn't have time to find the exact location. Maybe this is a little overkill, but it works. Bye Niels Wagner ------- ping-tec N. Wagner Saumarkt 8a 91781 Weienburg Tel.: 09141/923721 Fax.: 09141/923722 Mobil: