Re: Deploying Default Webapp in Tomcat 6.0

2007-05-03 Thread Orlando Reis
:) I liked this one On 5/3/07, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > From: Matthew Inger [mailto:[EMAIL PROTECTED] > Subject: Deploying Default Webapp in Tomcat 6.0 > > I've been trying to figure out how to deploy a .war file as > the root webapp in Tomcat 6.0.10. > > Say I have a "

Re: Tomcat 5.5.23 with Sun JDK 1.5.0_11 can't find the Apache Tomcat Native library

2007-05-03 Thread Orlando Reis
Try de dir where you compiled the files, where you did: sh buildconf; ./configure and make There is a directory .libs in there you will find the native library's copy them to your $JAVA_HOME/jre/lib/i386/client There should be 6 files: libtcnative-1.a libtcnative-1.lai libtcnative-1.so.0 libtc

Re: Problem with compiling tomcat native

2007-04-24 Thread Orlando Reis
atibility in different versions of bash. Is it possible that this work in bash 2.x and not in bash 3.x? Perhaps you can do a "bash -version" on a system ware the configure works, and on a system ware it does not work just to see if they use different versions of bash. -Original Messa

Re: Problem with compiling tomcat native

2007-04-24 Thread Orlando Reis
onfigure: line 4400: ac_compiler_gnu: command not found ./configure: line 4401: ac_confdir: command not found ./configure: line 4402: ac_config_commands: command not found ./configure: line 4403: ac_config_files: command not found ./configure: line 4404: ac_config_guess: command not found ./configur

Re: Problem with compiling tomcat native

2007-04-24 Thread Orlando Reis
on a client: apache(with apr and apr-util)/tomcat-native/tomcat-connector Same versions I'm trying to build now. Orlando Reis On 4/23/07, Fargusson.Alan <[EMAIL PROTECTED]> wrote: I just want to make one point clear: Even when you are using bash, if /bin/sh is linked to some othe

Re: Problem with compiling tomcat native

2007-04-23 Thread Orlando Reis
It may be that the configure script depends on the default shell (/bin/sh) being BASH. Does it work if you do "bash configure"? -Original Message- From: Orlando Reis [mailto:[EMAIL PROTECTED] Sent: Monday, April 23, 2007 4:25 AM To: users@tomcat.apache.org Subject: Problem wi

Problem with compiling tomcat native

2007-04-23 Thread Orlando Reis
Hi, I'm having some trouble compiling tomcat-native-1.1.10-src, I've done this before on several different platforms, but for some reason the lastest debian (4.0 etch) is giving me problems. vserv-deb:/usr/local/build/tomcat-native-1.1.10-src/jni/native# sh buildconf --with-java-home=$JAVA_HOME -

Re: I get this error message while starting tomcat

2007-04-20 Thread Orlando Reis
And don't forget to use the -h flag to specify the host you are connecting to on mysql command line. That might be different, having a FQDN or localhost. Try logging on your mysql database and very the mysql.user and mysql.dbtables. Orlando On 4/20/07, David Smith <[EMAIL PROTECTED]> wrote:

Re: tomcat context

2007-04-19 Thread Orlando Reis
Just deploy the context to anywhere you want it... jar xvf potatos.war Then as Andoni said: Is that it? Orlando On 4/17/07, José Perdigão <[EMAIL PROTECTED]> wrote: OConchubhair, Andoni wrote: > Hi, > > What do you mean by 'context path'? > > Basically, what you have is: > > >

Re: Installing Apache Portable Runtime on Linux

2007-03-08 Thread Orlando Reis
Download the latest apache source. APR compiling # Build and install apr 1.2 cd srclib/apr ./configure --prefix=/usr/local/apr-httpd/ make make install # Build and install apr-util 1.2 cd ../apr-util ./configure --prefix=/usr/local/apr-util-httpd/ --with-apr=/usr/local/apr-httpd/ make make inst

Re: HP-UX Tomcat refuses connections after boot

2007-01-30 Thread Orlando Reis
Try to check your startup profile/.bashrc variables, i never used HP-UX but it should be something like this. To make it work for the time being try adding some default bin dir's to your system path directly on catalina.sh. Don't you have other problems besides this one with your system? Orland

Re: Webapps loading order

2007-01-24 Thread Orlando Reis
tz <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Orlando, Orlando Reis wrote: > Thanks I going to have a look, but has others have pointed out such a > mechanism is vowed to change in the future. > > I think, that either me or the team I work with, w

Re: Webapps loading order

2007-01-23 Thread Orlando Reis
ersion you are using... En l'instant précis du 01/22/07 16:55, Orlando Reis s'exprimait en ces termes: > Ok, if it ain't multithread then there must be some kind of order? > I mean is it a random function? Or something like that? > Always defining contexts on server.xml, w

Re: Webapps loading order

2007-01-22 Thread Orlando Reis
AIL PROTECTED]> wrote: > From: Orlando Reis [mailto:[EMAIL PROTECTED] > Subject: Re: Webapps loading order > > But the definition of the contexts in the server.xml would > that guarantee an order on loading? What does the spec say? (Hint: there is no server.xml nor element in

Re: Webapps loading order

2007-01-22 Thread Orlando Reis
Ok, I won't depend on it (still wonder what it is...). But the definition of the contexts in the server.xml would that guarantee an order on loading? Orlando On 1/22/07, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > From: Orlando Reis [mailto:[EMAIL PROTECTED] > Sub

Re: Webapps loading order

2007-01-22 Thread Orlando Reis
t;[EMAIL PROTECTED]> wrote: > From: Orlando Reis [mailto:[EMAIL PROTECTED] > Subject: Re: Webapps loading order > > The reason for not having any order is because it's > multithread and all webapps are loaded at the same time. Actually, the Tomcat webapp deployer is not currently

Re: Webapps loading order

2007-01-22 Thread Orlando Reis
Then they will all just wait or gracefully deal with the missing resource until it's available. --David Orlando Reis wrote: > Hi, can someone please tell me the order in which the webapps are loaded? > > I can't find anything on the archives nor on the documentation, is it

Webapps loading order

2007-01-22 Thread Orlando Reis
Hi, can someone please tell me the order in which the webapps are loaded? I can't find anything on the archives nor on the documentation, is it alphabetically or reverse alphabetically or is there no order at all? On the searches I made through out the list archive someone said the answer was al