Re: Tomcat 4 + ssl + client authentication

2003-10-10 Thread Kenneth Westelinck
Client cert verification is done against the TrustStore, not the KeyStore. Tomcat 5 has some improvements for this. Tomcat 4 is still a bit limited. I have no idea what is goin wrong. Can someone tell me how to make this work? Assuming that you don't want to just import the signing cert into

Advice

2003-10-10 Thread Robert Charbonneau
I am trying to build a web application from an already existing multi-threaded server. I have a jar file (for example, server.jar) that contains all the classes for my server. Is there any way for me to run my server through Tomcat to allow my JSPs and Servlets to be aware of the running

RE: Getting exception running examples

2003-10-10 Thread Artin Modaresi
Dear Mr Shapira, Thank you for helping me out, I have two jdks installed 1.3 and 1.4 and java_home was pointing at the wrong one. best regards artin -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: den 9 oktober 2003 14:47 To: Tomcat Users List Subject: RE: Getting

RE: Tomcat on Netware

2003-10-10 Thread Aziz Yacoub
Still gave the same trouble... I ended up recompiling from source with the same version of java as on the server (1.3.1_08), and now it works just fine. thanks for you help. Aziz Yacoub [EMAIL PROTECTED] 1/10/2003 5:10:53 pm Thanks for the info. Will try them and let you know. I've actually

let web tomcat talk 2 lan tomcat

2003-10-10 Thread Swapan Mazumdar
Hi forum, I am having a difficult scenario where one tomcat sitting on webserver needs to invoke a servlet from the other tomcat machine which not on web. How can I let the tomcat on web to communicate with tomcat on LAN. I would very much appreciate any response and insights from all. Regards

Servlet and Beans.

2003-10-10 Thread anunay ashish
If my bean and servlet are as package com.scheduler, then can I use make an object of the bean class in the servlet? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Servlet and Beans.

2003-10-10 Thread Kwok Peng Tuck
Yes, as long as you import the classes and make them available in your webapp. anunay ashish wrote: If my bean and servlet are as package com.scheduler, then can I use make an object of the bean class in the servlet? - To

RE: Restart automatically Tomcat

2003-10-10 Thread Slimane Amar
Hi Yoav, When is sheduled this stable version of Tomcat 5. Thanks. -- Debut du message initial --- De : Shapira, Yoav [EMAIL PROTECTED] A : Tomcat Users List [EMAIL PROTECTED] Copies : Date : Wed, 8 Oct 2003 08:57:59 -0400 Sujet : RE: Restart automatically Tomcat

Re: [NewBie]Tomcat logs

2003-10-10 Thread Tim Funk
Both can be done by simple exercises in shell scripting. -Tim Julie christiana wrote: Hi, We have tomcat 4.1.24 installed. Thanks to tomcat documentation and email archives, we understood that tomcat logs will be rotated every day. Would like to know if there we can configure the following

Re: let web tomcat talk 2 lan tomcat

2003-10-10 Thread Tim Funk
Tomcat by itslef has no ability to do this. But if on the first server you have apache, then you can use JK. Otherwise - you'll need to poroxy the request yourself. There is a jakarat project called HttpClient which makes this easy to do. -Tim Swapan Mazumdar wrote: Hi forum, I am having a

Re: Restart automatically Tomcat

2003-10-10 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/version.html#when -Tim Slimane Amar wrote: Hi Yoav, When is sheduled this stable version of Tomcat 5. Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Servlet and Beans.

2003-10-10 Thread anunay ashish
I am trying to use the bean class in the servlet but at the line in my code in servlet where I am creating the object for bean class, on compiling the java file it throws me errrors of Cannot compile the java file. - Original Message - From: Kwok Peng Tuck [EMAIL PROTECTED] To: Tomcat

How to use jar files from CLASSPATH

2003-10-10 Thread Zsolt Koppany
Hi, my application has to use DB2 JDBC that is in the CLASSPATH. How can I get tomcat-4.1.24 to search for entries from CLASSPATH? I understand that I could probably copy the entries from CLASSPATH into .../WEB-INF/lib, but this JDBC driver does use native libraries, thus I would not like to

Re: [NewBie]Tomcat logs

2003-10-10 Thread Julie christiana
Is it possible to do this configuration in webserver itself ... I mean in server.xml ? Thanks for the help, Julie Christiana Tim Funk [EMAIL PROTECTED] wrote: Both can be done by simple exercises in shell scripting. -Tim Julie christiana wrote: Hi, We have tomcat 4.1.24 installed. Thanks

Setting variables.

2003-10-10 Thread anunay ashish
When we set CLASSPATH variable in windows XP, where should we set it - 1. In user variables for administrator or 2. System variables - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [NewBie]Tomcat logs

2003-10-10 Thread Tim Funk
The AccessLogValve does not have the ability to perform the deletion of old files. You can have multiple AccessLogValves at the same time. For example: one writing to a single non-rotating log file and the other rotating nightly. -Tim Julie christiana wrote: Is it possible to do this

RE: let web tomcat talk 2 lan tomcat

2003-10-10 Thread Swapan Mazumdar
Tim, Tomcat by itslef has no ability to do this. But if on the first server you have apache, then you can use JK. Otherwise - you'll need to poroxy the request yourself. There is a jakarat project called HttpClient which makes this easy to do. The listed features below: *Transparent

Re: [NewBie]Tomcat logs

2003-10-10 Thread Julie christiana
Sorry to bother you all with so many questions, but could you please send me a sample server.xml which achieves the same. Any documentation for the same would also be useful. Thanks, Julie Chritiana Tim Funk [EMAIL PROTECTED] wrote: The AccessLogValve does not have the ability to perform the

mod_jk lbfactor strangeness

2003-10-10 Thread tomcat
All, hope this is the right place for this. I've an apache servers with 4 backend app servers and using mod_jk to balance the load over them. Two of the machines are a fair bit quicker than the other two, so I've adjusted the weighting with lbfactor app1 (slow) = lbfactor=100 app2 (slow) =

Re: [NewBie]Tomcat logs

2003-10-10 Thread Tim Funk
See the javadocs for AccessLogValve (prefereably your local version since the site is a version out of date. Any setXXX(stuff) method can be set declared in the AccessLogValve decalration. For example, there is a property called rotatable as indicated by setRotatable(boolean). This can be set

RE: mod_jk lbfactor strangeness

2003-10-10 Thread Ralph Einfeldt
1. mod_jk doesn't balance the load on the base of packets. 2. mod_jk works with sticky sessions so only new sessions are balanced. I belief but am not shure that it's just round robin. 3. Bill Barker claims that the load balancing is broken as the instances of mod_jk don't know

OT How to maintain a version number

2003-10-10 Thread Jim Lynch
I've written an application where I need to keep up with the version number. I'm trying to figure out an elegant way to maintain that in the simplest and perhaps the most automated way. My source is kept in a cvs archive but of course there are dozens of files so it would be difficult to

RE: OT How to maintain a version number

2003-10-10 Thread Koes, Derrick
Property file? -Original Message- From: Jim Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 8:17 AM To: Tomcat Users List Subject: OT How to maintain a version number I've written an application where I need to keep up with the version number. I'm trying to figure out

RE: OT How to maintain a version number

2003-10-10 Thread Euan Guttridge
Easy if you build with ANT - but very OT! Use the increment task to increment a property file, then a filterset to place that version number into a JSP/HTML. For more info email me direct or post to ANT mailing list. Euan -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED]

RE: How to use jar files from CLASSPATH

2003-10-10 Thread Cox, Charlie
tomcat doesn't use the classpath. You can copy your jar into /common/lib and it will be shared by all your webapps. see the classloader doc: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html Charlie -Original Message- From: Zsolt Koppany [mailto:[EMAIL

RE: Setting variables.

2003-10-10 Thread Euan Guttridge
Why do you want to set the classpath? If for tomcat then as previous post - tomcat doesn't use the classpath, neither for itself nor for the webapps within it. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html -Original Message- From: anunay ashish [mailto:[EMAIL

RE: mod_jk lbfactor strangeness

2003-10-10 Thread tomcat
1 Understood, it was just to get some ballpark indication 2 Surely then the new session would be balanced to the faster machine, and I would see more activity on them. 3 That would explain everything :( Would a move to mod_jk2 be of any use, or should I get someone to put their hand in their

RE: OT How to maintain a version number

2003-10-10 Thread Shapira, Yoav
Howdy, You could have a common header jsp that's included in pages, which gets the version number from a servlet context parameter, or a property file. JNDI is too heavyweight for this I think. The purely ant approach is alright. Yoav Shapira Millennium ChemInformatics -Original

RE: Web-app setup

2003-10-10 Thread Shapira, Yoav
Howdy, As the other dude suggested, your url-pattern is wrong. It's relative to your docbase, so you don't need the leading /myapp. /Login would be a good URL pattern. Your JSP form action would then be ./Login (or /myapp/Login but I prefer relative links for portability). Yoav Shapira

I post a text XML with Microsoft.XMLHTTP to servlet

2003-10-10 Thread Jose Alanya
Hi, I post a text XML with Microsoft.XMLHTTP to servlet, As I can recover the value of object request from of servlet This can : something like : Document oDocument = xml.paser(objrequest) Not getparameter, not getquerystring Please help me! Thanks, best regards, Jose Alanya From, Lima

Where to download Tomcat v 4.1.24 from?

2003-10-10 Thread Agarwal, Naresh
Hi I could not find Tomcat v 4.1.24 in packaged form at the Tomcat site. Only place I could find it was the cvs. Could anyone please help me out? thanks, Naresh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: tomcat jitters, then hangs - please help

2003-10-10 Thread Ryan Lissack
Hi Noam, Remy pointed out to me previously that RH9 uses a new form of threading and based on this we have done some investigation. RH9 uses NTPL (Native POSIX Thread Library) http://www.redhat.com/docs/manuals/linux/RHL-9-Manual/release-notes/x86/ It is possible to revert to the older form of

Re: Tomcat 4 + Apache 1.3 + mod_jk lb session loss

2003-10-10 Thread Ned Regina
Bingo! Thanks a million. It's been so long since I set up the old system that I must have forgotten that *minor* detail. It sure would be nice if the term jvmRoute appeared somewhere in the JK docs. At 05:00 PM 10/9/2003, you wrote: It's my understanding that the jvmRoute values must match

RE: Where to download Tomcat v 4.1.24 from?

2003-10-10 Thread Shapira, Yoav
Howdy, If you really want, you can find it on mirrors. But why? Just get 4.1.27. Yoav Shapira Millennium ChemInformatics -Original Message- From: Agarwal, Naresh [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 1:50 AM To: [EMAIL PROTECTED] Subject: Where to download Tomcat v

RE: tomcat jitters, then hangs - please help

2003-10-10 Thread Shapira, Yoav
Howdy, Please also post an update if you DON'T have any problems, so that the few good souls who actually search list archives before posting questions can have a reference in the future ;) Thanks, Yoav Shapira Millennium ChemInformatics -Original Message- From: Ryan Lissack

RE: I post a text XML with Microsoft.XMLHTTP to servlet

2003-10-10 Thread Shapira, Yoav
Howdy, You need to read the whole request into a String. Then, since you want a DOM document, use a DOM document builder to get it, e.g. String xmlInput = ... Reader reader = new Stringeader(xmlInput); InputSource inputSource = new InputSource(reader); DocumentBuilderFactory dbf =

RE: Tomcat4.1, jk2, and apache 1.3

2003-10-10 Thread Mark Claassen
Well, I figured out how to get jk2 and apache 1.3 working...sort of. Now I am getting this error. I have seen lots of others ask about this, but no real answers. Does anyone have one now? (error) [jk_msg_ajp.c (447)]: msgAjp.receive(): Bad signature 5374 (error) [jk_channel_socket.c (549)]:

RE: Tomcat4.1, jk2, and apache 1.3

2003-10-10 Thread Mark Claassen
Repost. I forgot to include some necessary information Well, I figured out how to get jk2 and apache 1.3 working...sort of. Now I am getting this error. I have seen lots of others ask about this, but no real answers. Does anyone have one now? I get the following error when I try to access

RE: OT How to maintain a version number

2003-10-10 Thread Ralph Einfeldt
We tag our application with each release and use the cvs tag $Name:$ in our sources to optain the version number of the application. -Original Message- From: Jim Lynch [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 2:17 PM To: Tomcat Users List Subject: OT How to maintain

ssl client authentication again

2003-10-10 Thread Twan Munster
Hello, I've worked around with using apache+mod_ssl, but i'm running in several problems now so please can somebody help me with the next problem: I've always used apache http server for client authenticatien with ssl. I've installed Tomcat now voor mij jsp's. But I'm not able to get the ssl

redirect port 8080 to 443

2003-10-10 Thread Twan Munster
Hello, I'm using apache+mod_ssl+mod_jk to make a secure connection. But every time I call a page in cocoon it is called through port 8080. Is it possible to redirect a call to port 8080 to port 443? And not for the entire server, but only for a certain directory?How is this done? thnx Twan

Newbie question

2003-10-10 Thread Jesús Gutiérrez Ramírez
Hi, I'm new using tomcat (over windows xp) and ANT, I was doing the example exercise http://jakarta.apache.org/tomcat/tomcat-5.0-doc/appdev/index.html, using the files included. When I want to install my app on the tomcat server using the ANT INSTALL command I receive the next

Re: Still needing help with DBCP - slow response time

2003-10-10 Thread Adam Hardy
On 10/09/2003 11:58 PM Jose Euclides da Silva Junior - DATAPREVRJ wrote: Hi, i am still having problems with DBCP 1.0 - TomCat 4.18. Some hints: 1 - I didnt setted the server.xml up. 2 - I am using the Oracle Thin Driver 3 - I ve created my own connection pooling class, called BeanPoolConn, which

RE: Where to download Tomcat v 4.1.24 from?

2003-10-10 Thread Agarwal, Naresh
I got it. My web app was initially not working with 4.1.27 but now its working. thanks, Naresh -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 6:27 PM To: Tomcat Users List Subject: RE: Where to download Tomcat v 4.1.24 from? Howdy, If

Tomcat webapp is ignoring the system class path

2003-10-10 Thread Agarwal, Naresh
Hi I'm deploying a web app in the Tomcat. This web app reads a properties files through resource bundle. I've put the path of this properties file in the class path but while running the web app, I'm getting exception that properties file does not exist. Thus tomcat is ignoring the

RES: Still needing help with DBCP - slow response time

2003-10-10 Thread Jose Euclides da Silva Junior - DATAPREVRJ
Thanks Adams. I will try it. -Mensagem original- De: Adam Hardy [mailto:[EMAIL PROTECTED] Enviada em: sexta-feira, 10 de outubro de 2003 11:54 Para: Tomcat Users List Assunto: Re: Still needing help with DBCP - slow response time On 10/09/2003 11:58 PM Jose Euclides da Silva Junior -

RE: Tomcat webapp is ignoring the system class path

2003-10-10 Thread Shapira, Yoav
Howdy, You can make tomcat read the system classpath, but you don't want to. Read this: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html. Then search the archives if you're still not convinced you shouldn't make tomcat read the system classpath. Put your resource

RE: Tomcat webapp is ignoring the system class path

2003-10-10 Thread Jay Garala
modify the $Tomcat/bin/setClasspath.bat (sh), ~ Line 41 set CLASSPATH=%JAVA_HOME%\lib\tools.jar;%CLASSPATH% Jay Garala Senior Analyst Electrosoft Services, Inc. 7918 Jones Branch Drive, Suite 600 McLean, VA 22102 (703) 918-4907 -Original Message- From: Agarwal, Naresh [mailto:[EMAIL

RE: mod_jk lbfactor strangeness

2003-10-10 Thread David Rees
On Fri, October 10, 2003 at 5:47 am, [EMAIL PROTECTED] sent the following On Fri, 10 Oct 2003, Ralph Einfeldt wrote: 2. mod_jk works with sticky sessions so only new sessions are balanced. I belief but am not shure that it's just round robin. 2 Surely then the new session would be

2 Questions ..

2003-10-10 Thread Mufaddal Khumri
Hi, Am running my webapp under tomcat 4.1.18. Everything was fine till yesterday. I am facing this issue today. I wrote a new taglib - nextPrevLink for a jsp page called PotatoList.jsp. cw:nextPrevLink listSize='%= getTotalNumberOfPotatoes()%'

Re: 2 Questions ..

2003-10-10 Thread Tim Funk
Its probably the java compiler. If your constant is declared final, the compiler may be performing an optimization and taking the value insteadof a run-time reference. You can get around this by not using a constant and using a get method. -Tim Mufaddal Khumri wrote: Hi, Am running my

Re: Newbie question

2003-10-10 Thread Jon Wingfield
Your windoze path is probably being interpreted as a url without a protocol. The drive letter C is being interpreted as a hostname. Try with something like file:///c:\path\to\war\app.war HTH, Jon Jesús Gutiérrez Ramírez wrote: Hi, I'm new using tomcat (over windows xp) and ANT, I was

Why should i use Tomcat vs .NET?

2003-10-10 Thread Eduardo Vazquez
I work for a small company which is seriously considering the .NET route moving into the future. My mission if I chose to accept is to sway popular opinion towards Tomcat (Jakarta) for reasons I've yet to summarize because I can't confidently regurgitate any (I'm new to Linux/Tomcat for the most

RE: Why should i use Tomcat vs .NET?

2003-10-10 Thread Shapira, Yoav
Howdy, Please let's not turn this into another net versus J2ee debate ;) There are many references online, comparisons, case studies, and heated flame wars. Just google for them. Yoav Shapira Millennium ChemInformatics -Original Message- From: Eduardo Vazquez [mailto:[EMAIL

RE: Why should i use Tomcat vs .NET?

2003-10-10 Thread Angus Mezick
Hrm... Tomcat side: 1) $$$ 2) If there are bugs, more $$$ for support instead of just being able to fix the darn things. 3) Tomcat has a HUGE/ACTIVE user community. You can actually get help from the people who write this stuff. 4) The dev tools are free too (eclipse/netbeans/jedit/etc) 5) You

Re: Clustering Tomcat - Loadbalancing and Failover

2003-10-10 Thread Filip Hanik
http://cvs.apache.org/~fhanik/ how are session states replicated? once, after the entire request is completed. If the session is not dirty, no replication will be done Doesn't use java groups, instead pure UDP/TCP. Filip - Original Message - From: jerome moliere [EMAIL

RE: Why should i use Tomcat vs .NET?

2003-10-10 Thread Eduardo Vazquez
I'm defiantly not trying tobut even after calling up SUN and asking them to sell me on their technology I've received very little in terms of pros/cons either way. I've done my share of googleing with no substantial returns. That's why I'm pinging the users now, what better place to go than to

Re: OT How to maintain a version number

2003-10-10 Thread srevilak
I've written an application where I need to keep up with the version number. I'm trying to figure out an elegant way to maintain that in the simplest and perhaps the most automated way. My source is kept in a cvs archive but of course there are dozens of files so it would be difficult to

RE: Help root context problem!!!

2003-10-10 Thread JStanczak
Well, I got it to work, but I don't care for it. I'd like to know what's wrong if someone knows. Here's the jsp below: % java.net.URL url = new java.net.URL(request.getRequestURL().append(/PageWorks/servlet/PageMill).toString()); java.net.URLConnection connect = url.openConnection();

Tomcat 4/5 Clustering.

2003-10-10 Thread Nathan Christiansen
Filip, Thanks for the link to your site on Tomcat clusters. Are there any preliminary results about cluster size vs. replication traffic and limitations? If I remember right, the limit for load balancing clusters using an older method was about 6 servers in your cluster before the session

RE: Why should i use Tomcat vs .NET?

2003-10-10 Thread Wade Chandler
First off JSP/Servlet aren't going to lock you into one company. JSP/Servlets are standardized. Sure some differences in servers, but for deploying an application, if the server you are deploying on accepts the version of the JSP/Servlet spec your app is in, then you will just deploy it. Whether

Re: Tomcat 4/5 Clustering.

2003-10-10 Thread Filip Hanik
Are there any preliminary results about cluster size vs. replication traffic and limitations? if you have a GIGA network, you can go pretty wild! If I remember right, the limit for load balancing clusters using an older method was about 6 servers in your cluster before the session object

RE: Help root context problem!!!

2003-10-10 Thread Wade Chandler
I did not see the other posts, but anytime I have a problem with issues like this I use a meta tag to make the page expire some time ago. I usually put stuff like this: META HTTP-EQUIV=expires CONTENT=Tue, 2 OCT 1996 17:45:00 GMT in my head. There is also a header which you can set in your

RE: Tomcat 4/5 Clustering.

2003-10-10 Thread Nathan Christiansen
It has been done for years, PersistentManager does that already. It is a pretty slow way of replication Thanks, I'll look at PersistentManager. Slow? I guess so. I have eliminated most of the database overhead by using DBCP to create a connection pool. However... Using my method of

Re: clustering

2003-10-10 Thread Alkesh Badshah
Thanks for the info. To answer your question, I'm using a hardware based loadbalancer. I've removed the old javagroups jar and added the context element from http://cvs.apache.org/~fhanik/. Looking at the Tomcat window, it seems as if it is storing the session info. There are informational

Is the apache directive SetHandler supported in 4.1.x and above?

2003-10-10 Thread Nathan Christiansen
Is the apache directive SetHandler supported in 4.1.24 and above? All I can find about SetHandler and Tomcat on the Jakarta site is info about Tomcat 3.x. -- Nathan Christiansen Tahitian Noni International http://www.tahitiannoni.com

Re: clustering

2003-10-10 Thread Filip Hanik
shutdown tomcat delete all your log files startup tomcat send me the fresh log files to my personal account, (incl, server.xml) what could be happening is that you are not establishing membership correctly Filip - Original Message - From: Alkesh Badshah [EMAIL PROTECTED] To: [EMAIL

Re: Web-app setup

2003-10-10 Thread Duane Kehoe
Do my webapp name, servlet name, and directory name have to be the same name, is this the issue here? I have tried your suggestion with no luck, the only reason I had the extended path was because I had seen some examples on the web like that. My only other thought was that I had bad

Which key alias names to use for SSL?

2003-10-10 Thread Sonny Sukumar
Hi guys, I'm trying to setup my Tomcat (4.1.27) server to work with SSL. I got a CA-signed cert to go with my private key and CA root cert, but I'm confused as to how to name the alias for the CA-signed-cert and my private key. The Tomcat SSL How-To is confusing me, becuase it says to give

Tomcat 3.x Question

2003-10-10 Thread Robert Charbonneau
Is there any way that I can have Tomcat automatically pickup additional webapps in my webapps directory on startup and auto-configure for it? For example: add webapps/MyApp /usr/local/tomcat/bin/shutdown.sh /usr/local/tomcat/startup.sh And have http://host.com/MyApp available to me after

RE: Why should i use Tomcat vs .NET?

2003-10-10 Thread Shawn Zernik
Linux web servers have a lower cost or ownership - Topcat is a Linux solution with about the same features as ASPX. Shawn Zernik Internetwork Consulting www.internetworkconsulting.net -Original Message- From: Eduardo Vazquez [mailto:[EMAIL PROTECTED] Sent: Friday, October 10, 2003 10:48

4.1.27: Manager app 'reload' causing ClassNotFoundException

2003-10-10 Thread Justin Ruthenbeck
Hello All: Tomcat 4.1.27 JDK 1.4.1_02 OS: Windows 2k I've thoroughly read: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/manager-howto.html http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html This list for the past 16 months :) Problem: My (simple demonstration) webapp runs

Attribute attribute invalid according to the specified TLD ??

2003-10-10 Thread Mufaddal Khumri
Hi, Does anybody know why I would get the following exception: org.apache.jasper.JasperException: /MyJsp.jsp(103,2) Attribute pramValues invalid according to the specified TLD at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHand ler.java:94) at

RE: Tomcat 3.x Question

2003-10-10 Thread Larry Isaacs
Assuming you are referring to Tomcat 3.3.x, you need to also execute: /usr/local/tomcat/startup.sh jkconf prior to restarting Apache. This will update the mod_jk.conf used to configure mod_jk. See: http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html for details about

Re: 4.1.27: Manager app 'reload' causing ClassNotFoundException

2003-10-10 Thread Justin Ruthenbeck
My apologies ... this is covered here: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22096 Date: Fri, 10 Oct 2003 12:18:03 -0700 To: Tomcat Users List [EMAIL PROTECTED] From: Justin Ruthenbeck [EMAIL PROTECTED] Subject: 4.1.27: Manager app 'reload' causing ClassNotFoundException Hello All:

SOLVED -- RE: Problems with mod_jk and Apache SetHandler

2003-10-10 Thread Nathan Christiansen
I am posting the solution so that someone else can benefit from my work. The problem was solved by wrapping the FilesMatch... directive in a DirectoryMatch... directive as follows: # Exclude the Tomcat webapps directory from the Mason handler DirectoryMatch !/var/tomcat4/webapps/ FilesMatch

tomcat and mac os 10.2.8 update

2003-10-10 Thread Augustina Blair
i have a quick question... i had jakarta-tomcat-4.1.27 installed and working fine on my system. after i installed the update i keep getting this weird error message (i have a little scripty thing as per apple's instructions, that's the first 4 lines of output): Using CATALINA_BASE:

locate iis_redirect.dll for Windows 2003 and IIS 6.0

2003-10-10 Thread Tuan Quan
Anyone knows where to get one. THe one i got worked with Windows 2000 and IIS 5.0 but does not work w/ Windows 2003 and IIS 6.0. I'm using Tomcat 4. thanks. - Do you Yahoo!? The New Yahoo! Shopping - with improved product search

Is my binary build from Apache optimized for SMP?

2003-10-10 Thread Glenn Parsons
Hello All, I am a systems administrator with little coding experience. I would like to know if the binaries I've downloaded are optimized for SMP? How would I know or where could I find out? TIA, Glenn - To unsubscribe,

RE: NOT SOLVED -- RE: Problems with mod_jk and Apache SetHandler

2003-10-10 Thread Nathan Christiansen
Actually this code prevents Mason from working. -- Nathan Christiansen Tahitian Noni International http://www.tahitiannoni.com -Original Message- From: Nathan Christiansen Sent: Friday, October 10, 2003 1:34 PM To: Tomcat Users List Subject: SOLVED -- RE: Problems with mod_jk and

Struts Configuration

2003-10-10 Thread Issam Katan
Hallo, who can one config the struts Framework in the Tomcat ??? thanks - Gesendet von http://mail.yahoo.de Schneller als Mail - der neue Yahoo! Messenger.

Re: Struts Configuration

2003-10-10 Thread Filip Hanik
anyone who wants to! - Original Message - From: Issam Katan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 10, 2003 1:31 PM Subject: Struts Configuration Hallo, who can one config the struts Framework in the Tomcat ??? thanks

RE: REALLY SOLVED THIS TIME -- RE: Problems with mod_jk and Apache SetHandler

2003-10-10 Thread Nathan Christiansen
We finally found a solution: DirectoryMatch /home/httpd/redesign/ FilesMatch \.html*$|\.csv$|\.txt$|^[^\.]*$ SetHandler perl-script PerlHandler Mason::Site::Redesign PerlLogHandler Mason::Site::Redesign-loghandler /FilesMatch /DirectoryMatch -- Nathan Christiansen Tahitian

Re: Why should i use Tomcat vs .NET?

2003-10-10 Thread Werner van Mook
This one is not pro Tomcat. What about vendor locking? If you choose .Net you are bound to Mickeysoft. Can never change or have to do all the work again. You will tie your customers into .Net too. Will it be what they want? If you choose Java/Tomcat you can still run it on Mickeysoft. But then I

Re: Attribute attribute invalid according to the specified TLD ??

2003-10-10 Thread Tim Funk
I think the error is pretty clear that you have a typo. pramValues should be paramValues -Tim Mufaddal Khumri wrote: Hi, Does anybody know why I would get the following exception: org.apache.jasper.JasperException: /MyJsp.jsp(103,2) Attribute pramValues invalid according to the specified

Performance problem?

2003-10-10 Thread Neil Aggarwal
Hello: We have noticed that in our app, on occasion, a request takes an inordinately long time to execute even though it is performing a simple task. I added some tracing to the org.apache.jasper.servlet.JspServletWrapper class and get this output immediately before calling service on the

[OT] tomcat netiquete; please ban autoresponders

2003-10-10 Thread Jens Skripczynski
Arjen van der Weijden: I will be out of the office starting 10/10/2003 and will not return until 11/04/2003. I will respond to your message when I return. Since this happens quite often, I think it may be usefull, to add another etiquette to the general mailinglist page. I belief

RE: Struts Configuration

2003-10-10 Thread mike jackson
There's a decent tool available called struts studio. Google for it and it'll help you do the configuration. There's also some plugins for eclipse, easy struts comes to mind. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Issam Katan [mailto:[EMAIL

Re: ssl client authentication again

2003-10-10 Thread Bill Barker
The Tomcat 5 docs have an example for this: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/ssl-howto.html Since it's just about setting up the KeyStore, this section applies to Tomcat 4 (or even Tomcat 3 :) as well. Twan Munster [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello,

Re: redirect port 8080 to 443

2003-10-10 Thread Bill Barker
It's in the FAQ: http://jakarta.apache.org/tomcat/faq/security.html#https Twan Munster [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I'm using apache+mod_ssl+mod_jk to make a secure connection. But every time I call a page in cocoon it is called through port 8080. Is it

How to use jar files from CLASSPATH

2003-10-10 Thread Zsolt Koppany
Hi, my application has to use DB2 JDBC that is in the CLASSPATH. How can I get tomcat-4.1.24 to search for entries from CLASSPATH? I understand that I could probably copy the entries from CLASSPATH into .../WEB-INF/lib, but this JDBC driver does use native libraries, thus I would not like to

Re: mod_jk lbfactor strangeness

2003-10-10 Thread Bill Barker
[EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] 1 Understood, it was just to get some ballpark indication 2 Surely then the new session would be balanced to the faster machine, and I would see more activity on them. 3 That would explain everything :( Would a move to mod_jk2 be