Re: JK2 Won't create .so's for Tomcat 5/Apache 2.0.48

2004-01-05 Thread Ian harwood
Hi I posted how i got apache2 + tomcat41 with jk2 just yesterday if you go to the mailing list, tomcat users and click on the Archive you should be able to see it. Please let me know if this helps or if I can be of further help, have not tried with tomcat5 yet, should still work I think Ian -

Re: JK2 Won't create .so's for Tomcat 5/Apache 2.0.48

2004-01-05 Thread James Myers
Thank you. Ian harwood wrote: Hi I posted how i got apache2 + tomcat41 with jk2 just yesterday if you go to the mailing list, tomcat users and click on the Archive you should be able to see it. Please let me know if this helps or if I can be of further help, have not tried with tomcat5 yet,

Re: Apache2 + Tomcat4 + mod_jk2 success

2004-01-05 Thread Ian harwood
Hi Regarding the missing files I could not find a source/binary on jakarta web site from binaries page only solaris and windose are listed. I searched the web and found only jakarta-tomcat-connectors-jk2-2.0.2-src something was wrong with the realease and it would not compile. I felt that if I

Back to Mod Jk :(

2004-01-05 Thread Suneel
well since mod_jk2 RandD has come to a stand still for me[Due to lack of creation of SO]...am back in mod_jk. Yes yes...i know i am insane and brave. with mod_jk Now i get to see the jsp souce instead of the jsp. The reason for that is the JKMount is either not working or not sending the

Help in Tomcat 5.0

2004-01-05 Thread Rahul Toraskar
Hi, I am new to Tomcat env. I am using Tomcat 5.0 with Oracle 8.1.7 on Windows 2000 Platform. Earlier i was working on Weblogic 5.1 Platform. I want to port my application from Weblogic 5.1 to Tomcat 5.0. I need help in setting of server.xml, web.xml and oracle pool settings etc. So can anyone

RE: Why can't we store big objects in session?

2004-01-05 Thread Ralph Einfeldt
You can, but in the most cases you shouldn't. It is not recommended because you may consume much memory this way. Per default a session times out after 30 minutes of in activity. If the everage session lasts 35 minutes and you get 2 new sessions per Minute you have already 70 concurrent

RE: Threaded servlets okay in a compliant container?

2004-01-05 Thread Ralph Einfeldt
- Nobody (the spec included) prevents you from creating threads You just have to follow some rules. - Besides creating threads I prefer to use servlets/jsp's that are triggered from the outside to do regular jobs. (Using cron and wget to trigger the action) This way you don't have to

Re: Threaded servlets okay in a compliant container?

2004-01-05 Thread Nikola Milutinovic
Ralph Einfeldt wrote: - Nobody (the spec included) prevents you from creating threads You just have to follow some rules. Yes, but it should make you think twice before indulging in something like that. It also might prevent re-inventing the wheel. - Besides creating threads I prefer to use

RE: Threaded servlets okay in a compliant container?

2004-01-05 Thread Ralph Einfeldt
The cronjob is requesting an url with wget and triggers tis way a servlet. That's easy and sufficient to do regular jobs like sending newsletters, cleaning up files, that don't require any interaction) -Original Message- From: Nikola Milutinovic [mailto:[EMAIL PROTECTED] Sent:

Re: multiuser tomcat environment

2004-01-05 Thread Dominique Batard
You may use Virtual Hosts: one student = one host. This way, each student can have as many context as needed, one of them being the manager. Dom - Original Message - From: Tsirkin Evgeny [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 11:38 PM Subject: multiuser

Re: Threaded servlets okay in a compliant container?

2004-01-05 Thread Nikola Milutinovic
Ralph Einfeldt wrote: The cronjob is requesting an url with wget and triggers tis way a servlet. I understood the mechanism being used, I did not understand the benefit. That's easy and sufficient to do regular jobs like sending newsletters, cleaning up files, that don't require any

Problems with REX and mod_jk2

2004-01-05 Thread Max Masetti
hi, I've compiled mod_jk2 2.0.2 for apache 2 (0.48) (Tomcat 4.1.24) and trying to use regular expressions to configure uris into workers2.properties like in: [uri:$/test/\w*] worker=ajp13:localhost:8009 context=/test debug=10 or something harder (but usefull) like:

Re: adding timestamp to logs

2004-01-05 Thread Tim Funk
Standard output and error don't have timestamps written to them. If a logging framework is available (log4j) - very little to nothing should be written to it (standard output/err) by tomcat. Tomcat tries not to write to standard output/err. -Tim Antony Paul wrote: In this message there is no

Re: multiuser tomcat environment

2004-01-05 Thread Tsirkin Evgeny
Is that alright to have say 60 Virtual Hosts on one tomcat server? Thanks. On Mon, 5 Jan 2004 12:19:18 +0100, Dominique Batard [EMAIL PROTECTED] wrote: You may use Virtual Hosts: one student = one host. This way, each student can have as many context as needed, one of them being the manager. Dom

Re: another newbie question

2004-01-05 Thread FRANCOIS Dufour
thanks for the advice im trying to turn on a ligntningboard script (free forum script open source) it came in a bundle that look like a copy paste from his serveur to a zip folder but i got the source folder in the bundle and there is a jdbc database file in it should i use the souce to deploy

RE: Broken Pipe and Tomcat 4.1.24 -- Fixed?

2004-01-05 Thread Altankov Peter
Im was getting the same error in 4.1.24 then migrated to 4.1.29 but still getting it -Original Message- From: news.basebeans.net [mailto:[EMAIL PROTECTED] Sent: 03 2004 . 22:23 To: [EMAIL PROTECTED] Subject: Broken Pipe and Tomcat 4.1.24 -- Fixed? I'm using Tomcat 4.1.24 and I'm still

Re: multiuser tomcat environment

2004-01-05 Thread Camron G . Levanger
With the light traffic you will most likely be getting to each virtual host, 60 shouldn't be a problem. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 5:01 AM, Tsirkin Evgeny wrote: Is that alright to have say 60 Virtual Hosts on one tomcat server?

RE: Threaded servlets okay in a compliant container?

2004-01-05 Thread Ralph Einfeldt
The servlet has access to all information inside the container/context that may be needed to do the job. For an external job this can be much harder. (Iterate over all sessions to do something with them, access attributes with application scope, access attributes from server.xml/ web.xml) It's

Re: Threaded servlets okay in a compliant container?

2004-01-05 Thread Nikola Milutinovic
Ralph Einfeldt wrote: The servlet has access to all information inside the container/context that may be needed to do the job. For an external job this can be much harder. (Iterate over all sessions to do something with them, access attributes with application scope, access attributes from

RE: suggestion for taglib process

2004-01-05 Thread Edson Alves Pereira
I´m not sure this is the best change for Generator, maybe i must know tomcat´s source in deep. But is here what we need. /// //Old org.apache.tomcat.jasper.compiler.Generator:1450 String attrName =

!!apache + tomcat!!

2004-01-05 Thread FRANCOIS Dufour
a way too avoid running both apache and tomcat to save system resources create your self a folder whit an web inf xml sheet that describe your content put all your index there its running pretty well here [EMAIL PROTECTED] crazy-wilys webmaster

RE: Have some questions, also possible contract work up for grabs

2004-01-05 Thread Shapira, Yoav
Howdy, I had some questions regarding Tomcat. Is Tomcat able to handle a steady stream of about 200 years efficiently without crashing, being unreliable, etc.. ? I personally don't know the limitations of it as I am fairly new to Java. I'm fairly no sure no one has completed any java or

RE: Logging and Tomcat 5.0.16

2004-01-05 Thread Shapira, Yoav
Howdy, 1) Is there a reason why the startup.sh script that comes bundled with Tomcat 5.0.16 adds commons-logging-api.jar to the CLASSPATH? As far as I can tell, it's the only script that uses it. Yes, there's a good reason: tomcat internals use commons-logging to do their logging. 2) Is there

RE: catch-all host mapping

2004-01-05 Thread Shapira, Yoav
Howdy, Yes, one idea: patch or extend StandardHost yourself. ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Marco Pöhler [mailto:[EMAIL PROTECTED] Sent: Saturday, January 03, 2004 9:20 AM To: tomcat-user Subject: catch-all host mapping Hi, I want to map every

RE: Parsing error processing resource path

2004-01-05 Thread Shapira, Yoav
Howdy, Chances are your struts config file is missing/broken/incorrectly specified in your web.xml. Yoav Shapira Millennium ChemInformatics -Original Message- From: Clement Low [mailto:[EMAIL PROTECTED] Sent: Sunday, January 04, 2004 11:40 PM To: Tomcat Users List Subject: Parsing

RE: Servlet Error

2004-01-05 Thread Shapira, Yoav
Howdy, Ask the BugRat vendor. Yoav Shapira Millennium ChemInformatics -Original Message- From: kalyan chakravarti [mailto:[EMAIL PROTECTED] Sent: Friday, January 02, 2004 1:51 AM To: [EMAIL PROTECTED] Subject: Servlet Error Sir, I am using TOMCAT Server on Windows 2000

RE: Setting Up Tomcat for Multiple Users

2004-01-05 Thread Shapira, Yoav
Howdy, Tomcat has that functionality: see the UserConfig listener under the Host configuration reference. Yoav Shapira Millennium ChemInformatics -Original Message- From: Michael Coughlan [mailto:[EMAIL PROTECTED] Sent: Sunday, January 04, 2004 3:51 PM To: Tomcat Users List Subject:

RE: Sudden IllegalStateException

2004-01-05 Thread Shapira, Yoav
Howdy, How does a RequestDispatcher forward behave here (as opposed to a sendRedirect)? Also, make sure you call encodeRedirectUrl before redirecting (though this wouldn't cause an IllegalState problem, it's a good idea). Yoav Shapira Millennium ChemInformatics -Original Message-

looking for a progamer

2004-01-05 Thread FRANCOIS Dufour
near off mtl for a couple hour off work ill pay 40$ an hour [EMAIL PROTECTED] crazy-wilys webmaster _ MSN Search, le moteur de recherche qui pense comme vous ! http://fr.ca.search.msn.com/

RE: suggestion for taglib process

2004-01-05 Thread Shapira, Yoav
Howdy, Actually, this seems very reasonable. Please submit it to Bugzilla as an enhancement request and attach your code diff. Thanks ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 9:46

how to start the root context with manager application

2004-01-05 Thread Brouns, Francis
Hello, we recently installed Tomcat 4.1.24 on a SUSE 8.2 Linux machine and are trying to get to know how to start, stop and reload applications. So far, Tomcat and the applications seem to be running fine. We have defined our application to run as the default or ROOT application. In the Tomcat

Re: multiuser tomcat environment

2004-01-05 Thread Tim Downey
Tsirkin Evgeny wrote: Many thanks for your reply. Does your solution works with NIS? Also I have found on the server config site that : The operating system username under which Catalina is executed MUST have read access to each user's web application directory, and all of its contents.

RE: tomcat 5.0.16 Replication

2004-01-05 Thread jean-philippe . belanger
I built the latest CVS branch for the clustering module and replaced my catalina-cluster.jar. Seams like everything is synchronous as stated. I had another unrelated problem with a IFRAME that IE seams to load before the server (tomcat) ends the request. So even if everything was synchronous the

Problem with Tomcat 4.1.27, Xerces 2.5 and IBM JVM 1.4.0

2004-01-05 Thread McClure, Timothy J\(IndSys, GE Interlogix\)
We have just upgraded to the Xerces 2.5. We use Tomcat 4.1.27 as our servlet engine. The Xerces code is working in our Microsoft and Linux environment using the Sun 1.4.2 JDK however when we try to use this version of Xerces in our AIX environment using JDK 1.4.0 we receive the following root

RE: Why can't we store big objects in session?

2004-01-05 Thread Chakravarthy, Sundar
My opinion is in most cases you can with proper testing and profiling ; depends on how big is big. A large memory isn't necessarily a problem in itself. I would be concerned about going over the network frequently to fetch small amounts of data. -Original Message- From: Ralph Einfeldt

Good Tomcat hosting service?

2004-01-05 Thread Riaan Oberholzer
Can anyone recommend a good Tomcat hosting service? Preferably in Europe, but if the service/price is good, I might go for a USA based one as well. Tomcat 4.1.x and MySQL 4.0.x must be provided. And I preferably want multiple databases and be able to run a number of web-apps. I've tried google

Re: Good Tomcat hosting service?

2004-01-05 Thread Ben Souther
I've had good luck with AssortedInternet. They provide both MySql and Postgresql. Just recently, they've upgraded Tomcat service to give each user their own Tomcat instance with complete access to the files in the config dir. They don't have phone support but they do get back to you pretty

why i can't show my index.jsp

2004-01-05 Thread aaaaa aaaaa
after installed apache and tomcat5 on windows xp. 1. run ie type http://127.0.0.1apache index.html is ok 2. run ie type http://127.0.0.1:8080 tomcat's page also ok 3. config httpd.conf add dso suppert and jsp servelet 4. config servers.xml add tomcat path infomation 5. restart service edit

about tomcat5.0.16`s configure

2004-01-05 Thread jian-zhou
hi: (BI am so sorry,I installed tomcat 5.0.16 in linux 9.0 and have been (Bconfigure,but i cann`t (Bsee the index by this way :http://172.20.0.43:8080/(173.20,0,43 is my ip (Baddress),please (Btell me how to cofig tomcat5.0.16,thank you very much (B (Bjacksol (BJan.5.2004

Re: Help in Tomcat 5.0

2004-01-05 Thread Jeanfrancois Arcand
Read: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/index.html Then ask more technical questions (make sure you search the list first) -- Jeanfrancois Rahul Toraskar wrote: Hi, I am new to Tomcat env. I am using Tomcat 5.0 with Oracle 8.1.7 on Windows 2000 Platform. Earlier i was working on

Re: looking for a progamer

2004-01-05 Thread Jeanfrancois Arcand
FRANCOIS Dufour wrote: near off mtl for a couple hour off work ill pay 40$ an hour ..and I was under the impression my english was bad ;-) mtl = Montreal and you are probably looking for a JSP/Servlet expert, not a Tomcat programmer. Va voir sur Jobboom ou Monster.ca/fr et rediges ton

Re: about tomcat5.0.16`s configure

2004-01-05 Thread Camron G . Levanger
Are you asking how to make tomcat serve on port 80, or for an entire lesson on DNS, your question isn't clear? Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 3:07 AM, jian-zhou wrote: hi: I am so sorry,I installed tomcat 5.0.16 in linux 9.0 and have been

tomcat-connectors

2004-01-05 Thread Shannon Scott
Greetings, I hope everyone is feeling well in the new year. I recently upgraded a web server from redhat7.2 to the fedora os. The apache was upgraded in the process and now we are running Apache/2.0.47. I have been unable to get a mod_jk or mod_jk2 that will install or compile. I have tried the

Re: permission problem

2004-01-05 Thread Jeanfrancois Arcand
Algirdas M. wrote: Hello, I've edited catalina.policy and added line: grant codeBase file:${catalina.home}/webapps/vvv/WEB-INF/lib/- { permission java.security.AllPermission; }; restarted Tomcat. And when I'm running an application from vvv/WEB-INF/lib, I'm still becoming exception:

Re: tomcat-connectors

2004-01-05 Thread Camron G . Levanger
Hi, I emailed you a compiled mod_jk that should work on fedora, if for some reason you do not get the attachment let me know and i will send you a link. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 8:49 AM, Shannon Scott wrote: Greetings, I hope

RE: why i can't show my index.jsp

2004-01-05 Thread Edson Alves Pereira
Maybe you need to define welcome-file-list/ in your WEB-INF/web.xml and try to create a new webapp, instead of edit default index.jsp from tomcat. I´m think tomcat´s default root application ( webapp ) is configured to not reload JSP pages. -- De: a a[SMTP:[EMAIL

RE: tomcat-connectors

2004-01-05 Thread Shannon Scott
Camron, Thank you for your quick response. I appreciate your effort. When I tried your mod_jk.so file, apache would not start. I got the following error. Starting httpd: httpd: module mod_jk.c is not compatible with this version of Apache (found 20020628, need 20020903). Please contact the

syntax error when Apache is started

2004-01-05 Thread annimandary
I'm trying to connect Apache to Tomcat using mod_jk. When I start Apache, I get the following error: Syntax error on line 4 of C:/jakarta-tomcat/conf/auto/mod_jk.conf: LoadModule takes two arguments, a module name and the name of a shared object file to load it from Here's what written in

RE: why i can't show my index.jsp

2004-01-05 Thread FRANCOIS Dufour
try this welcome-file-list welcome file/folder/your index/welcome file /welcome-file-list [EMAIL PROTECTED] crazy-wilys webmaster From: Edson Alves Pereira [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL

Re: tomcat-connectors

2004-01-05 Thread Camron G . Levanger
Sorry to hear that, I am running 2.0.47. I can't understand why it wouldn't work. But anyway, I compiled mine from the jakarta-tomcat-connectors-4.1.27-src. I will do a little research see if i can't dig up something. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On

refreshing what tomcat has in memory

2004-01-05 Thread Stephen Charles Huey
I have a copy of Tomcat both on my dev machine and my production machine. I have some code that looks for an image in a given location, and on the dev machine (which I set up), the code was working fine (the code takes that image and inserts it in the middle of a larger one that I'm drawing). I

Re: tomcat-connectors

2004-01-05 Thread James Myers
Hi, I am having similar problems, though not with the same configuration as yours. My config is: RH9, Apache 2.0.48, Tomcat 5.0.16, JK2_2.0.2. I cannot get the make files to produce the .so's. It's as if libtool is not working. I am following the instructions to the letter, but still no

Re: tomcat-connectors

2004-01-05 Thread Camron G . Levanger
Shannon, Here try this rpm, if you haven't already. http://rpm.pbone.net/index.php3/stat/4/idpl/857409/com/mod_jk-ap20 -1.2.5-2jpp.i386.rpm.html Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 9:16 AM, Shannon Scott wrote: Camron, Thank you for your

Re: syntax error when Apache is started

2004-01-05 Thread Gil Hauer
Annimadary, Please stop using the 'technolog.ca' domain name in your email address. There are other avenues to pursue if you wish to maintain anonymity -- using another organization's domain name should not be one of them. As to your problem (although I don't run Windows), could the problem be

Re: syntax error when Apache is started

2004-01-05 Thread Stephanie A Bickel
What is in your mod_jk.conf file? [EMAIL PROTECTED]

RE: Good Tomcat hosting service?

2004-01-05 Thread Benoit Marchal
I am happy with hostingjava.com (no problem to get multiple db) Or in Canada with kgbinternet.com (good value for price) Benoit Marchal Director NovaXon BV Tel: +31 43 356 14 60 Fax: +31 43 356 14 61 -Original Message- From: Riaan Oberholzer [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: suggestion for taglib process

2004-01-05 Thread Edson Alves Pereira
Hello Yoav, i think we have here more that just changing a error message. I´ll try to explain: The class that jasper says not found a method is named CurrencyLookup and its method is setRequired, that´s why jasper complains about something called required ( i telling you what is

RE: tomcat-connectors

2004-01-05 Thread Shannon Scott
That one works. Thank You Much. Take Care. Shannon -Original Message- From: Camron G. Levanger [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 11:41 AM To: Tomcat Users List Subject: Re: tomcat-connectors Shannon, Here try this rpm, if you haven't already.

org.apache.log4j.spi.ThrowableInformation hiding root cause, PLEASE HELP

2004-01-05 Thread Eric Bessette
First off, I'm not sure if this is a tomcat or log4j issue, so I'm posting to both lists. Many times when I have an error in my jsp code, I only get the stack trace below in my log4j log file. I'm assuming the root exception is there somewhere, but how do I get it to display? SEVERE:

Re: looking for a progamer

2004-01-05 Thread FRANCOIS Dufour
recherche programeur pres de montreal ayant les competance suivante habiliter a installer mod jk + bonne connaisance de base de donner sql config et parametrage +bonne connaisance du php sur monster faudrait je menregistre comme employer peut pas:S faut payer juste pour passer l annonce jaime

Server.xml and re-start!

2004-01-05 Thread Ghanakota, Vishu
Hi, Is there a way to reload conf/server.xml without restarting the server and disturbing other webapps on that server? thanks, Vishu MMS firstam.com made the following annotations on 01/05/2004 09:14:36 AM -- THIS

RE: Server.xml and re-start!

2004-01-05 Thread FRANCOIS Dufour
me i simply open task and end the process [EMAIL PROTECTED] crazy-wilys webmaster From: Ghanakota, Vishu [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: Server.xml and re-start! Date: Mon, 5 Jan 2004 09:14:26 -0800 Hi, Is

Re: tomcat-connectors

2004-01-05 Thread Mark Eggers
If you are using the rpms, you will have to tell configure where to find the libraries and include files. Type ./configure --help for the syntax --with-PACKAGE[=ARG]use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld

RE: Server.xml and re-start!

2004-01-05 Thread Shapira, Yoav
Howdy, No. Yoav Shapira Millennium ChemInformatics -Original Message- From: Ghanakota, Vishu [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 12:14 PM To: 'Tomcat Users List' Subject: Server.xml and re-start! Hi, Is there a way to reload conf/server.xml without restarting the

Re: URL path naming question, recommended naming conventions?

2004-01-05 Thread Jonathan Eric Miller
I'm using Tomcat in standalone mode and hence setting the permissions using Tomcat in the web.xml file. Jon - Original Message - From: Howard Watson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 3:36 PM Subject: Re: URL path naming question, recommended

Re: Server.xml and re-start!

2004-01-05 Thread Camron G . Levanger
You can do most anything you need with the manager app without a restart. It's well documented at the jakarta site. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 10:14 AM, Ghanakota, Vishu wrote: Hi, Is there a way to reload conf/server.xml without

Auto reload war file

2004-01-05 Thread Chaikin, Yaakov Y (US SSA)
Hi, I have a war file that gets packages at the command line using ant. Tomcat uses that war for the application and I've set it up that it doesn't unpack it. I keep having to restart the server whenever I change anything, recompile and repackage. Does anyone know what and where in the

RE: tomcat 5.0.16 Replication

2004-01-05 Thread Filip Hanik
clustering doesn't support frames. synchronizing everything down to that level would cause overhead, so I decided against supporting it. Filip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 6:46 AM To: Tomcat Users List Subject: RE:

Older versions of IE

2004-01-05 Thread Chaikin, Yaakov Y (US SSA)
Does anyone know where I can download older version of IE (5.x and 4.x)? Thanks. Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (phone) 301-838-6802 (fax) [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

Re: Older versions of IE

2004-01-05 Thread Rod Giffin
US SSA said: Does anyone know where I can download older version of IE (5.x and 4.x)? You can try http://www.microsoft.com/windows/ie/previous/default.asp, or in some of the archives of downloads in the Microsoft download site. Other than that, the best place is old MSDN, and other CD's which

RE: tomcat-connectors

2004-01-05 Thread Oscar Carrillo
Everything I'm sure will work great if you compile apache from source. Oscar http://daydream.stanford.edu/tomcat/install_web_services.html On Mon, 5 Jan 2004, Shannon Scott wrote: Camron, Thank you for your quick response. I appreciate your effort. When I tried your mod_jk.so file, apache

setting up CVS dev environment

2004-01-05 Thread Mark W. Webb
I just finished setting up a CVS environment, and wanted to pass along a tip that I found I followed the instructions for setting up a CVS environment using my fedora linux system found at http://jakarta.apache.org/site/cvsindex.html, and after checking out the jakarta-tomcat-5 module and

RE: How to prevent HTTPS access?

2004-01-05 Thread joe
One method is to use the mod_rewrite module. You place the rewrite lines inside lt;VirtualHost _default_:443gt; section of your httpd.conf file. # These rewrite any requests for pages over SSL that do not have the terms 'forms, images, incl, onlineopinion' in the URL. #RewriteEngine

RE: setting up CVS dev environment

2004-01-05 Thread Shapira, Yoav
Howdy, I followed the instructions for setting up a CVS environment using my fedora linux system found at http://jakarta.apache.org/site/cvsindex.html, and after checking out the jakarta-tomcat-5 module and reading the BUILDING.txt file, I found that it is much easier to get the file :

Re: Threaded servlets okay in a compliant container?

2004-01-05 Thread David Wall
The use of a cron job that does a WGET on a URL that triggers the background processing sounds nice, but what's the process that triggers that on a Windows box that doesn't have cron? A huge power of our application is that it's written in Java and we can run it easily on Windows or Linux or

Re: setting up CVS dev environment

2004-01-05 Thread Mark W. Webb
thank you. I guess I was looking at the wrong page. Is my bugzilla query right? I only see 17 New/Assigned/Reopened bugs. Shapira, Yoav wrote: Howdy, I followed the instructions for setting up a CVS environment using my fedora linux system found at

RE: setting up CVS dev environment

2004-01-05 Thread Filip Hanik
I just do cvs co jakarta-tomcat-5 cd jakarta-tomcat-5 (edit build.properties.default if you wish) ant checkout ant download ant dist and that is it -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 10:39 AM To: Tomcat Users List Subject:

RE: setting up CVS dev environment

2004-01-05 Thread Shapira, Yoav
Howdy, Is my bugzilla query right? I only see 17 New/Assigned/Reopened bugs. Yup, that's it for tomcat 5, and most of those issues are highly contentious as they derive from unclear sections of the servlet specification. Yoav Shapira This e-mail, including any attachments, is a

Tomcat 5 Service Fails on Windows 2000

2004-01-05 Thread Merrill Cornish
I downloaded the Tomcat 5.0.16.exe binary (with installer) and installed it on my Window XP Pro workstation at home. It installed, started, and runs just fine. I then tried to do the same thing on my Windows 2000 workstation at work. The install completed without an error. However,

Re:syntax error when Apache is started

2004-01-05 Thread Robert Hall
Gil, I was wondering who annimandary is since the email I received from him uses the same domain name as my own, uclink.berkeley.edu, and he is not in our Directory. Pretty slippery, getting ezmlm to dynamically spoof email addresses. Robert Gil Hauer wrote: Annimadary, Please stop using the

Re:syntax error when Apache is started

2004-01-05 Thread Giuliano Gavazzi
fools... his From: header does not contain a domain but just a username and your mailservers did complete it with their local domain name. Pretty bad choice, modifying the content of the From header, urgh... Giuliano At 11:13 am -0800 2004/01/05, Robert Hall wrote: Gil, I was wondering who

RE: syntax error when Apache is started

2004-01-05 Thread Shapira, Yoav
Howdy, Chill out with the derogatory comments, there's no need to call anyone a fool. Yoav Shapira Millennium ChemInformatics -Original Message- From: Giuliano Gavazzi [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 2:42 PM To: Tomcat Users List Subject: Re:syntax error when

Re:syntax error when Apache is started

2004-01-05 Thread Giuliano Gavazzi
At 8:41 pm +0100 2004/01/05, Giuliano Gavazzi wrote: fools... his From: header does not contain a domain but just a username and your mailservers did complete it with their local domain name. Pretty bad choice, modifying the content of the From header, urgh... Giuliano of course it could also

prevent taglib caching

2004-01-05 Thread Faine, Mark
Tomcat 4.1.27 I need to prevent Tomcat from caching tag libraries. I can't seem to find any documentation on this. Any help would be appreciated. thanks, -Mark

Re:syntax error when Apache is started

2004-01-05 Thread Rod Giffin
Giuliano Gavazzi said: fools... his From: header does not contain a domain but just a username and your mailservers did complete it with their local domain name. Pretty bad choice, modifying the content of the From header, urgh... Although your technical assessment of what is happening is

RE: prevent taglib caching

2004-01-05 Thread Shapira, Yoav
Howdy, Have you read this page: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jasper-howto.html ? If so, perhaps you missed the enablePooling parameter? Yoav Shapira Millennium ChemInformatics -Original Message- From: Faine, Mark [mailto:[EMAIL PROTECTED] Sent: Monday, January 05,

Re: setting up CVS dev environment

2004-01-05 Thread Mark W. Webb
So if one were to get involved with tomcat development, where would they start? Is there a TODO list? of maybe a nice feature to have list? Shapira, Yoav wrote: Howdy, Is my bugzilla query right? I only see 17 New/Assigned/Reopened bugs. Yup, that's it for tomcat 5, and most of

RE: setting up CVS dev environment

2004-01-05 Thread Shapira, Yoav
Howdy, So if one were to get involved with tomcat development, where would they start? Is there a TODO list? of maybe a nice feature to have list? There's no master todo list. You could look at the open issues, which include enhancement requests, and work on those. You could track recent

RE: syntax error when Apache is started

2004-01-05 Thread Giuliano Gavazzi
At 2:50 pm -0500 2004/01/05, Shapira, Yoav wrote: Howdy, Chill out with the derogatory comments, there's no need to call anyone a fool. my apologies, it was intended with a smile! (I never put smileys though, just dots...). I would have been fooled myself of course, it only clicked because of

Tomcat RPM for Fedora Core 1

2004-01-05 Thread Johan Bång
Hi everybody. I'm a tomcat newbie, so I apologize if this question is sent to the wrong forum. I'm looking for a good rpm for tomcat witch will work on Fedora Core 1. Are there any official RedHat rpms of tomcat? I have done some extensive googling but haven't found any rpm package that feels

Re: Apache2 + Tomcat4 + mod_jk2 success

2004-01-05 Thread Timothy Stone
...snip instructions... Ian, Thank you! Just want'd to pass along some notes from the field on this: 1. Works on RHL8 (psyche). 2. Config: Binary Tomcat in /usr/local/jakarta-tomcat-4.1.29 Source build of Apache 2.0.48 in /usr/local/httpd-2.0.48 # maybe not the most

how to deploy ejb in tomcat

2004-01-05 Thread bala magesh
hai to all i expect from any one how to deploy a ejb in tomcat plz reply soon bala _ Gujarat Kite Fest at http://go.msnserver.com/IN/40247.asp www.gujaratkitefest.com

Re: Tomcat RPM for Fedora Core 1

2004-01-05 Thread Martin Dengler
On Mon, 2004-01-05 at 20:21, Johan Bng wrote: Hi everybody. I'm a tomcat newbie, so I apologize if this question is sent to the wrong forum. I'm looking for a good rpm for tomcat witch will work on Fedora Core 1. FYI, I run FC1 too and find it excellent. Are there any official RedHat rpms

Re:syntax error when Apache is started

2004-01-05 Thread Giuliano Gavazzi
I checked and in principle the MX seems to accept *any* username at the bow.intnet.mu domain. So no way to tell. I don't remember the RFC in detail but it might well be that an unqualified username is not legal even in the headers. Also, annimandary's posts do not have a Date: header. I would

NoClassDefFoundError : Digester

2004-01-05 Thread 29djeo
I set up Tomcat successfully but when I added the following to my server.xml file I get NoClassDefFoundError from tomcat: Host name=www.mydomain1.com debug=0 appBase=webapps unpackWARs=true autoDeploy=true Context path= docBase=mydomain1 debug=1/

AW: catch-all host mapping

2004-01-05 Thread Marco Pöhler
Yes, I expected response in that direction ;-) If there is no common way I will use an apache in front of tomcat and use the configurations from the httpd to map my subdomains. That seems to be a funny thing - looking on the other threads these days. Thank you Yoav ! -Ursprüngliche

Re: how to deploy ejb in tomcat

2004-01-05 Thread Carlos Cajina - Hotmail
Hi... You'll probably get lots of answers, but here's a very short one ;-) Tomcat IS NOT a container for EJB's... you might want to take a look at JBoss (www.jboss.org)... Regards, Carlos To define recursion, we must first define recursion. - Original Message

Telnet test for Tomcat?

2004-01-05 Thread Mike Coughlan
Hello, I'm trying to access Tomcat from a remote location through a DLink 614+ Wireless Hub and firewall. I have SSH and FTP port forwaring working fine. I know Tomcat is up and running. I can also use links to browse Tomcat from the command line. I cannot seem to access Tomcat from my remove

Microsoft's JDBC driver with Tomcat 5.0.16 on Linux

2004-01-05 Thread Prévost Eric
Hi, I know that Microsoft's newsgroups would be a better place. I already posted there, but I didn't get any response, so I'm trying here. I'm using Microsoft JDBC drivers SP2 for SQL 2000, and my SQL server is SQL 2000 SP3. I'm using the drivers with Tomcat 5.0.16 on Mandrake Linux 9.0. On

Re: getRemoteUser null

2004-01-05 Thread Howard Watson
Additional Info: Enumerate HeaderNames === host : myServer:port user-agent : Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7 accept :

  1   2   >