Re: How to unpack .WAR file?

2001-02-02 Thread Jan Labanowski
jar -xvf tut-bookstore-tomcat.war On Fri, 2 Feb 2001 [EMAIL PROTECTED] wrote: > I download the sample servlets program for Tomcat from java tutorial website. > But it is a > tut-bookstore-tomcat.war, a .war file. > > How can I unpack this war file and take a look of source code? > > Thanks,

RE: JkMount for all context

2001-02-02 Thread Jan Labanowski
innear Rd, |http://www.ccl.net/chemistry.html Columbus, OH 43212-1163 |http://www.osc.edu/ > > /A > > -Original Message- > From: Jan Labanowski [mailto:[EMAIL PROTECTED]] > Sent: den 2 februari 2001 21:28 > To: '[EMAIL PROTECTED]' > Cc: Jan Labano

Re: JkMount for all context

2001-02-02 Thread Jan Labanowski
1) If you want everything served by Tomcat, why bother with Apache? 2) I am afraid you cannot escape mounting each context separately both in server.xml and in mod_jk.conf, i.e., JkMount /context1/* ajp13 Alias /context1 "/your/full/path/to/context1" Options Indexes FollowS

Re: JSP pages in webapps/ROOT will not 'recompile'

2001-02-02 Thread Jan Labanowski
The /ROOT webapp is mounted as / context in tomcat. So you can access it in Tomcat on port 8080, but cannot mount it in Apache (or whatever), since you would be sending everything to Tomcat as it would hold the root context. You may want to look at my http://www.ccl.net/cca/software/UNIX/apache

Re: starting Tomcat at boot time on Linux

2001-02-02 Thread Jan Labanowski
If you want to start Apache+Tomcat at boot time, you may want to look at some of my scripts: http://www.ccl.net/cca/software/UNIX/apache/ Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224 Kinnear Rd,

Re: Can not generate mod_jk.so file

2001-01-31 Thread Jan Labanowski
Check my installation logs for Linux 7.0. Somewhere there I give a detailed prescription on how to compile mod_jk. http://www.ccl.net/cca/software/UNIX/apache/index.shtml Jan On Wed, 31 Jan 2001, Fabio Galarraga wrote: > Hi to all: > I'm trying to configure Tomcat+Apache+SSL so I must instal

Re: how to enable ssi in tomcat. Urgent plssssssss

2001-01-31 Thread Jan Labanowski
SSI (Server Side Includes) work only in Apache. They do not work in Tomcat. You have to choose... Either you do SSI or JSP, you cannot have both. If you have: JkMount /*.jsp ajp13 JkMount /servlet/* ajp13 in you mod_jk.conf and AddType text/html .shtml AddHandler server-parsed .shtml

Re: Servlet and jsp configuration problem ?

2001-01-30 Thread Jan Labanowski
Try to see some examples of servlet remapping at my http://www.ccl.net/cca/software/UNIX/apache/tomcatfaq.shtml Jan On Wed, 31 Jan 2001, Gunawan Tanudy wrote: > HI.. > Can somebody help me , i got really frustrated regarding mapping servlet and > jsp file to tomcat. > I use Apache+ tomcat.

Re: Problem with apxs and mod_jk

2001-01-30 Thread Jan Labanowski
The apxs is a perl script... The first line should be like: #!/usr/bin/perl or #!/usr/local/bin/perl or whatever... Do: which perl and put the stuff which it returns as the first line of apxs... remember to put the #! before it... Jan On Tue, 30 Jan 2001, Marilee Niemi wrote: > I am tryi

Re: Build mod_jk.so - no match

2001-01-30 Thread Jan Labanowski
It is known that compiling apache under non-GNU C compiler is a problem... On the other hand, under gcc it compiles like charm... Jan [EMAIL PROTECTED] Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224 Ki

Re: Tomcat and Apache

2001-01-30 Thread Jan Labanowski
Two hours ago, I provided you with the pointer where you can find the mod_jk.so connector: http://www.ccl.net/cca/software/UNIX/apache/index.shtml The RPMS were also mentioned: http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.1/rpms/ In the Instructions for Linux RH7.0 (e.g.: h

Re: Tomcat and Apache integration

2001-01-30 Thread Jan Labanowski
Check it out... http://www.ccl.net/cca/software/UNIX/apache/ On Tue, 30 Jan 2001 [EMAIL PROTECTED] wrote: > I'd like to use the Apache web server with Tomcat. I haven't managed to > locate any documentation in this regard. Can someone point me to the URL? > > Thank you, > Paul Asarak > > >

Re: Apache/Tomcat integration, help !

2001-01-30 Thread Jan Labanowski
Check it out... http://www.ccl.net/cca/software/UNIX/apache/ There is a link to compiled mod_jk.so there... Jan On Tue, 30 Jan 2001, [iso-8859-1] Joel Cordonnier wrote: > Hi! > > As a newbie, I try to integrate Tomcat 3.2 with Apache > 3.12 under RedHat 7.0. So I need the mod_jk.so shared >

Installation logs for Tomcat 3.2.1 and Apache 1.3.14 for RedHat 7.0

2001-01-29 Thread Jan Labanowski
I just added my installation notes on Tomcat 3.2.1 and Apache 1.3.14 at http://www.ccl.net/cca/software/UNIX/apache/ There are 2 sets of notes: a) for binary distribution of Apache which comes with RedHat 7.0 and the binary distribution of Tomcat b) for source distribution of RedHat and

Re: Virtual Hosting - Port based with Tomcat 3.2

2000-12-07 Thread Jan Labanowski
I may be missing something, but either you do virtual hosts in Apache (i.e., in the httpd.conf) and tomcat talks to apache via ajp1x and does not know about hosts or anything - it is just a worker who talks to apache and serves whatever apache tells him to serve. or tomcat is standalone, and do

Re: Would you be so kind to give me a step by step manual about howto intall Apache+TomCat in solaris2.7?

2000-12-07 Thread Jan Labanowski
Step by step Apache+Tomcat install is in: http://www.ccl.net/cca/software/UNIX/apache/ Jan K. Labanowski|phone: 614-292-9279, FAX: 614-292-7168 Ohio Supercomputer Center|Internet: [EMAIL PROTECTED] 1224 Kinnear Rd, |http://www.ccl.net/chemistry.html C

Re: Internal Server Error

2000-12-07 Thread Jan Labanowski
Which Apache you use? If you use 1.3.X, comment out all these inprocess things, since you do not do inprocess stuff. You can do inprocess only with Apache 2.X which is still alpha... Jan [EMAIL PROTECTED] On Thu, 7 Dec 2000 [EMAIL PROTECTED] wrote: > I'm running Tomcat 3.2 using mod_jk and apac

Re: mod_jk.so ==> apxs:Break: Command failed with rc=16777215

2000-12-04 Thread Jan Labanowski
On Mon, 4 Dec 2000, Scott Liu wrote: > Hi All, > > It's been a long battle to make "mod_jk.so" and it failed with > rc=16777215. > My system has > > apache-1.3.14 > perl5.6 > java1.3 > tomcat3.2. Try: http://www.ccl.net/cca/software/UNIX/apache/ for the log of what I was doing... Jan K. Laban

Instal log for Tomcat3.2, apache_1,3,14, mod_ssl, solaris available

2000-12-04 Thread Jan Labanowski
My installation notes for Tomcat 3.2 final/Apache, mod_jk, mod_ssl, are available. If you find mistakes, please tell me... This is a log of complete install of apache and tomcat. Note that this is a MOD_SSL + DSO install of apache. http://www.ccl.net/cca/software/UNIX/apache/solaris-t3.2/READM

Re: please help me (Apache + modssl + openssl + tomcat)

2000-11-20 Thread Jan Labanowski
Try: http://www.ccl.net/cca/software/UNIX/apache/ On Mon, 20 Nov 2000, [euc-kr] ¿¬±¸¼Ò ¿£Áø°³¹ßºÎ ¹Ú½ÃÇö wrote: > hi > I want to use Apache + modssl + openssl + tomcat. > I found next memo during searching intenet . > === > > >>If yo

Re: how to start tomcat on port 80 w/o being root?

2000-10-25 Thread Jan Labanowski
I am afraid, you are out of luck... But I hope someone will say I am wrong... The apache has a "parent" process which runs as root, and spawns children processes as "nobodies" (or whatever). Tomcat is running a single process, does not spawn children, and from the beginning to the end is the same

Re: TOMCAT_HOME problem

2000-10-21 Thread Jan Labanowski
I am not sure if setting variables like TOMCAT_HOME, JAVA_HOME, and PATH for all processes and all users in /etc/profile, /etc/bashrc or /etc/csh.cshrc is such a good idea. If you want to start up apache/tomcat you can write yourself a script inside of which you set up environment. (You can use a

<    1   2