Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Vidar Langberget
I understand that you can't put every object you want to cache in the servletcontext, and a holder/wrapper object is needed. But you still need to call servletContext.getAttribute() once for every request. The question is: Does it matter performance-wise if the objects you store in the

RE: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Peter Guyatt
Hi there, It will be a direct reference thanks Pete -Original Message- From: Vidar Langberget [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 14:00 To: Tomcat Users List Subject: Re: Accessing objects with any servlets, where the object is already pre-created I understand that you

RE: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Tom Lyle
In fact, you can have one object in your servletContext which holds ALL of your data. I see how this approach works, but does it have any advantages over using one object that has static methods to access its data? For example I have a Config class that has a static initialisation block that

Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Tim Funk
Static classes should be avoided as a general practice since they can may have classloading issues and painful side effects. See the archives for more detail. Static classes do work but they might have pitfalls depending on changing containers or deployment strategies. -Tim Tom Lyle wrote:

Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread srevilak
funkman Static classes should be avoided as a general practice since funkman they can may have classloading issues and painful side funkman effects. See the archives for more detail. Static classes do funkman work but they might have pitfalls depending on changing funkman containers or deployment

Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread Tim Funk
Static methods are ok. But static data such as singletons cause many questions in the list (a quick 30 second search turned these up): http://marc.theaimsgroup.com/?l=tomcat-userm=106002134305089w=2 http://marc.theaimsgroup.com/?l=tomcat-userm=105569056504526w=2

Re: Accessing objects with any servlets, where the object is already pre-created

2003-10-07 Thread srevilak
to avoid it. Static by itself is tricky for some to comprehend. Oh, I see what you mean. Tomcat's use of multiple classloaders does present you with somewhat of a qualified notion of what a singleton is. If the class lives in CATALINA_BASE/shared, you get a `real' Singleton where one instance

where the heck is JK2 log?

2003-10-01 Thread Joe Barefoot
using several different reg. keys per the documentation to indicate where the log file should go, but no dice. It also doesn't show up under ${serverRoot}/logs, as a casual glance at the source code would seem to indicate. I have the logLevel set to DEBUG, but I have no idea where the log messages

Where is the Client Deployer Package?

2003-09-29 Thread Ilja
I just cannot find the Client Deployer Package which is mentioned here: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/deployer-howto.html Anyone who knows? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: Where is the Client Deployer Package?

2003-09-29 Thread Shapira, Yoav
To: [EMAIL PROTECTED] Subject: Where is the Client Deployer Package? I just cannot find the Client Deployer Package which is mentioned here: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/deployer-howto.html Anyone who knows

Re: Where should I put properties files

2003-09-19 Thread Christopher Williams
Configuration files are a problem area in Java, particularly J2EE. You can: 1. Use a Preferences object (although I personally have found this quite painful - you need to provide a UI to set up and administer your preferences and system preferences require admin privileges on Windows). 2. Put

RE: Where should I put properties files

2003-09-19 Thread Shapira, Yoav
; [EMAIL PROTECTED] Subject: Re: Where should I put properties files Configuration files are a problem area in Java, particularly J2EE. You can: 1. Use a Preferences object (although I personally have found this quite painful - you need to provide a UI to set up and administer your preferences and system

RE: Where should I put properties files

2003-09-19 Thread Michael D. Spence
-Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 9:14 AM To: [EMAIL PROTECTED] Subject: RE: Where should I put properties files Don't do this in the constructor of your servlet, as it's not initialized yet. Do it in the init

Where should I put properties files

2003-09-18 Thread Michael D. Spence
I have a web service (call it XYZ) which requires a .properties file. I had been putting it in %CATALINA_HOME%\webapps\axis\services\XYZ, with the classes in %CATALINA_HOME%\webapps\axis\services\WEB_INF\classes and using this to open the properties file. File PFile = new File(webapps +

Where should I put properties files (corrected, sorry)

2003-09-18 Thread Michael D. Spence
I have a web service (call it XYZ) which requires a .properties file. I had been putting it in %CATALINA_HOME%\webapps\axis\services\XYZ, with the classes in %CATALINA_HOME%\webapps\axis\services\WEB_INF\classes and using this to open the properties file. File PFile = new File(webapps +

RE: Where should I put properties files

2003-09-18 Thread Shapira, Yoav
#getResource or ServletContext#getResourceAsStream. Yoav Shapira Millennium ChemInformatics -Original Message- From: Michael D. Spence [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 10:57 AM To: [EMAIL PROTECTED] Subject: Where should I put properties files I have a web service (call

Where To Put Resource Bundles?

2003-09-18 Thread Michael Duffy
I'd like to externalize my exception messages in a resource bundle. Where is the generally-accepted place to put them? Thanks - MOD __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software http://sitebuilder.yahoo.com

RE: Where To Put Resource Bundles?

2003-09-18 Thread Lee, Paul NYC
To: [EMAIL PROTECTED] Subject: Where To Put Resource Bundles? I'd like to externalize my exception messages in a resource bundle. Where is the generally-accepted place to put them? Thanks - MOD __ Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site

RE: Where should I put properties files

2003-09-18 Thread Michael D. Spence
-Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 11:09 AM To: Tomcat Users List; [EMAIL PROTECTED] Subject: RE: Where should I put properties files Howdy, This is a FAQ, you could read the archives, but here's a summary

RE: Where To Put Resource Bundles?

2003-09-18 Thread Michael Duffy
in your existing classpath. -Paul -Original Message- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 1:46 PM To: [EMAIL PROTECTED] Subject: Where To Put Resource Bundles? I'd like to externalize my exception messages in a resource bundle

RE: Where should I put properties files

2003-09-18 Thread Shapira, Yoav
Howdy, I hate to be totally ignorant, but I can't seem to discover how my web service class gets access to ServletContext. I'm sure there's some static method in Axis that I can call, but I've just been rooting around in the source for about two hours, to no avail. It depends what your web

RE: Where should I put properties files

2003-09-18 Thread Michael D. Spence
Users List Subject: RE: Where should I put properties files Howdy, I hate to be totally ignorant, but I can't seem to discover how my web service class gets access to ServletContext. I'm sure there's some static method in Axis that I can call, but I've just been rooting around

Where does tomcat-jk2.jar come from?

2003-09-08 Thread Jon Skeet
I'm still on the trail of bug 17193, and I'd quite like to see if I can fix it myself. Unfortunately, I've run into a problem at the very first hurdle - finding the source! Catalina has tomcat-jk2.jar in the server/lib directory, but where does this come from in the first place? The source

where is JkWorkerFile

2003-09-08 Thread Eugene Lee
Trying to get mod_jk2 working, and Apache 2 complains in its error logs: No worker file and no worker options in httpd.conf use JkWorkerFile to set workers Now I do have a JkWorkersFile directive, but it's in an external file that is Include'd inside a VirtualHost block.

Re: Where does tomcat-jk2.jar come from?

2003-09-08 Thread Bill Barker
if I can fix it myself. Unfortunately, I've run into a problem at the very first hurdle - finding the source! Catalina has tomcat-jk2.jar in the server/lib directory, but where does this come from in the first place? The source doesn't seem to be in the main 4.1.27 source archive. Any offers? Jon

Re: where is JkWorkerFile

2003-09-08 Thread Bill Barker
Firstly, mod_jk2 doesn't have a JkWorkerFile directive. Secondly, for mod_jk this directive needs to be at top-level (i.e. it can't appear in a VHost). Eugene Lee [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Trying to get mod_jk2 working, and Apache 2 complains in its error logs:

RE: where is JSESSIONID?

2003-08-16 Thread Craig Berry
As that's a session-scope cookie, it doesn't get persisted as a file. -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED] Sent: Fri 8/15/2003 6:41 PM To: Tomcat Users List Cc: Subject: where is JSESSIONID

where is JSESSIONID?

2003-08-15 Thread Billy Ng
Hi folks; Anybody knows where is the JSESSIONID cookie is? I search the whole Cookies folder, I can't find it. Billy Ng This mailbox protected from junk email by Matador from MailFrontier, Inc. http://info.mailfrontier.com

Where to find jakarte-tomcat-jasper src tarball???

2003-08-14 Thread David Kramer
I have searched all over the web looking for this tarball. I found the CVS repository that contains the individual files for jasper, but there was no download tarball link. Im new to Apache's CVS so maybe Im missing something simple here. I roamed through the viewCVS website but found nothing

RE: Where to find jakarte-tomcat-jasper src tarball???

2003-08-14 Thread David Kramer
PROTECTED] Sent: Wednesday, August 13, 2003 8:01 PM To: [EMAIL PROTECTED] Subject: Re: Where to find jakarte-tomcat-jasper src tarball??? It is packaged with the 4.1.x tarball (ditto for 5.0.x). You'll find it in the 'jasper' directory where you unpacked the tarball. David Kramer

RE: Where can i set Groups and user roles?

2003-08-14 Thread Murray
Euclides da Silva Junior - DATAPREVRJ [mailto:[EMAIL PROTECTED] Sent: Tuesday, 5 August 2003 06:01 To: '[EMAIL PROTECTED]' Subject: Where can i set Groups and user roles? Hi guys, my application should ask for user's authentication and then, associate him to some skills. My question is easy: what

Re: Where to find jakarte-tomcat-jasper src tarball???

2003-08-14 Thread Liem Do
:13 PM Subject: Where to find jakarte-tomcat-jasper src tarball??? I have searched all over the web looking for this tarball. I found the CVS repository that contains the individual files for jasper, but there was no download tarball link. Im new to Apache's CVS so maybe Im missing something

Re: Where to find jakarte-tomcat-jasper src tarball???

2003-08-14 Thread Ben Souther
Why not get a CVS client like jcvs (jsvs.org) or wincvs and download the whole project? On Wednesday 13 August 2003 07:13 pm, you wrote: I have searched all over the web looking for this tarball. I found the CVS repository that contains the individual files for jasper, but there was no

Re: Where to put js scripts on tomcat server...

2003-08-14 Thread Jacob Kjome
access to it. Here is where it would physically exist in your webapp... /webapps/mycontext/filename.js Jake At 08:48 PM 8/11/2003 -0400, you wrote: Greetings, I assume this has been asked before, but I can't seem to track it down in the archives or any other document I have found. I am having

Where to put js scripts on tomcat server...

2003-08-14 Thread Don Reese
Greetings, I assume this has been asked before, but I can't seem to track it down in the archives or any other document I have found. I am having trouble inserting a script type=text/javascript language=javascript src=filename.js/script into my HTML output and the browser being able to find

RE: Where can I find mod_jk-2.0.47.so?

2003-08-14 Thread Raible, Matt
Sent: Wednesday, August 06, 2003 10:18 AM To: '[EMAIL PROTECTED]' Subject: Where can I find mod_jk-2.0.47.so? Anyone know where I can download mod_jk-2.0.47.so for Apache 2.0.47 on RH 9? The closest I could find was 2.0.46 for RH 7.2 at: http://tinyurl.com/j6hf Thanks, Matt

Re: Where to find jakarte-tomcat-jasper src tarball???

2003-08-14 Thread Bill Barker
It is packaged with the 4.1.x tarball (ditto for 5.0.x). You'll find it in the 'jasper' directory where you unpacked the tarball. David Kramer [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I have searched all over the web looking for this tarball. I found the CVS repository

Re: Where to put js scripts on tomcat server...

2003-08-14 Thread Don Reese
Hi Jacob, With your confirmation as to where the files should be, I was able to track down the issue and it is now resolved. Case sensitivity was the issue - fixed that and now all is well. Don Reese - Original Message - From: Jacob Kjome [EMAIL PROTECTED] To: Tomcat Users List [EMAIL

Re: Where can I find mod_jk-2.0.47.so?

2003-08-06 Thread Rick Roberts
* *** Raible, Matt wrote: Anyone know where I can download mod_jk-2.0.47.so for Apache 2.0.47 on RH 9? The closest I could find was 2.0.46 for RH 7.2 at: http://tinyurl.com/j6hf Thanks, Matt

Where can I find mod_jk-2.0.47.so?

2003-08-06 Thread Raible, Matt
Anyone know where I can download mod_jk-2.0.47.so for Apache 2.0.47 on RH 9? The closest I could find was 2.0.46 for RH 7.2 at: http://tinyurl.com/j6hf Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RES: Where can i set Groups and user roles?

2003-08-06 Thread Jose Euclides da Silva Junior - DATAPREVRJ
what view the user will deal with. Thanks Murray. -Mensagem original- De: Murray [mailto:[EMAIL PROTECTED] Enviada em: segunda-feira, 4 de agosto de 2003 22:26 Para: Tomcat Users List Assunto: RE: Where can i set Groups and user roles? Euclides, Try starting tomcat then look

Where can i set Groups and user roles?

2003-08-04 Thread Jose Euclides da Silva Junior - DATAPREVRJ
Hi guys, my application should ask for user's authentication and then, associate him to some skills. My question is easy: what is the easiest way to make it possible on TomCat's environment? Is there any xml tag? Thanks in advance, Euclides.

RE: Where can i set Groups and user roles?

2003-08-04 Thread Shapira, Yoav
Howdy, You mean like tomcat-users.xml where you can define roles and users? Yoav Shapira Millennium ChemInformatics -Original Message- From: Jose Euclides da Silva Junior - DATAPREVRJ [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2003 4:01 PM To: '[EMAIL PROTECTED]' Subject: Where

RES: Where can i set Groups and user roles?

2003-08-04 Thread Jose Euclides da Silva Junior - DATAPREVRJ
PROTECTED] Enviada em: segunda-feira, 4 de agosto de 2003 17:09 Para: Tomcat Users List Assunto: RE: Where can i set Groups and user roles? Howdy, You mean like tomcat-users.xml where you can define roles and users? Yoav Shapira Millennium ChemInformatics -Original Message- From: Jose

Where does index.jsp come from

2003-07-31 Thread batristain
Greetings, I set up Tomcat again but I'm seeing this page http://gdttest.mgnetwork.com:8080/index.jsp - which is good except I can't figure out what to uncomment b/c there is no index.jsp in my webapps folder?? Thanks, Bobbie Bobbie Atristain Internet Systems Administrator Media General, INC.

RE: Where does index.jsp come from

2003-07-31 Thread Moraes, Fabio
try looking at webaaps/ROOT directory. --- Fabio Moraes [EMAIL PROTECTED] System Engineer Work Force Management System +55 21 3088 9548 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 11:35 To: [EMAIL PROTECTED] Subject: Where

Re: Where does index.jsp come from

2003-07-31 Thread John Turner
$CATALINA_HOME/webapps/ROOT/index.jsp John [EMAIL PROTECTED] wrote: Greetings, I set up Tomcat again but I'm seeing this page http://gdttest.mgnetwork.com:8080/index.jsp - which is good except I can't figure out what to uncomment b/c there is no index.jsp in my webapps folder?? Thanks, Bobbie

Re: Tomcat4, where is classpath set when run as service

2003-07-31 Thread Paul
with the code i have written. thanks all, -paul lomack - Original Message - From: John Turner [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 4:39 PM Subject: Re: Tomcat4, where is classpath set when run as service Check the ClassLoader HOWTO

Re: Where does index.jsp come from

2003-07-31 Thread Andoni
That page is not an index.jsp. it is: tomcat dir/webapps/ROOT/index.html HTH. Andoni. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 31, 2003 3:35 PM Subject: Where does index.jsp come from Greetings, I set up Tomcat again but I'm seeing

Tomcat4, where is classpath set when run as service

2003-07-30 Thread Paul
Hi Folks, Does anyone know where the classpath is set for Tomcat 4.1, when Tomcat4 is started and runs as a win2k service? thanks in advance for any help, paul lomack

Re: Tomcat4, where is classpath set when run as service

2003-07-30 Thread John Turner
It isn't. Tomcat 4.1 uses the CATALINA_HOME and JAVA_HOME environment variables (defined at the System level) to build a classpath at startup. John Paul wrote: Hi Folks, Does anyone know where the classpath is set for Tomcat 4.1, when Tomcat4 is started and runs as a win2k service? thanks

Re: Tomcat4, where is classpath set when run as service

2003-07-30 Thread Paul
: Wednesday, July 30, 2003 3:47 PM Subject: Re: Tomcat4, where is classpath set when run as service It isn't. Tomcat 4.1 uses the CATALINA_HOME and JAVA_HOME environment variables (defined at the System level) to build a classpath at startup. John Paul wrote: Hi Folks, Does anyone know

Re: Tomcat4, where is classpath set when run as service

2003-07-30 Thread John Turner
Check the ClassLoader HOWTO, it explains exactly where you can put class and JAR files so that Tomcat and your web apps can find them (.zip files don't work, but you can change the extension to .jar): http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html John Paul wrote: Hi

RE: Tomcat4, where is classpath set when run as service

2003-07-30 Thread Koes, Derrick
-Djava.endorsed.dirs=$CATALINA_HOME$\common\endorsed -Dcatalina.home=$CATALINA_HOME$ -start org.apache.catalina.startup.BootstrapService -params start -stop org.apache.catalina.startup.BootstrapService -params stop -err $CATALINA_HOME$\logs\stderr.log replacing $CATALINA_HOME$ and $JAVA_HOME$ where appropriate

RE: Tomcat4, where is classpath set when run as service

2003-07-30 Thread John Corrigan
To: Tomcat Users List Subject: Re: Tomcat4, where is classpath set when run as service Hi John, thanks for reply. How would one go about adding .jar or .zip files to the classpath given it is created as you say when tomcat starts as a win2k service? paul lomack - Original Message

Re: Tomcat4, where is classpath set when run as service

2003-07-30 Thread John Turner
I'm pretty sure. Editing the registry is possible, so is editing the startup scripts. That doesn't mean its advisable, or portable. Tomcat has a pretty robust ClassLoader architecture specifically designed to load classes that it needs. Why not use it instead of mucking about with the

RE: Tomcat4, where is classpath set when run as service

2003-07-30 Thread John Corrigan
: John Turner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 2:02 PM To: Tomcat Users List Subject: Re: Tomcat4, where is classpath set when run as service I'm pretty sure. Editing the registry is possible, so is editing the startup scripts. That doesn't mean its advisable, or portable

Re: Tomcat4, where is classpath set when run as service

2003-07-30 Thread John Turner
I'm no Windows server admin, I'm not acquainted with the finer details of Windows services. If they're not needed, I stand corrected. My intent was to encourage the original poster to consider the functionality Tomcat has by default to achieve his goal, not to render an authoritative answer

RE: Where are translated classes stored in Tomcat 5??

2003-07-28 Thread Shapira, Yoav
: Where are translated classes stored in Tomcat 5?? Hello again, I can't find any trace of the translated classes in the $catalina_home\work directory for the web application I am working on. How do I configure tomcat in order for the translated files to go there? Note that I am using jwsdp 1.2

Where are translated classes stored in Tomcat 5??

2003-07-27 Thread Julien Martin
- From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, July 27, 2003 12:45 AM Subject: Re: Where are translated classes stored in Tomcat 5?? Same spot as 4. Somewhere beneath $CATALINA_HOME/work - its just a little deeper in the dir structure. -Tim

Re: Where are translated classes stored in Tomcat 5??

2003-07-27 Thread Tim Funk
. Thanks in adavance, Julien. - Original Message - From: Tim Funk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, July 27, 2003 12:45 AM Subject: Re: Where are translated classes stored in Tomcat 5?? Same spot as 4. Somewhere beneath $CATALINA_HOME/work - its just

Where are translated classes stored in Tomcat 5??

2003-07-26 Thread Julien Martin
Hello, I am having some problems with tomcat5. I don't know where translated files (something_jsp.java) are stored. It used to be stored in %catalina_home%\work\catalina\localhost\myapp for an app called myapp in tomcat 4x and I can't find the file anymore now. Can you help? Thanks

Re: Where are translated classes stored in Tomcat 5??

2003-07-26 Thread Micael
The xml should tell you where it is. At 11:25 PM 7/26/2003 +0200, Julien Martin wrote: Hello, I am having some problems with tomcat5. I don't know where translated files (something_jsp.java) are stored. It used to be stored in %catalina_home%\work\catalina\localhost\myapp for an app called

Re: Where are translated classes stored in Tomcat 5??

2003-07-26 Thread Tim Funk
Same spot as 4. Somewhere beneath $CATALINA_HOME/work - its just a little deeper in the dir structure. -Tim Julien Martin wrote: Hello, I am having some problems with tomcat5. I don't know where translated files (something_jsp.java) are stored. It used to be stored in %catalina_home%\work

Re: where is sign.sh from mod_ssl ???

2003-07-25 Thread Bill Barker
It seems that it is only distributed with the Apache-1.3.x version of mod_ssl. In my experience, it is usually worth the trouble in the long run to do a full setup for a CA (i.e. what 'openssl ca ...' expects) if you need to issue your own certs. [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: where is sign.sh from mod_ssl ???

2003-07-25 Thread achana
Hi! I am going throug a couple of books (O'Reilly OpenSSL and SAM Maxum Apache Security) and HOWTOs, I haven't come across instructions to set up a CA yet. Can you please oint me in the right direction ? TIA :( Bill Barker wrote: It seems that it is only distributed with the Apache-1.3.x

Re: where is sign.sh from mod_ssl ???

2003-07-25 Thread Simon Pabst
A good HOWTO about Certificate Management and creating your own CA is on http://www.tldp.org/HOWTO/SSL-Certificates-HOWTO/c118.html Another one is here: http://www.corserv.com/freebsd/apache-ssl-howto.html (not so detailed, but not that good either) At 15:28 25.07.2003 +1000, you wrote: Hi! I am

Re: where is sign.sh from mod_ssl ???

2003-07-25 Thread achana
Hi. Thanks, I got EngelSchall's sign.sh. I am going through exactly those doco as we speak, I think the problem with the documentation is that they refer to dfferent versions than mine. On my default RH7.1 Linux installation, I do not have /usr/local/ssl or /etc/ssl/openssl.conf, yet it comes

Re: where is sign.sh from mod_ssl ???

2003-07-25 Thread Simon Pabst
I don't know about Redhat's openssl installation, but propably it spreads over several directories. However there should be an openssl.conf somewhere, maybe its in /etc/openssl.conf or /usr/local/openssl/openssl.conf If you can't find it, this might help: find /etc -name openssl.conf or find /usr

Re: where are sign.sh and openssl.conf ?

2003-07-25 Thread achana
Hi. Unbelievable, I searched all the servers for openssl.conf and found nothing. Some of these are stock standard default installatio sraight from the distro CDs from RH. I am going to install OpenSSL from sratch this weekend and ditch RH's distro copy. find /usr openssl.conf -type f find /usr

Re: where are sign.sh and openssl.conf ?

2003-07-25 Thread Simon Pabst
Ah you got me confused myself there a bit, just looked it up on my SuSE 8.1, its openssl.cnf not .conf And if openssl is installed (and it must be, since Apache successfully compiled with ssl) it must be somewhere. However doing a clean install of openssl is still the best way to do it, since

Re: where are sign.sh and openssl.conf ?

2003-07-25 Thread John Turner
Reason #942 not to just take defaults when installing Red Hat Linux. You're better off deleting all of their auto crap and then installing what you need from scratch. At least then you know exactly where everything is. John [EMAIL PROTECTED] wrote: Hi. Unbelievable, I searched all

Re: where are sign.sh and openssl.conf ?

2003-07-25 Thread achana
but he uses Suse John Turner wrote: Reason #942 not to just take defaults when installing Red Hat Linux. You're better off deleting all of their auto crap and then installing what you need from scratch. At least then you know exactly where everything is. John [EMAIL PROTECTED] wrote

Re: Where is mod_jk2?

2003-07-24 Thread Simon Pabst
find a link to download mod_jk2 (or coyote) for Apache 1.3.27 to talk with Tomcat at the jk2 website (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html). Does anyone know where the link to download mod_jk2 is? I find it incredible that there is no link to download jk2 at the jk2

where is sign.sh from mod_ssl ???

2003-07-24 Thread achana
Hi. The HOWTO instructions on http://httpd.apache.org/docs-2.0/ssl/ssl_fag.html said I need a sign.sh script for signing server.csr. It is supposed to be distributed with mod_ssl. Mabe I should download and unpack the latest mod_ssl and look for it again...

Where is mod_jk2?

2003-07-23 Thread da_alchemist
Maybe I overlooked something, but I cannot find a link to download mod_jk2 (or coyote) for Apache 1.3.27 to talk with Tomcat at the jk2 website (http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/index.html). Does anyone know where the link to download mod_jk2 is? I find it incredible

Re: Where can i find mod_webapp ?

2003-07-21 Thread Nicolas Stienne
Does it work with Apache 1.3 (I don't think so...) ? mod_webapp is deprecated, you should use mod_jk(2): http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html Yann Hi, i am looking for a connector between Apache 1.3 and TomCat 4.1.18. Can anybody help me?

Re: Where can i find mod_webapp ?

2003-07-21 Thread John Turner
Mod_jk works just fine with Apache 1.3. JK2 might be a little more difficult, but it might work. John On Mon, 21 Jul 2003 09:22:35 +0200, Nicolas Stienne [EMAIL PROTECTED] wrote: Does it work with Apache 1.3 (I don't think so...) ? mod_webapp is deprecated, you should use mod_jk(2):

Where are ISAPI filter registry settings defined?

2003-07-21 Thread Nathan Ward
Hello, Is there any more documentation on the registry settings used by the isapi_redirect.dll than defined in the IIS How-To in the Tomcat documenation? I'd like to configure two web sites defined in the same IIS server to use different instances of the ISAPI redirector plug-in so that each

Re: Where are ISAPI filter registry settings defined?

2003-07-21 Thread Lior Shliechkorn
Which Tomcat are you using? isapi_redirect.dll or isapi_redirect2.dll? Nathan Ward [EMAIL PROTECTED] wrote: Hello, Is there any more documentation on the registry settings used by the isapi_redirect.dll than defined in the IIS How-To in the Tomcat documenation? I'd like to configure two web

Re: Where are ISAPI filter registry settings defined?

2003-07-21 Thread Nathan Ward
[EMAIL PROTECTED] Sent: Monday, July 21, 2003 12:36 PM Subject: Re: Where are ISAPI filter registry settings defined? Which Tomcat are you using? isapi_redirect.dll or isapi_redirect2.dll? Nathan Ward [EMAIL PROTECTED] wrote: Hello, Is there any more documentation on the registry settings used

Re: Where are ISAPI filter registry settings defined?

2003-07-21 Thread Lior Shliechkorn
saw something in a book about isapi_redirectory2.dll, but I didn't see it yet in the Tomcat docs. Nathan - Original Message - From: Lior Shliechkorn To: Tomcat Users List Sent: Monday, July 21, 2003 12:36 PM Subject: Re: Where are ISAPI filter registry settings defined? Which Tomcat

Re: Where are ISAPI filter registry settings defined?

2003-07-21 Thread Nathan Ward
of the filters for one of the IIS web sites and the other filter for the other IIS web site in the IIS Management Console. Nathan - Original Message - From: Lior Shliechkorn [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, July 21, 2003 12:41 PM Subject: Re: Where

Where can i find mod_webapp ?

2003-07-19 Thread Jose Euclides da Silva Junior - DATAPREVRJ
Hi, i am looking for a connector between Apache 1.3 and TomCat 4.1.18. Can anybody help me? Regards, Euclides. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Where can i find mod_webapp ?

2003-07-19 Thread Yann Cébron
mod_webapp is deprecated, you should use mod_jk(2): http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/connectors.html Yann Hi, i am looking for a connector between Apache 1.3 and TomCat 4.1.18. Can anybody help me? Regards, Euclides.

RES: Where can i find mod_webapp ?

2003-07-19 Thread Jose Euclides da Silva Junior - DATAPREVRJ
Sorry, but i guess i am a little bit confused. First, which file(s) should i download ? Second, where can i find the main steps to install it? Thanks, Euclides. -Mensagem original- De: Yann Cibron [mailto:[EMAIL PROTECTED] Enviada em: sabado, 19 de julho de 2003 11:01 Para: [EMAIL

Re: Where can i find mod_webapp ?

2003-07-19 Thread Yann Cébron
This should you get started: http://jakarta.apache.org/tomcat/faq/connectors.html HTH, Yann Sorry, but i guess i am a little bit confused. First, which file(s) should i download ? Second, where can i find the main steps to install it? Thanks, Euclides. -Mensagem original- De

Re: RES: Where can i find mod_webapp ?

2003-07-19 Thread Simon Pabst
, where can i find the main steps to install it? Thanks, Euclides. -Mensagem original- De: Yann Cibron [mailto:[EMAIL PROTECTED] Enviada em: sabado, 19 de julho de 2003 11:01 Para: [EMAIL PROTECTED] Assunto: Re: Where can i find mod_webapp ? mod_webapp is deprecated, you should use mod_jk(2

Where is ContextXmlReader ???

2003-07-17 Thread achana
Hi. I am in one of those sticky situations where I do not know which forum is the right one. I am trying to sync my Apache2 with my Tomcat4 by defining virtual hosts in httpd.conf and server.xml, if that sort of makes sense... Tomcat4 Questions === Where is the directive

Re: Where is ContextXmlReader ???

2003-07-17 Thread Bill Barker
in one of those sticky situations where I do not know which forum is the right one. I am trying to sync my Apache2 with my Tomcat4 by defining virtual hosts in httpd.conf and server.xml, if that sort of makes sense... Tomcat4 Questions === Where is the directive ContextXmlReader

Re: [off-topic] - Where can i find Oreilly's package for uploading files?

2003-07-14 Thread Guus Holshuijsen
Try http://examples.oreilly.com/jservlet2/. There you will find a link to http://www.servlets.com/cos/. Regards, Guus - Original Message - From: Susan Hoddinott [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, July 12, 2003 6:05 PM Subject: Re: [off-topic] - Where

Re: [off-topic] - Where can i find Oreilly's package for uploadingfiles?

2003-07-14 Thread Reginald Oake
Message - From: Susan Hoddinott [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Saturday, July 12, 2003 6:05 PM Subject: Re: [off-topic] - Where can i find Oreilly's package for uploading files? Have you tried www.oreilly.com? Regards, Susan Hoddinott http

RES: [off-topic] - Where can i find Oreilly's package for uploading files?

2003-07-14 Thread Jose Euclides da Silva Junior - DATAPREVRJ
Thanks at all. I will try FileUpload of Apache.I have already gotten Oreilly's package too. Regards, Euclides. -Mensagem original- De: Reginald Oake [mailto:[EMAIL PROTECTED] Enviada em: segunda-feira, 14 de julho de 2003 13:41 Para: Tomcat Users List Assunto: Re: [off-topic] - Where

Re: [off-topic] - Where can i find Oreilly's package for uploading files?

2003-07-12 Thread Susan Hoddinott
Have you tried www.oreilly.com? Regards, Susan Hoddinott http://www.hexworx.com - Original Message - From: Jose Euclides da Silva Junior - DATAPREVRJ [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 10, 2003 2:02 AM Subject: [off-topic] - Where can i find Oreilly's package

Re: RES: [off-topic] - Where can i find Oreilly's package for uploadi ng fi les?

2003-07-10 Thread Bill Barker
PROTECTED] thank you too. -Mensagem original- De: John Turner [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 9 de julho de 2003 15:54 Para: Tomcat Users List Assunto: Re: RES: [off-topic] - Where can i find Oreilly's package for uploadi ng fi les? http://www.servlets.com/cos

Re: RES: [off-topic] - Where can i find Oreilly's package for uploadi ng fi les?

2003-07-10 Thread John Turner
PROTECTED] thank you too. -Mensagem original- De: John Turner [mailto:[EMAIL PROTECTED] Enviada em: quarta-feira, 9 de julho de 2003 15:54 Para: Tomcat Users List Assunto: Re: RES: [off-topic] - Where can i find Oreilly's package for uploadi ng fi les? http://www.servlets.com/cos/index.html John

Where can I download latest mod_jk2.so?

2003-07-09 Thread Rick Roberts
Just realized that I don't have latest version. I can never remember where to find it. Thanks, -- *** * Rick Roberts* * Advanced Information Technologies, Inc

Re: Where can I download latest mod_jk2.so?

2003-07-09 Thread Maureen Barger
http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/ At 02:00 PM 7/9/2003 -0400, you wrote: Just realized that I don't have latest version. I can never remember where to find it. Maureen Barger, CIT/ID, Cornell University

Re: Where can I download latest mod_jk2.so?

2003-07-09 Thread Maureen Barger
oops I meant http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/ At 02:00 PM 7/9/2003 -0400, you wrote: Just realized that I don't have latest version. I can never remember where to find it. Maureen Barger, CIT/ID, Cornell

Re: Where can I download latest mod_jk2.so?

2003-07-09 Thread Eric J. Pinnell
wrote: Just realized that I don't have latest version. I can never remember where to find it. Maureen Barger, CIT/ID, Cornell University Ithaca, NY 14850 [EMAIL PROTECTED] http://mo.cit.cornell.edu/ Experience is something you don't get

<    1   2   3   4   5   6   7   8   9   10   >