You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by "Craig R. McClanahan" <cr...@apache.org> on 2001/08/10 08:01:58 UTC

[ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

A release candidate version of Tomcat 4.0, version "beta 7", has been
released.  This version conforms to the Proposed Final Draft 3 version of
the Servlet 2.3 and JSP 1.2 specifications, which will go final soon, and
incorporates all of the latest bugfixes.

In addition, for users who run Tomcat 4.0 on Windows 9x, this release
fixes a security vulnerability that allows users to browse the directory
tree above the web application's context root by using request URIs
including three or more dots ("/...").  Users running on Win2K and Unix
systems are *not* susceptible to this vulneratibility.

In addition, as with the previous version, an installer-based version of
Tomcat 4.0-beta-7 is available for Windows users, as well as native code
versions of the mod_webapp connector for Apache.

Binary distributions are available at:

  http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/

Source distributions are available at:

  http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/src/

Craig McClanahan



Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by Christopher Cain <cc...@mhsoftware.com>.
I dig the zero-based steps in the BUILDING.txt:

(0) Download and Install a Java Devlopment Kit
(1) Download and Install the Ant Binay Distribution
...

LOL. Step zero ... I love it! If I accidentally install the JSK step as Step 1, 
will I get a InstallationIndexOutOfBounds Exception at the end ;-)

- Christopher

RE: Encoding problem in Opera browser

Posted by Evgeniy Strokin <ev...@yahoo.com>.
No, I'm not sure.
The Opera display all UTF-8 information correctly.
But seems like it's all time requesting in I don't know which encoding but
not UTF-8 (because value is shorter).
request.getCharacterEncoding() return me null.
request.setCharacterEncoding() doesn't make any influence.
So, I guess we need wait another version of Opera which will be support
Unicode.

-----Original Message-----
From: Craig R. McClanahan [mailto:craigmcc@apache.org]
Sent: Friday, August 10, 2001 2:52 PM
To: tomcat-user@jakarta.apache.org
Subject: RE: Encoding problem in Opera browser




On Fri, 10 Aug 2001, Evgeniy Strokin wrote:

> Still problem.
> In TC4b7 I set request to UTF-8 encoding also (I use
> filters.SetCharacterEncodingFilter
> encoding in web.xml and request.setCharacterEncoding())
> I removed
> param=new String(param.getBytes("iso-8859-1"),"UTF-8");
> and leaved only
> String param=_request.getParameter(name);
> Exactly the same result: in IE and NS every things fine from Opera value
is
> cut.
>

I don't use Opera, so I don't know if this is a stupid question, but ...
are you sure Opera is really encoding the parameters in UTF-8 like you
expect it to?

Craig

----------------------------------------------------
NetZero Platinum
Sign Up Today - Only $9.95 per month!
http://my.netzero.net/s/signup?r=platinum&refcd=PT97

RE: Encoding problem in Opera browser

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On Fri, 10 Aug 2001, Evgeniy Strokin wrote:

> Still problem.
> In TC4b7 I set request to UTF-8 encoding also (I use
> filters.SetCharacterEncodingFilter
> encoding in web.xml and request.setCharacterEncoding())
> I removed
> param=new String(param.getBytes("iso-8859-1"),"UTF-8");
> and leaved only
> String param=_request.getParameter(name);
> Exactly the same result: in IE and NS every things fine from Opera value is
> cut.
> 

I don't use Opera, so I don't know if this is a stupid question, but ...
are you sure Opera is really encoding the parameters in UTF-8 like you
expect it to?

Craig


RE: Encoding problem in Opera browser

Posted by Evgeniy Strokin <ev...@yahoo.com>.
Still problem.
In TC4b7 I set request to UTF-8 encoding also (I use
filters.SetCharacterEncodingFilter
encoding in web.xml and request.setCharacterEncoding())
I removed
param=new String(param.getBytes("iso-8859-1"),"UTF-8");
and leaved only
String param=_request.getParameter(name);
Exactly the same result: in IE and NS every things fine from Opera value is
cut.


-----Original Message-----
From: Craig R. McClanahan [mailto:craigmcc@apache.org]
Sent: Friday, August 10, 2001 1:31 PM
To: tomcat-user@jakarta.apache.org
Subject: Re: Encoding problem in Opera browser


On Fri, 10 Aug 2001, Evgeniy Strokin wrote:

> I use TC 3.2.3 (Actually in TC 4b7 he same problem)
> I have all pages in UTF-8 encoding.
> I trying get values from parameters.
> I have this code:
> String param=_request.getParameter(name);
> param=new String(param.getBytes("iso-8859-1"),"UTF-8");
> In IE and NS every things fine.
> But from Opera I getting value shorter (for example ???? from IE and ??
from
> Opera)
> and after
> param=new String(param.getBytes("iso-8859-1"),"UTF-8");
> all not Latin symbols cut.
> Please help.
>

In Servlet 2.3 (and therefore in Tomcat 4b7 but not 3.2.3) there is a new
request.setCharacterEncoding() call that you can use to tell Tomcat to do
this transformation for you before returning the parameter in the first
place.

Craig

----------------------------------------------------
NetZero Platinum
Sign Up Today - Only $9.95 per month!
http://my.netzero.net/s/signup?r=platinum&refcd=PT97

Re: Encoding problem in Opera browser

Posted by "Craig R. McClanahan" <cr...@apache.org>.
On Fri, 10 Aug 2001, Evgeniy Strokin wrote:

> I use TC 3.2.3 (Actually in TC 4b7 he same problem)
> I have all pages in UTF-8 encoding.
> I trying get values from parameters.
> I have this code:
> String param=_request.getParameter(name);
> param=new String(param.getBytes("iso-8859-1"),"UTF-8");
> In IE and NS every things fine.
> But from Opera I getting value shorter (for example ???? from IE and ?? from
> Opera)
> and after
> param=new String(param.getBytes("iso-8859-1"),"UTF-8");
> all not Latin symbols cut.
> Please help.
> 

In Servlet 2.3 (and therefore in Tomcat 4b7 but not 3.2.3) there is a new
request.setCharacterEncoding() call that you can use to tell Tomcat to do
this transformation for you before returning the parameter in the first
place.

Craig


Encoding problem in Opera browser

Posted by Evgeniy Strokin <ev...@yahoo.com>.
I use TC 3.2.3 (Actually in TC 4b7 he same problem)
I have all pages in UTF-8 encoding.
I trying get values from parameters.
I have this code:
String param=_request.getParameter(name);
param=new String(param.getBytes("iso-8859-1"),"UTF-8");
In IE and NS every things fine.
But from Opera I getting value shorter (for example ???? from IE and ?? from
Opera)
and after
param=new String(param.getBytes("iso-8859-1"),"UTF-8");
all not Latin symbols cut.
Please help.

----------------------------------------------------
NetZero Platinum
Sign Up Today - Only $9.95 per month!
http://my.netzero.net/s/signup?r=platinum&refcd=PT97

Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On Fri, 10 Aug 2001, chris brown wrote:

> I've had a look at Tomcat 4's server.xml file.  Seems straightforward
> enough.  Following on from your comments about still being able to use
> mod_jk with Tomcat 4, can I simply copy over my <Connector..> settings from
> my server.xml file for Tomcat 3.2.x ?
> 
> <Connector className="org.apache.tomcat.service.PoolTcpConnector">
>  <Parameter name="handler"
> value="org.apache.tomcat.service.connector.Ajp13ConnectionHandler"/>
>  <Parameter name="port" value="8009"/>
> </Connector>
> 

This won't work "as is", because the Ajp13ConnectionHandler class is not
part of the standard Tomcat 4 distribution.  You'll need to follow the
instructions in the "jakarta-tomcat-connectors" CVS repository to build
and install the necessary pieces on both sides.

> Do I still need both an AJP12 connector (for shutdown) *and* AJP13 connector
> (for main communication) ?
> 
> Thanks again,
> Chris
> 

Craig

> 
> ----- Original Message -----
> From: "Craig R. McClanahan" <cr...@apache.org>
> To: "tomcat-user" <to...@jakarta.apache.org>
> Sent: Friday, August 10, 2001 5:54 PM
> Subject: Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released
> 
> 
> > You can in fact use mod_jk if you want to -- on the Apache side it's
> > identical to the mod_jk used for Tomcat 3.x.  Instructions for configuring
> > this can be found in the "jakarta-tomcat-connectors" CVS repository.  I'll
> > take a look at packaging things up (but mod_webapp has been my personal
> > focus).
> >
> > Craig
> 
> 
> 


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by chris brown <de...@reflexe.fr>.
I've had a look at Tomcat 4's server.xml file.  Seems straightforward
enough.  Following on from your comments about still being able to use
mod_jk with Tomcat 4, can I simply copy over my <Connector..> settings from
my server.xml file for Tomcat 3.2.x ?

<Connector className="org.apache.tomcat.service.PoolTcpConnector">
 <Parameter name="handler"
value="org.apache.tomcat.service.connector.Ajp13ConnectionHandler"/>
 <Parameter name="port" value="8009"/>
</Connector>

Do I still need both an AJP12 connector (for shutdown) *and* AJP13 connector
(for main communication) ?

Thanks again,
Chris


----- Original Message -----
From: "Craig R. McClanahan" <cr...@apache.org>
To: "tomcat-user" <to...@jakarta.apache.org>
Sent: Friday, August 10, 2001 5:54 PM
Subject: Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released


> You can in fact use mod_jk if you want to -- on the Apache side it's
> identical to the mod_jk used for Tomcat 3.x.  Instructions for configuring
> this can be found in the "jakarta-tomcat-connectors" CVS repository.  I'll
> take a look at packaging things up (but mod_webapp has been my personal
> focus).
>
> Craig



Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On Fri, 10 Aug 2001, chris brown wrote:

> How else can I connect Tomcat 4.0 with an Apache server (1.3.20) ?
> 

You can in fact use mod_jk if you want to -- on the Apache side it's
identical to the mod_jk used for Tomcat 3.x.  Instructions for configuring
this can be found in the "jakarta-tomcat-connectors" CVS repository.  I'll
take a look at packaging things up (but mod_webapp has been my personal
focus).

Craig


Re: [TC4] mod_webapp

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
chris brown at dev@reflexe.fr wrote:
> 
>> Heyaaaa... Everyone needs to sleep sometime... I can't prepare binaries if
>> I'm lying down on my bed with my eyes shut. :)
> 
> Your time *is* very much appreciated... I can wait, it's still quicker than
> writing it myself !

Cool..

>> And anyway, there's not going to be a Win32 binary "today"... As I still
>> don't have a Win32 C compiler...
> 
> Just wondered if was an oversight... what with sleep deprivation, and so on!
> ;-)  I'd happily compile it for you if I had a C compiler and knew how to
> use it... ;-))

The problem is building the makefiles :)

>>> How else can I connect Tomcat 4 with an Apache server (1.3.20)?
>> 
>> Dunno.... Kill windows, install a decent operating system (such as Solaris
>> x86, BeOS, Darwin, FreeBSD etc etc etc) to have it working today :)
> 
> We already have Linux *and* Windows.

Both not my #1 choice, but at least Linux has fork() :)

> I was wondering if I could still use mod_jk...  or if mod_webapp will be the
> only way for Tomcat 4.  I've also heard about using a JNI interface with
> Apache 2, but I don't know how viable this option is (yet).

AFAIK, there is some AJPv14 that is supposed to work with TC4. I never tried
it though... I don't even know if it's working.

The WebApp module is compliant with WatchDog, so meaning that right now I
can ask for compliancy to the servlet spec... And it's coming better every
day...

> Just wanted to let you know that your work is appreciated, and that I'm not
> a whining Windows user...!

:)

    Pier


[TC4] mod_webapp

Posted by chris brown <de...@reflexe.fr>.
> Heyaaaa... Everyone needs to sleep sometime... I can't prepare binaries if
> I'm lying down on my bed with my eyes shut. :)

Your time *is* very much appreciated... I can wait, it's still quicker than
writing it myself !


> And anyway, there's not going to be a Win32 binary "today"... As I still
> don't have a Win32 C compiler...

Just wondered if was an oversight... what with sleep deprivation, and so on!
;-)  I'd happily compile it for you if I had a C compiler and knew how to
use it... ;-))


> > How else can I connect Tomcat 4 with an Apache server (1.3.20)?
>
> Dunno.... Kill windows, install a decent operating system (such as Solaris
> x86, BeOS, Darwin, FreeBSD etc etc etc) to have it working today :)

We already have Linux *and* Windows.  I prefer Linux (and Unix) by a long
way, and use it where possible, but we still "need" Windows for a few other
applications (i.e.: no equivalents for certain applications).  For various
reasons, we also need to deploy with NT/2000 sometimes, so it's nice to know
what's portable and what's not.

I was wondering if I could still use mod_jk...  or if mod_webapp will be the
only way for Tomcat 4.  I've also heard about using a JNI interface with
Apache 2, but I don't know how viable this option is (yet).


>     Pier

Just wanted to let you know that your work is appreciated, and that I'm not
a whining Windows user...!



Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
chris brown at dev@reflexe.fr wrote:
> 
> Re: 2./ mod_webapp
> I found a few answers in RELEASE-NOTES-4.0-B7.txt as supplied with the
> distribution.  I still can't find any non-Linux distributions however, (I
> require a Win32 binary).  I can't find any detailed documention about it
> (what is a warp connection?  I've seen warp.jar in Tomcat, but I don't know
> really what it does or how to use it)...

Heyaaaa... Everyone needs to sleep sometime... I can't prepare binaries if
I'm lying down on my bed with my eyes shut. :)

And anyway, there's not going to be a Win32 binary "today"... As I still
don't have a Win32 C compiler...

> How else can I connect Tomcat 4.0 with an Apache server (1.3.20) ?

Dunno.... Kill windows, install a decent operating system (such as Solaris
x86, BeOS, Darwin, FreeBSD etc etc etc) to have it working today :)

    Pier


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by chris brown <de...@reflexe.fr>.
I've answered some of my own questions, but not all.

Re: 1./
I began using the installer, but didn't find that it offered me much; it
didn't let me choose my preferred JVM.  I resorted instead to the standard
"ZIP" file, which worked just fine.  I'd still welcome more info. about it
though!


Re: 2./ mod_webapp
I found a few answers in RELEASE-NOTES-4.0-B7.txt as supplied with the
distribution.  I still can't find any non-Linux distributions however, (I
require a Win32 binary).  I can't find any detailed documention about it
(what is a warp connection?  I've seen warp.jar in Tomcat, but I don't know
really what it does or how to use it)...

How else can I connect Tomcat 4.0 with an Apache server (1.3.20) ?


Re: 3./ NT Service
JavaService seems to work fine with Tomcat 4. There's no problem in using
it's supplied setup scripts (very easy).


Hope someone can reply to the outstanding questions.  Hope my
comments/questions are of use to others too!

-Chris


----- Original Message -----
From: "chris brown" <de...@reflexe.fr>
To: <to...@jakarta.apache.org>
Sent: Friday, August 10, 2001 10:44 AM
Subject: Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released


> A few questions about the downloads :
>
> 1./ Windows Installer version
> (I assume this is the .exe in the main download folder ; I would have
> expected it in the "bin" subfolder...).  What does this file actually do?
I
> imagine that it unzips the files and installs Tomcat as a service (using
> jk_nt_service) -- am I correct so far?  Does it do anything else, such as
> modify "httpd.conf" for Apache or any other server setup files (for IIS or
> whatever)?
>
> 2./ mod_webapp
> - Where's the Windows binary?!  The only version I see is for Linux (at
> present).
> - Is this connecter "stable" code?
> - Is it only for Apache 2.0, or can it be used with 1.3.20, etc.?
> - Is there any documentation for mod_webapp (I don't know how to use
it...)?
> - What's the difference between mod_webapp and mod_jk anyway?!
>
> 3./ NT service
> I currently use JavaService, available from
> http://www.alexandriasc.com/software/JavaService/index.html, to run Tomcat
> 3.2.3 as a service.  Is this still possible with Tomcat 4.0, or do I need
to
> use jk_nt_service ?
>
> Thanks,
> Chris B.
>
> ----- Original Message -----
> From: "Craig R. McClanahan" <cr...@apache.org>
> To: <an...@jakarta.apache.org>; <ge...@jakarta.apache.org>;
> <to...@jakarta.apache.org>; <to...@jakarta.apache.org>
> Sent: Friday, August 10, 2001 8:01 AM
> Subject: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released
>
>
> > A release candidate version of Tomcat 4.0, version "beta 7", has been
> > released.  This version conforms to the Proposed Final Draft 3 version
of
> > the Servlet 2.3 and JSP 1.2 specifications, which will go final soon,
and
> > incorporates all of the latest bugfixes.
> >
> > In addition, for users who run Tomcat 4.0 on Windows 9x, this release
> > fixes a security vulnerability that allows users to browse the directory
> > tree above the web application's context root by using request URIs
> > including three or more dots ("/...").  Users running on Win2K and Unix
> > systems are *not* susceptible to this vulneratibility.
> >
> > In addition, as with the previous version, an installer-based version of
> > Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> > versions of the mod_webapp connector for Apache.
> >
> > Binary distributions are available at:
> >
> >   http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/
> >
> > Source distributions are available at:
> >
> >
http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/src/
> >
> > Craig McClanahan
> >
> >
>



Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Craig R. McClanahan" <cr...@apache.org>.

On Fri, 10 Aug 2001, chris brown wrote:

> A few questions about the downloads :
> 
> 1./ Windows Installer version
> (I assume this is the .exe in the main download folder ; I would have
> expected it in the "bin" subfolder...).  What does this file actually do?  I
> imagine that it unzips the files and installs Tomcat as a service (using
> jk_nt_service) -- am I correct so far?  Does it do anything else, such as
> modify "httpd.conf" for Apache or any other server setup files (for IIS or
> whatever)?
> 

The ".exe" version is an all-in-one installer (for Windows only) that
installs and configures Tomcat for you (including optionally setting it up
to run as an NT service).  The "bin" directory will contain mod_webapp
binaries for various platforms.

> 2./ mod_webapp
> - Where's the Windows binary?!  The only version I see is for Linux (at
> present).

Pier just got done adding binaries for Mac OSX and Solaris 8 Sparc, and is
working on Solaris 8 Intel and HP/UX 10.20.  We need someone with an
appropriate C compiler to build for Windows ... volunteers?

> - Is this connecter "stable" code?

It's a *lot* better than before, but still beta code.  There are some
known issues mentioned in the release notes.

> - Is it only for Apache 2.0, or can it be used with 1.3.20, etc.?

In fact, it's only for Apache 1.3.

> - Is there any documentation for mod_webapp (I don't know how to use it...)?

The Linux .so file has just been repackaged with documentation (also
included with the other versions).

> - What's the difference between mod_webapp and mod_jk anyway?!

Technically, they are completely different on the inside.  From the user
perspective, mod_webapp was designed to understand what a "web
application" (in the servlet spec's definition) is -- hence the name
:-)  Unlike mod_jk, where you have to configure everything twice (or hope
that the auto-generated config files take care of everything for you),
adding a web app to Apache's httpd.conf file boils down to one statement:

  WebAppDeploy  examples  warpConnection  /examples/

and the connector will configure itself from the web.xml file for the
"/examples" web app (included with Tomcat).

In this version, the connector still hands over all requests for this web
app to Tomcat (including static files).  When final release happens, it
will automatically figure out which requests can be served by Apache
(basically, all static files that are not subject to filtering or a
security constraint) and pass to Tomcat only the required ones.

Since mod_jk is much more mature than mod_webapp at the moment, it has
several other features that mod_webapp does not yet possess (like load
balancing).  These features will be added in later versions of mod_webapp.

> 
> 3./ NT service
> I currently use JavaService, available from
> http://www.alexandriasc.com/software/JavaService/index.html, to run Tomcat
> 3.2.3 as a service.  Is this still possible with Tomcat 4.0, or do I need to
> use jk_nt_service ?
> 

If you use the Windows installer, you get this option automatically.

> Thanks,
> Chris B.
> 

Craig McClanahan


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by chris brown <de...@reflexe.fr>.
A few questions about the downloads :

1./ Windows Installer version
(I assume this is the .exe in the main download folder ; I would have
expected it in the "bin" subfolder...).  What does this file actually do?  I
imagine that it unzips the files and installs Tomcat as a service (using
jk_nt_service) -- am I correct so far?  Does it do anything else, such as
modify "httpd.conf" for Apache or any other server setup files (for IIS or
whatever)?

2./ mod_webapp
- Where's the Windows binary?!  The only version I see is for Linux (at
present).
- Is this connecter "stable" code?
- Is it only for Apache 2.0, or can it be used with 1.3.20, etc.?
- Is there any documentation for mod_webapp (I don't know how to use it...)?
- What's the difference between mod_webapp and mod_jk anyway?!

3./ NT service
I currently use JavaService, available from
http://www.alexandriasc.com/software/JavaService/index.html, to run Tomcat
3.2.3 as a service.  Is this still possible with Tomcat 4.0, or do I need to
use jk_nt_service ?

Thanks,
Chris B.

----- Original Message -----
From: "Craig R. McClanahan" <cr...@apache.org>
To: <an...@jakarta.apache.org>; <ge...@jakarta.apache.org>;
<to...@jakarta.apache.org>; <to...@jakarta.apache.org>
Sent: Friday, August 10, 2001 8:01 AM
Subject: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released


> A release candidate version of Tomcat 4.0, version "beta 7", has been
> released.  This version conforms to the Proposed Final Draft 3 version of
> the Servlet 2.3 and JSP 1.2 specifications, which will go final soon, and
> incorporates all of the latest bugfixes.
>
> In addition, for users who run Tomcat 4.0 on Windows 9x, this release
> fixes a security vulnerability that allows users to browse the directory
> tree above the web application's context root by using request URIs
> including three or more dots ("/...").  Users running on Win2K and Unix
> systems are *not* susceptible to this vulneratibility.
>
> In addition, as with the previous version, an installer-based version of
> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> versions of the mod_webapp connector for Apache.
>
> Binary distributions are available at:
>
>   http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/
>
> Source distributions are available at:
>
>   http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/src/
>
> Craig McClanahan
>
>


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Craig R. McClanahan" <cr...@apache.org>.
On Sat, 11 Aug 2001, Pier P. Fumagalli wrote:

> Pier P. Fumagalli at pier@betaversion.org wrote:
> 
> > Pier P. Fumagalli at pier@betaversion.org wrote:
> > 
> >> Craig R. McClanahan at craigmcc@apache.org wrote:
> >> 
> >>> [...]
> >>> In addition, as with the previous version, an installer-based version of
> >>> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> >>> versions of the mod_webapp connector for Apache.
> >> 
> >> Binary distributions for the WebApp connector are available at:
> >> 
> >> <http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>
> > 
> > Also for Win32 (since MANY people asked!). Those CAN NOT be built from the
> > same sources distribution as the build process for windows was added AFTER
> > 4.0b7 was released, but are built on top of the same sources.
> 
> And good night... It's 5 AM in London and I'm tired :) But I promised I
> would have had binaries for tonight to Craig :) :) :)
> 

And Craig, along with Windows users everywhere, is deeply appreciative !!!

>     Pier
> 
> 

Craig



Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Pier P. Fumagalli at pier@betaversion.org wrote:

> Pier P. Fumagalli at pier@betaversion.org wrote:
> 
>> Craig R. McClanahan at craigmcc@apache.org wrote:
>> 
>>> [...]
>>> In addition, as with the previous version, an installer-based version of
>>> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
>>> versions of the mod_webapp connector for Apache.
>> 
>> Binary distributions for the WebApp connector are available at:
>> 
>> <http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>
> 
> Also for Win32 (since MANY people asked!). Those CAN NOT be built from the
> same sources distribution as the build process for windows was added AFTER
> 4.0b7 was released, but are built on top of the same sources.

And good night... It's 5 AM in London and I'm tired :) But I promised I
would have had binaries for tonight to Craig :) :) :)

    Pier


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Pier P. Fumagalli at pier@betaversion.org wrote:

> Craig R. McClanahan at craigmcc@apache.org wrote:
> 
>> [...]
>> In addition, as with the previous version, an installer-based version of
>> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
>> versions of the mod_webapp connector for Apache.
> 
> Binary distributions for the WebApp connector are available at:
> 
> <http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>

Also for Win32 (since MANY people asked!). Those CAN NOT be built from the
same sources distribution as the build process for windows was added AFTER
4.0b7 was released, but are built on top of the same sources.

To build the WebApp module on your own, check out the CVS version.

    Pier


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Pier P. Fumagalli at pier@betaversion.org wrote:

> Craig R. McClanahan at craigmcc@apache.org wrote:
> 
>> [...]
>> In addition, as with the previous version, an installer-based version of
>> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
>> versions of the mod_webapp connector for Apache.
> 
> Binary distributions for the WebApp connector are available at:
> 
> <http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>

Also for Win32 (since MANY people asked!). Those CAN NOT be built from the
same sources distribution as the build process for windows was added AFTER
4.0b7 was released, but are built on top of the same sources.

To build the WebApp module on your own, check out the CVS version.

    Pier


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Pier P. Fumagalli at pier@betaversion.org wrote:

> Craig R. McClanahan at craigmcc@apache.org wrote:
> 
>> [...]
>> In addition, as with the previous version, an installer-based version of
>> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
>> versions of the mod_webapp connector for Apache.
> 
> Binary distributions for the WebApp connector are available at:
> 
> <http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>

Also for Win32 (since MANY people asked!). Those CAN NOT be built from the
same sources distribution as the build process for windows was added AFTER
4.0b7 was released, but are built on top of the same sources.

To build the WebApp module on your own, check out the CVS version.

    Pier


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@jakarta.apache.org
For additional commands, e-mail: general-help@jakarta.apache.org


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Pier P. Fumagalli at pier@betaversion.org wrote:

> Craig R. McClanahan at craigmcc@apache.org wrote:
> 
>> [...]
>> In addition, as with the previous version, an installer-based version of
>> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
>> versions of the mod_webapp connector for Apache.
> 
> Binary distributions for the WebApp connector are available at:
> 
> <http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>

Also for Win32 (since MANY people asked!). Those CAN NOT be built from the
same sources distribution as the build process for windows was added AFTER
4.0b7 was released, but are built on top of the same sources.

To build the WebApp module on your own, check out the CVS version.

    Pier


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Craig R. McClanahan at craigmcc@apache.org wrote:

> [...]
> In addition, as with the previous version, an installer-based version of
> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> versions of the mod_webapp connector for Apache.

Binary distributions for the WebApp connector are available at:

<http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>




Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Craig R. McClanahan at craigmcc@apache.org wrote:

> [...]
> In addition, as with the previous version, an installer-based version of
> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> versions of the mod_webapp connector for Apache.

Binary distributions for the WebApp connector are available at:

<http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>




Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Craig R. McClanahan at craigmcc@apache.org wrote:

> [...]
> In addition, as with the previous version, an installer-based version of
> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> versions of the mod_webapp connector for Apache.

Binary distributions for the WebApp connector are available at:

<http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>




---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@jakarta.apache.org
For additional commands, e-mail: general-help@jakarta.apache.org


Re: [ANNOUNCEMENT] Tomcat 4.0-beta-7 Released

Posted by "Pier P. Fumagalli" <pi...@betaversion.org>.
Craig R. McClanahan at craigmcc@apache.org wrote:

> [...]
> In addition, as with the previous version, an installer-based version of
> Tomcat 4.0-beta-7 is available for Windows users, as well as native code
> versions of the mod_webapp connector for Apache.

Binary distributions for the WebApp connector are available at:

<http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0-b7/bin>