Deliver Mail (bratislava@ups.sk)

2004-03-31 Thread TOIS
An e-mail was sent to you with an attachment. It contains a virus. It was saved on your mail server. Sender was: [EMAIL PROTECTED] Recipient was: [EMAIL PROTECTED] TOIS - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: restarting tomcat

2004-03-31 Thread Adam Buglass
Yes, you need to reload the webapp for changes to be recognised, although for caching reasons, some browsers may not recognise the change to a JSP straightaway. JSP's are compiled on-the-fly and compiled in the work directory as you mentioned. I use the ant build tool for this, I'm not sure what

Réf. : Re: Unable to read Certificate with TOMCAT and APACHE

2004-03-31 Thread ccunin
The Tomcat version is an 5.0.19. We are using then mod_jk module with apache(not mod_jk2), but we defined a JK2 connector under Tomcat like this one. !-- Define a Coyote/JK2 AJP 1.3 Connector on port 8009 -- Connector port=8009 enableLookups=false redirectPort=8443 debug=0

Re: tomcat sends every email 3 times

2004-03-31 Thread zhicheng wang
Hi you are right. i configured web.xml to call a servelet or a perl cgi script to send email whenever 404 is encountered. the problem is that i always get three emails for one error any idea? --- Chong Yu Meng [EMAIL PROTECTED] wrote: Hi Cheng, How are you testing this? Do you have a

RE: What is the use of this connector

2004-03-31 Thread Dale, Matt
Correct, and it is commented out in the sample you posted already so is not actually being used. Ta Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 07:15 To: Tomcat Users List Subject: Re: What is the use of this connector Bill, So,

RE: I can´t compile the jk connector source for apache 2.0.40 in Redhat 9.0

2004-03-31 Thread Dale, Matt
Is there any reason that you are not using the JK2 connector, as it was written for apache 2? -Original Message- From: Salvador Santander Gutierrez [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 08:49 To: Tomcat List Subject: I can´t compile the jk connector source for apache 2.0.40 in

an question about jk2 lbfactor

2004-03-31 Thread moch
hi all, what's the jk2's properties value lbfactor really mean? I have set up a cluster by apache + jk2 + tomcat5, it has 2 node, I want tomcat1 to process all request and tomcat2 just as an backup. so I set tomcat1's lbfactor=100 and tomcat2's lbfactor=0, but almost all request go to

Re: What's happening to my beans?

2004-03-31 Thread Niki Ivanchev
Just don't forged to synchronize the access to the singleton mehtods... in standalone application synchronization is not needed, but in server side code it is vital. Singleton is a class that may have zero or one instance only. It is achived with private constructor. Charles Daniel wrote:

Of .war and .jar files - and .jsp class files

2004-03-31 Thread Malcolm Warren
I am changing from Jrun to Tomcat and I have just one problem remaining. Jrun gave an additional security possibility that I am unable to extend to Tomcat. In Jrun you do not need to place your .jsp files, nor the automatically generated .java files on your production server. I could simply

RE: an question about jk2 lbfactor

2004-03-31 Thread Greg . Cope
Yes. Lower LB factor means more requests go to that server. Greg -Original Message- From: moch [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 10:31 To: tomcat-user Subject: an question about jk2 lbfactor hi all, what's the jk2's properties value lbfactor really mean?

Re: Servlet on Tomcat + Oracle +ISU 8859-8 (Hebrew CharSet) - encodin g problem

2004-03-31 Thread Veniamin Fichin
This is my problem also, and sadly it's so since long time I use Tomcat. I've attach a simple little test case .war file to reproduce the problem. There are four HTML forms there, two of them submits to JSP page (GET and POST methods), others go to servlet (same methods). On top of it is

Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
Hi, I want to have different certificates for different virtual hosts on my tomcat setup (embedded in JBoss). I only have 1 IP address. I want to use the default ports (80 443) for each virtual server. A certificate doesn't say anything about the IP address - only the common name (ie the

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Martin Alley
Stick the class files in WEB-INF/classes in the appropriate package hierarchy. Eg. Com.mycompany.myclass in WEB-INF/classes/com/mycompany/myclass.class -Original Message- From: Malcolm Warren [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 11:03 To: [EMAIL PROTECTED] Subject: Of .war and

JSP problems

2004-03-31 Thread Dennis Thrysøe
Hi, I'm still having the problem I already wrote about, as a result of upgrading a tomcat 4.0.1 installation to 4.1.30. I get a ClassNotFoundException for the generated JSP class. The generated classes are written to the context work directory with the same nameing and structure as the JSPs

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread QM
On Wed, Mar 31, 2004 at 12:02:40PM +0200, Malcolm Warren wrote: : Jrun gave an additional security possibility that I am unable to extend to : Tomcat. In Jrun you do not need to place your .jsp files, nor the : automatically generated .java files on your production server. I could : simply .jar

JkMount command for the setup having apache tomcat/5.0.19 not working with jk connector dll

2004-03-31 Thread Barkha Shah
Hi All, I am receiving HTTP Status 404 - /logion.jsp error while trying to send request to apache using jk connector. Jk connector version: 1.2 apache: 1.3.29 tomcat : 5.0.19 I am trying to access a site http://localhost/shoestore/login.jsp kept under the location of webapps folder in tomcat. I

Re: JSP problems

2004-03-31 Thread QM
On Wed, Mar 31, 2004 at 01:59:56PM +0200, Dennis Thrys?e wrote: : I'm still having the problem I already wrote about, as a result of : upgrading a tomcat 4.0.1 installation to 4.1.30. I missed your first message. If what I say here doesn't help, please refresh me on the problem. : [snip] the

Re: JSP problems

2004-03-31 Thread Dennis Thrysøe
QM wrote: : [snip] the classes are declared in the package org.apache.jsp. : : Any ideas, how I can make tomcat (jasper?) load the classes that it just : generated and then compiled? So then, you're precompiling the JSPs? Nope. Just plain old JSP's in a webapp. Jasper generates servlets and

[Fwd: Re: Servlet on Tomcat + Oracle +ISU 8859-8 (Hebrew CharSet) - encodin g problem]

2004-03-31 Thread Veniamin Fichin
Some fixes to WAR file posted recently. Now POST methods all work fine, but none of GET. Original Message Subject: Re: Servlet on Tomcat + Oracle +ISU 8859-8 (Hebrew CharSet) - encodin g problem Date: Wed, 31 Mar 2004 14:34:27 +0400 From: Veniamin Fichin [EMAIL PROTECTED]

symbolic link with a jar file

2004-03-31 Thread Christophe LECONTE
I want to authorize Tomcat to use symbolic link with a jar file. I'm trying to use this following instruction in the server.xml file : Context path=/voicexmlpageserver docBase=voicexmlpageserver debug=0 Resources className=org.apache.naming.resources.FileDirContext allowLinking=true

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread FRANCOIS Dufour
hi to all it mignt help you out a bit for the nobody could look! look at your %Tomcat_home%/conf/web.xml read the instruction you can disable listing there [EMAIL PROTECTED] administrateur http://entre-nous.qc.tc From: Martin Alley [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL

RE: [Fwd: Re: Servlet on Tomcat + Oracle +ISU 8859-8 (Hebrew Char Set)- encodin g problem]

2004-03-31 Thread yair . fine
Thanks Veniamin Fichin, Can you copy paste your code that solves the problem? Regards Yair Fine -Original Message- From: Veniamin Fichin [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 2:20 PM To: [EMAIL PROTECTED] Subject: [Fwd: Re: Servlet on Tomcat + Oracle +ISU 8859-8

Re: restarting tomcat

2004-03-31 Thread Tim Funk
Changed items can be re-loaded on the fly because of dynamic classloading. Every JSP instance lives in its own classloader. When a jsp source file is changed, the JSP servlet recognizes the change and recompiles the JSP. Once the JSP is translated to a new .java (and .class file) - the class

Re: Configuring Tomcat on different IP's

2004-03-31 Thread Parsons Technical Services
Uma, Do a ping localhost from the command line. It will only resolve to one name. So don't get concerned that it doesn't work. As long as the IPs work you are fine. Now for the access issue. Did you set up a security constraint in your web.xml file? Add this to the web.xml of the app on the

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Malcolm Warren
Thank you very much for your answers, but they haven't quite hit the mark yet. Every .jsp page in Tomcat, as we all know, is compiled in /work/Standalone/localhost/ in an appropriate application folder e.g. _ is the folder in the case of the ROOT application. It's fine by me if this is done

Re: [Fwd: Re: Servlet on Tomcat + Oracle +ISU 8859-8 (Hebrew Char Set)- encodin g problem]

2004-03-31 Thread Veniamin Fichin
[EMAIL PROTECTED] wrote: Thanks Veniamin Fichin, Can you copy paste your code that solves the problem? The output encoding of view.jsp page was hard-coded utf-8 value. I changed it to be more flexible by lookling into session attribute which was set previously. Code snipped follows. ---

Re: Configuring Tomcat on different IP's

2004-03-31 Thread UmamaheswarKalluru
Doug, Thanks for reply. I am not clear with this line Add this to the web.xml of the app on the https side. Do you mean to add those lines in the web.xml of IBS context(which contain HTTPS files)? or the web.xml file present in the conf directory? Add the following elements to your context as

What is the the maximum characters that Tomcat can handle in a Se rvlet URL (doGet request) ?

2004-03-31 Thread yair . fine
Hi, What is Tomcat's limitation in getting requests through the URL - to use the doGet method I.e if i run a Servlet, and i want to receive the request in the url ,what is the the maximum characters i can get ? Regards Yair Fine

Re: Configuring Tomcat on different IP's

2004-03-31 Thread Parsons Technical Services
Uma, Doug, Thanks for reply. I am not clear with this line Add this to the web.xml of the app on the https side. Do you mean to add those lines in the web.xml of IBS context(which contain HTTPS files)? Yes or the web.xml file present in the conf directory? No. Note that adding anything

Re: What is the the maximum characters that Tomcat can handle in a Se rvlet URL (doGet request) ?

2004-03-31 Thread Niki Ivanchev
As far as I remember 1024 is the limit of URL by RFC. Niki [EMAIL PROTECTED] wrote: Hi, What is Tomcat's limitation in getting requests through the URL - to use the doGet method I.e if i run a Servlet, and i want to receive the request in the url ,what is the the maximum characters i can get ?

Re: Configuring Tomcat on different IP's

2004-03-31 Thread UmamaheswarKalluru
Doug, Thanks for the info. I will try these settings and get back to you. Thank you, Best Regards, Uma Parsons Technical

Re: What is the the maximum characters that Tomcat can handle in a Se rvlet URL (doGet request) ?

2004-03-31 Thread Evgeny Gesin
I think that limitation is by HTTP protocol and not directly specified. Practically I seen the GET limit sending about 3000-3500 characters Evgeny Gesin Javadesk --- [EMAIL PROTECTED] wrote: Hi, What is Tomcat's limitation in getting requests through the URL - to use the doGet method

RE: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
Okay, I see that the address attribute of the connector element can be used to retrict IP/port combinations. As I've only got 1 IP this doesn't really affect me. Either I've misunderstood something fundamental, or the configuration capabilities are not optimal. Any one? Thanks Martin

RE: [OT] is Host part of Request URL?

2004-03-31 Thread Shapira, Yoav
Hi, Oh my, so many typo/mistakes in my original post, sorry. That's OK. I figured you were confusing request URL and URI anyways. The JavaDoc for HttpServletRequest has decent definitions/examples. Yoav Shapira This e-mail, including any attachments, is a confidential business

Re: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Parsons Technical Services
Martin, You missed something fundamental. See the following document for a brief description of the problem. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html For a more detailed description see: http://httpd.apache.org/docs-2.0/ssl/ssl_intro.html Short answer you can't. I have an

RE: Change default Context

2004-03-31 Thread Shapira, Yoav
Hi, The default context is just the one whose path is (the empty string). It's not the one whose path is /IBS1 or anything except . What you're asking for is not to change the default context, but to do a redirect from the context whose path is to the one whose path is /IBS1. This distinction

RE: context mapping problem after upgrade from 4.1.29 to 4.1.30

2004-03-31 Thread Shapira, Yoav
Hi, 2004-03-30 11:52:59 StandardHost[localhost]: Mapping request URI '/fileupload/fileUpload.html' 2004-03-30 11:52:59 StandardHost[localhost]: Trying the longest context path prefix 2004-03-30 11:52:59 StandardHost[localhost]: Mapped to context '/fileupload' OK. 2004-03-30 13:41:22

RE: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Shapira, Yoav
Hi, You can precompile your JSPs and include the class files in the WAR. In addition, no one can see the compiled .java files for your JSPs anyways because they're in tomcat's work directory, not in a web-accessible location. Yoav Shapira Millennium Research Informatics -Original

RE: tomcat sends every email 3 times

2004-03-31 Thread Shapira, Yoav
Hi, you are right. i configured web.xml to call a servelet or a perl cgi script to send email whenever 404 is encountered. the problem is that i always get three emails for one error any idea? Check your servlet and your script obviously ;) No one can help with the little information you've

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Niki Ivanchev
I think, he means that he can redistribute his application wihtout giving the person who will install the application on it's server the access to jps code. Obviously no one can access jsp code via web server. Niki Shapira, Yoav wrote: Hi, You can precompile your JSPs and include the class

RE: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Martin Alley
Hi Doug, I guess my point is that given there may be multiple certificates installed on a web server, and given that certificates authenticate Distinguished Name there should be an effective way to make sure the correct certificate is sent to the user. The certificate isn't just for viewing on

Tomcat Upgrade

2004-03-31 Thread Reis, Tom
I am looking to upgrade from Tomcat 4.0.3 to Tomcat version 4.1.30. Is there any easy way to upgrade or do I have to install the software and reconfigure the server.xml, web.xml,ssl and copy things from the old version to new.

Re: Help with Cross context

2004-03-31 Thread Aadi Deshpande
i believe crossContext marks that specific web application as being able to initiate a cross-context request, not as the recipient of a cross-context request. so try marking the other web-application that you are calling out from as crossContext=true -a [EMAIL PROTECTED] wrote: Hey gang,

Re: an question about jk2 lbfactor

2004-03-31 Thread Aadi Deshpande
Hi, I don't think that is correct. From the mod_jk documentation : Using the worker's load-balancing factor, perform weighed-round-robin load balancing where high lbfactor means stronger machine (that is going to handle more requests) I would assume that mod_jk2 retains the same semantics as

RE: Tomcat Upgrade

2004-03-31 Thread Shapira, Yoav
Hi, I am looking to upgrade from Tomcat 4.0.3 to Tomcat version 4.1.30. Is there any easy way to upgrade or do I have to install the software and reconfigure the server.xml, web.xml,ssl and copy things from the old version to new. There's no easy way. You have to do a new install, setup

JK2 and iPlanet/Netscape/SunONE?

2004-03-31 Thread Benjamin Armintor
We're using the jk1.2 redirector for the Netscape Enterprise Servers, and would like to upgrade to jk2. Is anyone using jk2 with an NSAPI interface? It doesn't look supported in either the jk2 docs or The source, but I want to make sure I'm not missing something. Benjamin J. Armintor Systems

RE: Help with Cross context

2004-03-31 Thread Shapira, Yoav
Hi, Someone else already corrected your understanding of the crossContext attribute, so I won't repeat that. I just wanted to point out that I doubt you mean what you say here: Context docBase=/servlets-examples path=/servlets-examples Is your docBase really /servlets-examples (the

RE: an question about jk2 lbfactor

2004-03-31 Thread Greg . Cope
Sorry You are quite right, more eloquently explained here: http://marc.theaimsgroup.com/?l=tomcat-userm=106862366704663w=2 Greg -Original Message- From: Aadi Deshpande [mailto:[EMAIL PROTECTED] Sent: 31 March 2004 15:54 To: Tomcat Users List Subject: Re: an question about jk2

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread QM
On Wed, Mar 31, 2004 at 02:55:16PM +0200, Malcolm Warren wrote: : Now when I transfer everything to my production server I would like to : eliminate all of the .jsp pages from the application, and all of the .java : files, and just send a .jar file containing the .class files in :

Re: Help with Cross context

2004-03-31 Thread Norris Shelton
I have the same problem. I have both of the contexts marked as crossContext. I get a non-null context object, but a forward never finds the destination page. Tomcat 4.1.18 on W2KPro --- Aadi Deshpande [EMAIL PROTECTED] wrote: i believe crossContext marks that specific web application as

Re: Of .war and .jar files - and .jsp class files

2004-03-31 Thread Malcolm Warren
Ok, thanks. That looks like what I'm looking for. Sorry I didn't catch on after your first missive. On Wed, 31 Mar 2004 09:50:41 -0600, QM [EMAIL PROTECTED] wrote: On Wed, Mar 31, 2004 at 02:55:16PM +0200, Malcolm Warren wrote: : Now when I transfer everything to my production server I would like

Re: Compile jk2 2.0.4 connector on Tru64

2004-03-31 Thread Eulogio Robles
You are right, it worked... almost :-) I get this error : libtool: install: warning: remember to run `libtool --finish /usr/local/apache2/modules' /sbin/cp ../../../build/jk2/apache2//usr/local/apache2/modules/mod_jk2.so ../../../build/jk2/apache2/mod_jk2.so cp:

RE: tomcat sends every email 3 times

2004-03-31 Thread Stephan Markwalder
Hi, Are you testing with IE? I recently heard of a problem with IE requesting the same document multiple times in background. This has something to do with determining the content-type of a document. If IE is not sure about the content-type (perhaps the http header is not present?) and no file

Heap size

2004-03-31 Thread Reis, Tom
Could someone tell me if this is correct for setting the heap size. rem Execute Java with the applicable properties if not %JPDA% == goto doJpda if not %SECURITY_POLICY_FILE% == goto doSecurity %_EXECJAVA% -Xms128m -Xmx256m %JAVA_OPTS% %CATALINA_OPTS% %DEBUG_OPTS%

scalability

2004-03-31 Thread MacManus, Brett C
Hello, I am needing information on the scalability of Tomcat. We are currently using Web Logic, but are considering Tomcat and our only concern in scalability. Can anyone help me out with this as I am unable to track down any specifics. Thank You Brett

RE: Heap size

2004-03-31 Thread Shapira, Yoav
Hi, It's valid. Whether it's correct or not, only you can tell, and only after extensive stress testing. Yoav Shapira Millennium Research Informatics -Original Message- From: Reis, Tom [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 11:31 AM To: Tomcat Users List (E-mail)

RE: scalability

2004-03-31 Thread Roehl, Dan
Check out the app server matrix over at http://www.theserverside.com/reviews/matrix.tss http://www.theserverside.com/reviews/matrix.tss They also review of tomcat: http://www.theserverside.com/reviews/thread.tss?thread_id=18243 http://www.theserverside.com/reviews/thread.tss?thread_id=18243

Turning off cookies from a .war file?

2004-03-31 Thread Jens-Uwe Mager
I have an application that does not use cookies and indeed for this application it is an undesirable overhead to do cookies at all. I know that I can turn off cookies using the admin application, but I would like to automate that from within the .war file somehow (I deploy using a script using the

form base auth with custom messages

2004-03-31 Thread Summers, Bert W.
I am using form base authentication with web.xml security constraints. It works fine in that if you enter the correct username and password you get in. What I want to do is provide feedback to the user for certain conditions, such as password is expired and they can not login or about to

RE: form base auth with custom messages

2004-03-31 Thread Koes, Derrick
You should be able to control this from your form-error-page. -Original Message- From: Summers, Bert W. [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 11:48 AM To: [EMAIL PROTECTED] Subject: form base auth with custom messages I am using form base authentication with

RE: scalability

2004-03-31 Thread Shapira, Yoav
Hi, Check out the app server matrix over at http://www.theserverside.com/reviews/matrix.tss http://www.theserverside.com/reviews/matrix.tss Please note this matrix is woefully out of date, not just wrt tomcat but in general. I've alerted the TSS folks to this a couple of times especially since

RE: Turning off cookies from a .war file?

2004-03-31 Thread Shapira, Yoav
Hi, I have an application that does not use cookies and indeed for this application it is an undesirable overhead to do cookies at all. I know that I can turn off cookies using the admin application, but I would like to automate that from within the .war file somehow (I deploy using a script

RE: form base auth with custom messages

2004-03-31 Thread Summers, Bert W.
I would like to but there are two problems: 1. On the error page I don't know who tried to login, so I can not do any checks with the db. 2. I will have to a custom Realm to check for my date and not auth the user. How can you get info from the FormAuthenticator? It seems to be a sendRedirect so

Re: Turning off cookies from a .war file?

2004-03-31 Thread Jens-Uwe Mager
On Wed, Mar 31, 2004 at 11:55 -0500, Shapira, Yoav wrote: No to both of your questions. Cookies present minimal overhead anyways: if they even show up on your profiler CPU time display, then you've done an unbelievable tuning job. I am not tuning CPU overhead, I am tuning number of bytes

RE: Turning off cookies from a .war file?

2004-03-31 Thread Shapira, Yoav
Hi, No to both of your questions. Cookies present minimal overhead anyways: if they even show up on your profiler CPU time display, then you've done an unbelievable tuning job. I am not tuning CPU overhead, I am tuning number of bytes transmitted for every request. And for network bandwidth

AccessControlException

2004-03-31 Thread bort
Hi all When we try to start up tomcat on our linux box, we get the following scroll in our catalina.out file: register('-//Apache Software Foundation//DTD Struts Configuration 1.0//EN', 'jar:file:/var/lib/tomcat4/webapps/RFP/WEB-INF/lib/struts.jar!/org/apache/st

OSX Server and Tomcat/Apache integration

2004-03-31 Thread Ivan E. Markovic
I am hoping that someone out there will be able to help. I have spent about 20+ hours on this and am getting nowhere fast. I have OSX Server (v 10.3, Panther) installed and am trying to get Tomcat and Apache to connect. I have read the documentation but with little luck. I have it all working

context mapping problem after upgrade from 4.1.29 to 4.1.30

2004-03-31 Thread Jim Hopp
Anyone have any ideas/pointers on this? Thanks, -Jim Greetings- I've just upgraded my development environment from Tomcat 4.1.29 to 4.1.30 (Win XP, jdk 1.4.2). It appears that my URI's are not mapped to the same context under 4.1.30 as they were under

RE: OSX Server and Tomcat/Apache integration

2004-03-31 Thread Shapira, Yoav
Hi, What errors are you getting? Yoav Shapira Millennium Research Informatics -Original Message- From: Ivan E. Markovic [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 12:09 PM To: [EMAIL PROTECTED] Subject: OSX Server and Tomcat/Apache integration I am hoping that someone

RE: context mapping problem after upgrade from 4.1.29 to 4.1.30

2004-03-31 Thread Shapira, Yoav
Hi, I already replied... Did my reply not get through? Yoav Shapira Millennium Research Informatics -Original Message- From: Jim Hopp [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 12:26 PM To: Tomcat Users List Subject: context mapping problem after upgrade from 4.1.29 to

Re: scalability

2004-03-31 Thread Peter Lin
You're going to have to qualify your definition of scalability before anyone can provide useful information. scalability in terms of concurrent users? requests per second? average response time? cluster size? concurrent connections? without a point of reference, scalability means very little

RE: scalability

2004-03-31 Thread MacManus, Brett C
Sorry Peter You are correct. I need in terms of clustering, and concurrent connections. Thank You Brett MacManus You're going to have to qualify your definition of scalability before anyone can provide useful information. scalability in terms of concurrent users? requests per second?

RE: form base auth with custom messages

2004-03-31 Thread Koes, Derrick
Ah, I misunderstood the problem. Your best bet is to write a custom form authentication. It's more work, but you'll have access to everything you need because you are in control. -Original Message- From: Summers, Bert W. [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 11:57

RE: form base auth with custom messages

2004-03-31 Thread Summers, Bert W.
Is it possible to specify which form authenticator to use per web app or is it a one shot deal? Where does tomcat decide that j_security_check is FormAuthenticator? Can I change that? -Original Message- From: Koes, Derrick [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 9:48

Re: apache 1.3 tomcat 5.0.19

2004-03-31 Thread Emerson Cargnin
Ive being researching about mod_jk and as far as I can see, the mod_jk was made to work with apache 2 (even that it says that it works with 1.3). Do I have to build mod_jk again if I use jk2 I have read that jk1.3 would be better suited to apache 1.3... What's the best connector to use

RE: scalability

2004-03-31 Thread Peter Lin
In terms of concurrent requests here's my own experience. Handing 50-150 concurrent requests using either apache AB or JMeter to simulate load doesn't pose any problems that I can see for static or simple dynamic pages. when I say dynamic pages, I mean simple queries which select from one

RE: scalability

2004-03-31 Thread MacManus, Brett C
Thanks Peter... We will be interacting with Oracle, Informix, and DB2. The proposed Tomcat application servers will be used with the Business Objects and Crystal BI application. Thank You Brett MacManus -Original Message- From: Peter Lin [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Ant problem: cannot make war file

2004-03-31 Thread Chris Alvarez
I am having a problem when trying to make a WAR file for my webapp. I am trying to run a build.xml script and I get this error: BUILD FAILED: java.lang.NoSuchMethodError: org.apache.tools.zip.ZipOutputStream.init(Ljava/io/File;)V The classes compiled fine, but it cannot build the war file for

RE: scalability

2004-03-31 Thread Peter Lin
I think I'm getting a better picture. You're exploring the option of having weblogic handle just the business objects and Crystal BI stuff. Tomcat then serves up view of the data produced by weblogic and the database. Having worked on a platform with a setup similar to that for wireless

Migration

2004-03-31 Thread Daniel Lipszyc
I'm a newbie in tomcat. How can I get documents or information about how to migrate Tomcat 4 to Tomcat 5. Thanks a lot!! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Ant problem: cannot make war file

2004-03-31 Thread Shapira, Yoav
Hi, First, please add [OFF-TOPIC] to your subject line as this is not a tomcat issue. Second: you have a different ant.jar at compile time than you do at runtime, or alternatively multiple different ant.jars on the classpath at runtime, the first of which is missing this method. The method is a

DataSourceRealm authentication and role zones

2004-03-31 Thread Dani
Hello. I'm working in a web application with tomcat and struts. Now I'm implementing session tracking and authentication and I don't know how to do it. I'm using DataSourceRealm with mysql and I have a user role and a admin role. I've read about DataSourceRealm in jakarta web, but I didn't

Two JSTL Questions

2004-03-31 Thread Tom K
1) I am trying to get jakartas taglib to work. Is there a standard way to locate the *.tld files and jar files on tomcat. For example, would this be a correct structure assuming I am using it for a single package and not for every app under the webapps directory? myWebApp/WEB-INF/lib-- my

TomCat 4.1.30 on Aix - Error accessing http://server:8080/admin

2004-03-31 Thread Jack Burton
I just installed the binary version of TomCat 4.1.30 on Aix 5.1. I can access the default TomCat page but get the following error accessing the admin link. Anyone know how to get around this? Thanks, Jack HTTP Status 500 - type Exception report message description The server encountered an

Re: Does my webapp directory have to live under the webapps folder?

2004-03-31 Thread Chad Woolley
Andrew Hamilton and David Liles, thank you very much for answering my question. It's exactly what I needed to know! LILES, DAVID (CONTRACTOR) wrote In your server.xml file you can define where your baseDoc location is I'm using Tomcat 5 in IIS and am doing just that I even put together

RE: AccessControlException

2004-03-31 Thread Benjamin Armintor
Does one of your apps have the Digester classes in its web app classpath? Did you make any changes to the policy file? What's appears to be happening is that the version of the Digester loaded doesn't have the appropriate runtime permissions to get another class's classloader. This kind of thing

RE: scalability

2004-03-31 Thread MacManus, Brett C
Thanks again for the info. We are hoping to take weblogic out of the picture all together and go with an Apache http server and Tomcat app server. Currently we have our BI infrastructure on AIX and we are pushing for our next release to deploy on Linux. Therefore we were trying to ditch

How to filter out HTTP requests, or limit requests

2004-03-31 Thread lrnobs
I have a new web server running Tomcat and serving jsp pages on a RedHat9 box. I am new to web technologies and have been reviewing the access logs daily. I find several attempts in the logs to run root.exe, cmd.exe, and various scripts. What I have seen so far appear to be attempts against IIS

Re: Multiple certificates for multiple virtual hosts (1:1)

2004-03-31 Thread Antonio Fiol Bonnín
No idea, but for now, ... 1 name -- 1 certificate -- 1 (TCP port, IP address) pair. You can't do any better with any implementation I know of. Yours, Antonio Fiol Martin Alley wrote: Aha... This from http://ietf.org/rfc/rfc3546.txt 3.1. Server Name Indication [TLS] does not provide a

RE: How to filter out HTTP requests, or limit requests

2004-03-31 Thread Salvatierra, Mauricio h (M.H.)
Hi, sorry mi english. You probe ServletFilter tecnology ? Saludos !! SALVATIERRA, Mauricio Hugo Information Technology Ford Argentina S.C.A. Phono/Fax: 54-11-4756-8750 mailto: [EMAIL PROTECTED] Visit our page: http//www.ford.com.ar/

RE: How to filter out HTTP requests, or limit requests

2004-03-31 Thread Shapira, Yoav
Hi, You have several choices, although the default behavior isn't that bad. Your choices include: - Tomcat's RemoteAddr and RemoteHost valves (http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/valve.html) - A custom Servlet Filter you write to deny specific requests like

Re: tomcat5/tomcat4 comparison

2004-03-31 Thread Walter Truitt
Posting my findings for Redhat Linux 7.3 on a Intel Zeon 2.4 with a GB of ram. My kernel is not SMP even though the Zeon has hyperthreading. I also ran ab on the same machine as apache and tomcat. I was interested in seeing the WARP connector maintained, so I also include those numbers in my

RE: tomcat5/tomcat4 comparison

2004-03-31 Thread Shapira, Yoav
Hi, Great stuff, thanks for posting. Now if we could only get people to search the archives before posting questions ;) Yoav Shapira Millennium Research Informatics -Original Message- From: Walter Truitt [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 3:24 PM To: [EMAIL

problem with new 2.04 mod_jk2

2004-03-31 Thread admin
Hello, I decided to try the new mod_jk2 today. I put all the files in the right place, but fot this error when starting up httpd: Starting httpd: Syntax error on line 5 of /etc/httpd/conf.d/jk2.conf: Cannot load /etc/httpd/modules/mod_jk2.so into server: /etc/httpd/modules/mod_jk2.so: undefined

RE: tomcat5/tomcat4 comparison

2004-03-31 Thread Peter Lin
I pray for that day, but not holding my breath. :) peter Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, Great stuff, thanks for posting. Now if we could only get people to search the archives before posting questions ;) Yoav Shapira Millennium Research Informatics

Re: tomcat5/tomcat4 comparison

2004-03-31 Thread Remy Maucherat
Walter Truitt wrote: I know that my tests don't compare directly to the other post, and it doesn't look like there is as much of a change in performance as the other tests showed between versions. The HelloWorldExample servlet was 1.2% faster using 5.0.19 compared to 4.1.30 with the HTTP

Re: problem with new 2.04 mod_jk2

2004-03-31 Thread Emerson Cargnin
for what I have researched, you need to have APR's and build mod_jk2 against it. That's why I decided to mantain mod_jk. Still have some problems, but I'll post it in another mail. Emerson [EMAIL PROTECTED] wrote: Hello, I decided to try the new mod_jk2 today. I put all the files in the

Re: problem with new 2.04 mod_jk2

2004-03-31 Thread admin
weird. Why would they put Linux binaries up on the Jakarta site that wont work in Linux? -devin for what I have researched, you need to have APR's and build mod_jk2 against it. That's why I decided to mantain mod_jk. Still have some problems, but I'll post it in another mail. Emerson [EMAIL

Re: problem with new 2.04 mod_jk2

2004-03-31 Thread Emerson Cargnin
I had the same error than him, and it looks like he is using apache 1.3, that doesn't come with APR, so you have to install it separated (although it didn't worked for me)... [EMAIL PROTECTED] wrote: weird. Why would they put Linux binaries up on the Jakarta site that wont work in Linux?

report

2004-03-31 Thread tomcat-user
here is my photo! Norton AntiVirus Deleted1.txt Description: plain/text - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

  1   2   >