Other Question - RE: Help - Newbie questions - where are the uplo aded files stored ?

2004-09-11 Thread MATHOT Jacques
Hello, Thanks a lot for the information and the link to the upload handling. So far it works very well, uploading the files in a temp directory. The purpose is to upload archive for specific users (after authentication) in the archive directory of the application (called icaoref); consequently i

Re: Other question

2002-06-14 Thread Ben Ricker
| grep myapp | awk '{print $2}' > > > > Yoav Shapira > > Millennium ChemInformatics > > > > >-Original Message- > > > > From: Turner, John [mailto:[EMAIL PROTECTED]] > > > > >Sent: Friday, June 14, 2002 11:41 AM > > >

Re: Other question

2002-06-14 Thread Laura
rint $2}' > > Yoav Shapira > Millennium ChemInformatics > > >-Original Message- > > From: Turner, John [mailto:[EMAIL PROTECTED]] > > >Sent: Friday, June 14, 2002 11:41 AM > >To: 'Tomcat Users List' > >Subject: RE: Other question >

RE: Other question

2002-06-14 Thread Shapira, Yoav
4, 2002 11:41 AM >To: 'Tomcat Users List' >Subject: RE: Other question > > >Just for clarification, doing "> tomcat.pid" wouldn't really work, because >all you would get is the ps entry for that value. You'd have to use cut or >awk and grab the act

RE: Other question

2002-06-14 Thread Turner, John
p myapp" and redirect it to tomcat.pid. John Turner [EMAIL PROTECTED] http://www.aas.com -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 10:45 AM To: Tomcat Users List Subject: RE: Other question Howdy, A relatively unix-flavor-independent way to

AW: AW: Other question

2002-06-14 Thread Ralph Einfeldt
Ursprüngliche Nachricht- > Von: Laura [mailto:[EMAIL PROTECTED]] > Gesendet: Freitag, 14. Juni 2002 16:44 > An: Tomcat Users List > Betreff: Re: AW: Other question > > > Well > > in the stage I have linux, but in the production solaris 8. > > Is there any di

RE: Other question

2002-06-14 Thread Turner, John
That's a good tip! Thanks! John Turner [EMAIL PROTECTED] http://www.aas.com -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 10:45 AM To: Tomcat Users List Subject: RE: Other question Howdy, A relatively unix-flavor-independent way

RE: Fw: Other question

2002-06-14 Thread Joel Sather
me(), etc. John Turner [EMAIL PROTECTED] http://www.aas.com -Original Message- From: Laura [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 10:37 AM To: Tomcat Users List Subject: Re: Fw: Other question Hi, can you send me the function too? The perl script can be the sol

RE: Other question

2002-06-14 Thread Shapira, Yoav
ics >-Original Message- >From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] >Sent: Friday, June 14, 2002 10:41 AM >To: Tomcat Users List >Subject: AW: Other question > >What operating system do you have ? > >> -Ursprüngliche Nachricht- >> Von: Laura [mailto:

Re: AW: Other question

2002-06-14 Thread Laura
t; Gesendet: Freitag, 14. Juni 2002 13:59 > > An: Tomcat Users List > > Betreff: Re: Other question > > > > > > But it doesn't seem to be correct. It writes in tomcat.pid a > > PID that doesn't seem to be correct: I have tried to do: > > > >

AW: Other question

2002-06-14 Thread Ralph Einfeldt
What operating system do you have ? > -Ursprüngliche Nachricht- > Von: Laura [mailto:[EMAIL PROTECTED]] > Gesendet: Freitag, 14. Juni 2002 13:59 > An: Tomcat Users List > Betreff: Re: Other question > > > But it doesn't seem to be correct. It writes in tom

RE: Fw: Other question

2002-06-14 Thread Turner, John
List Subject: Re: Fw: Other question Hi, can you send me the function too? The perl script can be the solution. Thanks Laura Alle 16:31, venerdì 14 giugno 2002, hai scritto: > Hi , > > excuse me, but the function getppid() ? > > What is this? > > Can you send me? > > Th

Re: Fw: Other question

2002-06-14 Thread Laura
> > Alle 16:20, venerdì 14 giugno 2002, hai scritto: > > - Original Message - > > From: "Joel Sather" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Friday, June 14, 2002 4:05 PM > > Subject: Re: Other question > > &g

Re: Fw: Other question

2002-06-14 Thread marco spinetti
ent: Friday, June 14, 2002 4:05 PM > Subject: Re: Other question > > > I tried to run Tim's original sh script under Solaris and it wouldn't > > give me anything, so I wrote a version in Perl. My script looks like > > this: > > > > ---

Re: Other question

2002-06-14 Thread Joel Sather
I tried to run Tim's original sh script under Solaris and it wouldn't give me anything, so I wrote a version in Perl. My script looks like this: --- #!/usr/local/bin/perl open (PIDFILE, "> logs/tomcat.pid"); print PID

AW: Other question

2002-06-14 Thread Ralph Einfeldt
14. Juni 2002 14:26 > An: Tomcat Users List > Betreff: Re: Other question > > > Welcome to PID hell! I have this working on HPUX, if you are > trying this > on another UNIX - I'm not sure what may happen but here are > some hints > to track things down. >

Re: Other question

2002-06-14 Thread Tim Funk
Welcome to PID hell! I have this working on HPUX, if you are trying this on another UNIX - I'm not sure what may happen but here are some hints to track things down. 1) Make sure the directory you are starting tomcat you are typing bin/startup.sh. This ensures you will write the the correct lo

Re: Other question

2002-06-14 Thread Laura
Hi, I have installed your code in my Tomcat (4.0.2 + apache). But it doesn't seem to be correct. It writes in tomcat.pid a PID that doesn't seem to be correct: I have tried to do: kill -9 PID (which is in the tomcat.pid) and the system tells me: bash: kill: (3977) - No such pid Where is

Re: Other question

2002-06-13 Thread Tim Funk
http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/host.html I have mine in the , but it can also go other spots in conf/server.xml according to the docs. -Tim Laura wrote: > Hi, > > your code seems very interesting, but I haven't understood one thing: you says > > >>Then add the follow

Re: Other question

2002-06-13 Thread Laura
Hi, your code seems very interesting, but I haven't understood one thing: you says >Then add the following into server.xml > --Begin server.xml snippet > > --End server.xml snippet do you want to say conf/server.xml? Can you put in the server.xml? Where do I have to put it in the server.xml

Re: Other question

2002-06-13 Thread Tim Funk
For what its worth - I created (and use) a LifecycleListener that runs on startup which logs the process ID into a file called tomcat.pid. Which is created by a shell script called writepid.sh. Below is all the code to get this to work. This code also assumes your current working directory is

Re: Other question

2002-06-13 Thread Rick Fincher
> 9085 pts/8S 0:00 grep java > > ravi > > - Original Message - > From: "Laura" <[EMAIL PROTECTED]> > To: "Tomcat Users List" <[EMAIL PROTECTED]> > Sent: Thursday, June 13, 2002 2:56 PM > Subject: Other question > > &g

Re: Other question

2002-06-13 Thread Rick Fincher
gt; Hi all, thanks for your reply (Security - Attack): you are telling me that I shouldn't worry because Apache is secure. (I hope it) I have one other question: If Tomcat shouts down for some cause, how can I know it? For example, Apache has a PID and so you can control if the apache p

Re: Other question

2002-06-13 Thread zibie
> > I have one other question: If Tomcat shouts down for some cause, how can I know it? I think the best method is (on linux systems) # netstat -a -n | grep LISTEN if tomcat work ok, you'll get: tcp0 0 0.0.0.0:80010.0.0.0:* LISTEN tcp0 0 127

Re: Other question

2002-06-13 Thread Ravishankar S
t; <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, June 13, 2002 3:11 PM Subject: Re: Other question > Hey Ravi, > > > Try doing ps auxwwwf > > it'll give you alot more detail > > the ps -ax won't l

AW: Other question

2002-06-13 Thread Ralph Einfeldt
Laura [mailto:[EMAIL PROTECTED]] > Gesendet: Donnerstag, 13. Juni 2002 11:26 > An: Tomcat Users List > Betreff: Other question > > But Tomcat doesn't write any PID: how can I know if Tomcat is > alive or not? Is there any script for that? > -- To unsubscribe, e-mail:

Re: Other question

2002-06-13 Thread David Cassidy
usr/java/jdk1.3.1/bin/i386/native_threads/java -clas >21679 pts/3S 0:00 >/usr/java/jdk1.3.1/bin/i386/native_threads/java -clas >21680 pts/3S 0:00 >/usr/java/jdk1.3.1/bin/i386/native_threads/java -clas > 9085 pts/8S 0:00 grep java > >ravi > >-

Re: Other question

2002-06-13 Thread Ravishankar S
TED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Thursday, June 13, 2002 2:56 PM Subject: Other question Hi all, thanks for your reply (Security - Attack): you are telling me that I shouldn't worry because Apache is secure. (I hope it) I have one other question: If Tomca

Re: Other question

2002-06-13 Thread David Cassidy
because Apache is secure. (I hope it) > >I have one other question: If Tomcat shouts down for some cause, how can >I know it? >For example, Apache has a PID and so you can control if the apache >process, with that PID, is alive. > >But Tomcat doesn't write any PID: how

Other question

2002-06-13 Thread Laura
Hi all, thanks for your reply (Security - Attack): you are telling me that I shouldn't worry because Apache is secure. (I hope it) I have one other question: If Tomcat shouts down for some cause, how can I know it? For example, Apache has a PID and so you can control if the apache pr