Tomat 5.0.19 fails to start as a service for win2K

2004-03-06 Thread Ron Andersen
1) When I try to start the Tomcat Service, I receive:
 

The Apache Tomcat service failed to start due to the following error: 

The service did not respond to the start or control request in a timely fashion. 

What am I missing?

2) It works fine when I start via the batch file startup.bat 

 



-
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster.

Re: UserDatabaseRealm 5.0.16 - immediately available for use by the Realm??

2003-12-18 Thread Ron Andersen
After thinking about it, it probably means a user will be immediatley available if 
you/developer use the correct Tomcat API, similar to what the admin console uses.You 
do not have to restart the server.

Kwok Peng Tuck [EMAIL PROTECTED] wrote:I think that is refering to a RDBMS realm. 
Last time I checked, 
tomcat-users.xml
was only read on startup.

Ron Andersen wrote:

1) I configured the default authentication realm - UserDatabaseRealm, which is setup 
to use conf/tomcat-users.xml. However, I am confused about the following statement:
 
This Realm uses the UserDatabase configured in the global JNDI
resources under the key UserDatabase. Any edits that are performed against this 
UserDatabase are immediately available for use by the Realm. 
 
2) Does this mean that I can add user to the conf/tomcat-users.xml and Tomcat will be 
able to authenticate without restarting the server?


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

UserDatabaseRealm 5.0.16 - immediately available for use by the Realm??

2003-12-17 Thread Ron Andersen
1) I configured the default authentication realm - UserDatabaseRealm, which is setup 
to use conf/tomcat-users.xml. However, I am confused about the following statement:
 
This Realm uses the UserDatabase configured in the global JNDI
resources under the key UserDatabase.  Any edits that are performed against this 
UserDatabase are immediately available for use by the Realm.  
 
2) Does this mean that I can add user to the conf/tomcat-users.xml and Tomcat will be 
able to authenticate without restarting the server?


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

RE: Compression 5.0.16 - web.xml or server.xml

2003-12-09 Thread Ron Andersen
Thanks..one last question..does this means if compression is turned on in the 
server.xml and web.xml, compression is attempted twice?? If so, which one should be 
enabled and whcih one should be disabled?

Shapira, Yoav [EMAIL PROTECTED] wrote:
Howdy,
There is a compression filter that ships with tomcat as an example, and
that's what you enabled. The Coyote connector also supports compression
as the documentation indicates, it's just that compression is not
enabled by default so you don't see it in server.xml.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Ron Andersen [mailto:[EMAIL PROTECTED]
Sent: Monday, December 08, 2003 4:39 PM
To: Tomcat Users List
Subject: Compression 5.0.16 - web.xml or server.xml


After reviewing the Tomcat 5. doco for the Coyotte connector (port
808), it
stated that the compresssion attribute is part of the connector tag??

http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/coyote.html

However, after downloading the Tomcat 5.0.16 and reviewing the
connector
tag within server.xml file, I could not find this attribute. After
setting
compression to on in the admin console, it uncommented the
Compression Filter in the WEB-INF/web.xml
file.
However, it still did not add anything to the Coyotte connector. Is the
doco wrong(i.e. should the compression attribute be included in the
Coyotte
connector tag)?

Also, (as stated earlier in an earlier email) there are other
attributes
associated with compression? Which file should they be included in -
server.xml or web.xml???

Jacob Kjome wrote:

You should verify information with the official Tomcat docs before
posting
questions here.
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html

If you don't find the answers in Tomcat's own docs, then don't hesitate
to
ask further questions.

Jake

At 07:39 AM 11/30/2003 -0800, you wrote:
Thanks!

I was reading the Wrox's Professional Tomcat book and it states that
Tomcat's web servers does not support Virtual Hosts. Does it now
support
Virtual Hosts?

Jacob Kjome wrote:

The Coyote connector supports this already. No need to write a servlet
filter. Look in server.xml or the tomcat docs for details.

Jake

At 03:16 PM 11/30/2003 +0100, you wrote:
 Ron Andersen wrote:
 
 Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?
 
 
 Hello,
 
 You can write a ServletFilter, and a HttpServletResponse wrapper to
 achieve the same results.
 
 Look into java.util.zip.*
 
 -- I never said it was easy ;-)
 
 Antonio Fiol
 
 

-
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged. This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else. If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender. Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

RE: Compression 5.0.16 - web.xml or server.xml

2003-12-09 Thread Ron Andersen
Thanks!! :)

Shapira, Yoav [EMAIL PROTECTED] wrote:
Howdy,
Yup, it would be attempted twice (if the request matches both the filter
and the connector, which is the default setup). Personally I prefer the
filter, as it's more portable and not tomcat-specific.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Ron Andersen [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 09, 2003 9:30 AM
To: Tomcat Users List
Subject: RE: Compression 5.0.16 - web.xml or server.xml

Thanks..one last question..does this means if compression is turned on
in
the server.xml and web.xml, compression is attempted twice?? If so,
which
one should be enabled and whcih one should be disabled?

Shapira, Yoav wrote:
Howdy,
There is a compression filter that ships with tomcat as an example, and
that's what you enabled. The Coyote connector also supports compression
as the documentation indicates, it's just that compression is not
enabled by default so you don't see it in server.xml.

Yoav Shapira
Millennium ChemInformatics


-Original Message-
From: Ron Andersen [mailto:[EMAIL PROTECTED]
Sent: Monday, December 08, 2003 4:39 PM
To: Tomcat Users List
Subject: Compression 5.0.16 - web.xml or server.xml


After reviewing the Tomcat 5. doco for the Coyotte connector (port
808), it
stated that the compresssion attribute is part of the connector tag??

http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/coyote.html

However, after downloading the Tomcat 5.0.16 and reviewing the
connector
tag within server.xml file, I could not find this attribute. After
setting
compression to on in the admin console, it uncommented the
Compression Filter in the WEB-INF/web.xml
file.
However, it still did not add anything to the Coyotte connector. Is
the
doco wrong(i.e. should the compression attribute be included in the
Coyotte
connector tag)?

Also, (as stated earlier in an earlier email) there are other
attributes
associated with compression? Which file should they be included in -
server.xml or web.xml???

Jacob Kjome wrote:

You should verify information with the official Tomcat docs before
posting
questions here.
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html

If you don't find the answers in Tomcat's own docs, then don't
hesitate
to
ask further questions.

Jake

At 07:39 AM 11/30/2003 -0800, you wrote:
Thanks!

I was reading the Wrox's Professional Tomcat book and it states
that
Tomcat's web servers does not support Virtual Hosts. Does it now
support
Virtual Hosts?

Jacob Kjome wrote:

The Coyote connector supports this already. No need to write a
servlet
filter. Look in server.xml or the tomcat docs for details.

Jake

At 03:16 PM 11/30/2003 +0100, you wrote:
 Ron Andersen wrote:
 
 Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?
 
 
 Hello,
 
 You can write a ServletFilter, and a HttpServletResponse wrapper to
 achieve the same results.
 
 Look into java.util.zip.*
 
 -- I never said it was easy ;-)
 
 Antonio Fiol
 
 

-
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail:
[EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard



This e-mail, including any attachments, is a confidential business
communication, and may contain information that is confidential,
proprietary and/or privileged. This e-mail is intended only for the
individual(s) to whom it is addressed, and may not be saved, copied,
printed, disclosed or used by anyone else. If you are not the(an)
intended
recipient, please immediately delete this e-mail from your computer
system
and notify the sender. Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged. This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else. If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender. Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED

Confusing - Compression 5.0.16 - Filter or connector???

2003-12-09 Thread Ron Andersen
I am only using one platform and I need the best performance, since I will be 
compressing images. Therefore, if I use the connector compression, shall I turn the 
filter compression off(in web.xml). Also, does the connector(in server.xml) support 
the following attributes??
 
compression=on 
   compressionMinSize=2048 
   noCompressionUserAgents=gozilla, traviata 
   compressableMimeType=text/html,text/xml


Remy Maucherat [EMAIL PROTECTED] wrote:
Shapira, Yoav wrote:
 Howdy,
 Yup, it would be attempted twice (if the request matches both the filter
 and the connector, which is the default setup). Personally I prefer the
 filter, as it's more portable and not tomcat-specific.

I prefer the connector, since it's faster and more powerful (you get the 
regexp based exception list Henri added, etc) :)
If we (ever) get a gz impl that isn't an output stream and could work on 
straight byte arrays, we'd also be able to do the compression without 
facade objects at all, which would have the best performance.

-- 
x
Rémy Maucherat
Senior Developer  Consultant
JBoss Group (Europe) SàRL
x


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Re: including a page outside webapp

2003-12-09 Thread Ron Andersen
Did you turn on SSI support??
 
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/ssi-howto.html


Kumar, Sumit [EMAIL PROTECTED] wrote:
Hi,

I want to include a html header in my jsp page. However that html is not
located in the same webapp. It is actually not located in any webapp but in
a different folder. I tried using the following syntax but doesn't finds
the file.

Any comments?

Thanks
-sumit



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Compression 5.0.16 - web.xml or server.xml

2003-12-08 Thread Ron Andersen
 
After reviewing the Tomcat 5. doco for the Coyotte connector (port 808), it stated 
that the compresssion attribute is part of the connector tag?? 
 
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/coyote.html
 
However, after downloading the Tomcat 5.0.16 and reviewing the connector tag within 
server.xml file, I could not find this attribute. After setting compression to on in 
the admin console, it uncommented the 
filter-nameCompression Filter/filter-name in the WEB-INF/web.xml file. However, it 
still did not add anything to the Coyotte connector. Is the doco wrong(i.e. should the 
compression attribute be included in the Coyotte connector tag)?
 
Also, (as stated earlier in an earlier email) there are other attributes associated 
with compression? Which file should they be included in - server.xml or web.xml???

Jacob Kjome [EMAIL PROTECTED] wrote:

You should verify information with the official Tomcat docs before posting 
questions here.
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html

If you don't find the answers in Tomcat's own docs, then don't hesitate to 
ask further questions.

Jake

At 07:39 AM 11/30/2003 -0800, you wrote:
Thanks!

I was reading the Wrox's Professional Tomcat book and it states that 
Tomcat's web servers does not support Virtual Hosts. Does it now support 
Virtual Hosts?

Jacob Kjome wrote:

The Coyote connector supports this already. No need to write a servlet
filter. Look in server.xml or the tomcat docs for details.

Jake

At 03:16 PM 11/30/2003 +0100, you wrote:
 Ron Andersen wrote:
 
 Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?
 
 
 Hello,
 
 You can write a ServletFilter, and a HttpServletResponse wrapper to
 achieve the same results.
 
 Look into java.util.zip.*
 
 -- I never said it was easy ;-)
 
 Antonio Fiol
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Re: SSL - FileNotFoundException (Access is denied)

2003-12-07 Thread Ron Andersen
Thank you! I wil add it to the Connector tag!!

Bill Barker [EMAIL PROTECTED] wrote:You need to put the full path to the file 
(including the file name :) for
the keystore. Also, for future reference, the tag is deprecated
in Tomcat 5. You should set the attributes on the tag instead.

Ron Andersen wrote in message
news:[EMAIL PROTECTED]
 Installed SSL by the following(ADV Server 2000 and tomcat build 5.0.16):

 1) Creating the keystore file
 2) Added attribute keystoreFile to the tag
 3)Added path C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf
to keystoreFile
 4) Restarted Tomcat (logged in as Administrator) and received the
following error:


 Dec 6, 2003 2:23:57 PM org.apache.coyote.http11.Http11Protocol init
 INFO: Initializing Coyote HTTP/1.1 on port 8080
 Dec 6, 2003 2:23:57 PM org.apache.coyote.http11.Http11Protocol init
 SEVERE: Error initializing endpoint
 java.io.FileNotFoundException: C:\Program Files\Apache Software
Foundation\Tomcat 5.0\conf (Access is denied)
 at java.io.FileInputStream.open(Native Method)
 at java.io.FileInputStream.(Unknown Source)
 at java.io.FileInputStream.(Unknown Source)
 at
org.apache.tomcat.util.net.jsse.JSSESocketFactory.getStore(JSSESocketFactory
.java:294)
 at
org.apache.tomcat.util.net.jsse.JSSESocketFactory.getKeystore(JSSESocketFact
ory.java:259)
 at
org.apache.tomcat.util.net.jsse.JSSE14SocketFactory.getKeyManagers(JSSE14Soc
ketFactory.java:172)
 at
org.apache.tomcat.util.net.jsse.JSSE14SocketFactory.init(JSSE14SocketFactory
.java:138)
 at
org.apache.tomcat.util.net.jsse.JSSESocketFactory.createSocket(JSSESocketFac
tory.java:127)
 at
org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java
:297)
 at org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:184)
 at
org.apache.coyote.tomcat5.CoyoteConnector.initialize(CoyoteConnector.java:13
66)
 at
org.apache.catalina.core.StandardService.initialize(StandardService.java:633
)
 at
org.apache.catalina.core.StandardServer.initialize(StandardServer.java:2413)
 at org.apache.catalina.startup.Catalina.load(Catalina.java:532)
 at org.apache.catalina.startup.Catalina.load(Catalina.java:553)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
 at java.lang.reflect.Method.invoke(Unknown Source)
 at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:260)
 at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:397)
 Dec 6, 2003 2:23:57 PM org.apache.catalina.startup.Catalina load


 -
 Do you Yahoo!?
 Protect your identity with Yahoo! Mail AddressGuard




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

SSL - FileNotFoundException (Access is denied)

2003-12-06 Thread Ron Andersen
Installed SSL by the following(ADV Server 2000 and tomcat build 5.0.16):
 
1) Creating the keystore file
2) Added attribute keystoreFile to the Factory tag
3)Added path C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf to 
keystoreFile 
4) Restarted Tomcat (logged in as Administrator) and received the following error:
 
 
Dec 6, 2003 2:23:57 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on port 8080
Dec 6, 2003 2:23:57 PM org.apache.coyote.http11.Http11Protocol init
SEVERE: Error initializing endpoint
java.io.FileNotFoundException: C:\Program Files\Apache Software Foundation\Tomcat 
5.0\conf (Access is denied)
 at java.io.FileInputStream.open(Native Method)
 at java.io.FileInputStream.init(Unknown Source)
 at java.io.FileInputStream.init(Unknown Source)
 at 
org.apache.tomcat.util.net.jsse.JSSESocketFactory.getStore(JSSESocketFactory.java:294)
 at 
org.apache.tomcat.util.net.jsse.JSSESocketFactory.getKeystore(JSSESocketFactory.java:259)
 at 
org.apache.tomcat.util.net.jsse.JSSE14SocketFactory.getKeyManagers(JSSE14SocketFactory.java:172)
 at 
org.apache.tomcat.util.net.jsse.JSSE14SocketFactory.init(JSSE14SocketFactory.java:138)
 at 
org.apache.tomcat.util.net.jsse.JSSESocketFactory.createSocket(JSSESocketFactory.java:127)
 at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:297)
 at org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:184)
 at org.apache.coyote.tomcat5.CoyoteConnector.initialize(CoyoteConnector.java:1366)
 at org.apache.catalina.core.StandardService.initialize(StandardService.java:633)
 at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:2413)
 at org.apache.catalina.startup.Catalina.load(Catalina.java:532)
 at org.apache.catalina.startup.Catalina.load(Catalina.java:553)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
 at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
 at java.lang.reflect.Method.invoke(Unknown Source)
 at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:260)
 at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:397)
Dec 6, 2003 2:23:57 PM org.apache.catalina.startup.Catalina load


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Compression and server.xml file 5.0.14??

2003-12-01 Thread Ron Andersen
 
 
The sample server.xml includes the followng attributes for the Connector XML tag:
 
compression=on 
   compressionMinSize=2048 
   noCompressionUserAgents=gozilla, traviata 
   compressableMimeType=text/html,text/xml

 
In the admin console, I set the compression setting to no. After reviewing the 
server.xml file, it did not include any compression properties. 
 
Questions:
 
1) Is this a bug; that is, after using the admin console to update the compression 
setiing, should the server.xml file include the (above) compression attributes.
2) If not, where do you set these setting(i.e. compressionMinSize) via the admin 
console?


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Ron Andersen
Thanks! 
 
I was reading the Wrox's Professional Tomcat book and it states that Tomcat's web 
servers does not support Virtual Hosts. Does it now support Virtual Hosts?

Jacob Kjome [EMAIL PROTECTED] wrote:

The Coyote connector supports this already. No need to write a servlet 
filter. Look in server.xml or the tomcat docs for details.

Jake

At 03:16 PM 11/30/2003 +0100, you wrote:
Ron Andersen wrote:

Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?


Hello,

You can write a ServletFilter, and a HttpServletResponse wrapper to 
achieve the same results.

Look into java.util.zip.*

-- I never said it was easy ;-)

Antonio Fiol


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Ron Andersen
ok..but by the way..it would be extremely helpful if Tomcat's web site would have 
search functinality..

Jacob Kjome [EMAIL PROTECTED] wrote:
You should verify information with the official Tomcat docs before posting 
questions here.
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html

If you don't find the answers in Tomcat's own docs, then don't hesitate to 
ask further questions.

Jake

At 07:39 AM 11/30/2003 -0800, you wrote:
Thanks!

I was reading the Wrox's Professional Tomcat book and it states that 
Tomcat's web servers does not support Virtual Hosts. Does it now support 
Virtual Hosts?

Jacob Kjome wrote:

The Coyote connector supports this already. No need to write a servlet
filter. Look in server.xml or the tomcat docs for details.

Jake

At 03:16 PM 11/30/2003 +0100, you wrote:
 Ron Andersen wrote:
 
 Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?
 
 
 Hello,
 
 You can write a ServletFilter, and a HttpServletResponse wrapper to
 achieve the same results.
 
 Look into java.util.zip.*
 
 -- I never said it was easy ;-)
 
 Antonio Fiol
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Tomcat 5.0 web server - virtual hosts?

2003-11-29 Thread Ron Andersen
Does Tomcat's 5.0 web server support virtual hosts?


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

GZIP-encoding/mod_gzip and Tomcat??

2003-11-28 Thread Ron Andersen
Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?


-
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard

Dynamic Authenticator

2003-10-14 Thread Ron Andersen
Does anyone know of a good authentictor plugin for Tomcat. I reviewed the sample(XML 
based) authentcator from Tomcat, but this authenicator is only used at startup. I need 
onw that will able to add and delete users on the fly - not just at start up. 


-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Jav Options

2003-10-13 Thread Ron Andersen
I stalled Tomcat 5.0 on Win2K adv server.. When I try to start it, it loggs the 
following in the log file:
 
Unrecognized option: -Xrs
 
The Java optionsettings are:
 
-Dcatalina.home=F:\Program Files\Apache Software Foundation\Tomcat 5.0
-Djava.endorsed.dirs=F:\Program Files\Apache Software Foundation\Tomcat 
5.0\common\endorsed
-Xrs

Env variables are setup as follows:
 
PATH = F:\JDK1.3\BIN;
TOMCAT_HOME = F:\Program Files\Apache Software Foundation\Tomcat 5.0


-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

RE: Jav Options

2003-10-13 Thread Ron Andersen
Did I missed this from the setup doco, or is this(JDK1.4) missing :) ?

Larry Isaacs [EMAIL PROTECTED] wrote:I believe you will need JDK 1.3.1, or later, to 
get the -Xrs
option. It was added to fix the logout problem JDK 1.3.

Cheers,
Larry

 -Original Message-
 From: Ron Andersen [mailto:[EMAIL PROTECTED] 
 Sent: Monday, October 13, 2003 1:59 PM
 To: [EMAIL PROTECTED]
 Subject: Jav Options
 
 
 I stalled Tomcat 5.0 on Win2K adv server.. When I try to 
 start it, it loggs the following in the log file:
 
 Unrecognized option: -Xrs
 
 The Java optionsettings are:
 
 -Dcatalina.home=F:\Program Files\Apache Software 
 Foundation\Tomcat 5.0 -Djava.endorsed.dirs=F:\Program 
 Files\Apache Software Foundation\Tomcat 5.0\common\endorsed -Xrs
 
 Env variables are setup as follows:
 
 PATH = F:\JDK1.3\BIN;
 TOMCAT_HOME = F:\Program Files\Apache Software Foundation\Tomcat 5.0
 
 
 -
 Do you Yahoo!?
 The New Yahoo! Shopping - with improved product search
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search