Re: Securing SSL from IIS to Tomcat

2004-03-01 Thread Antonio Fiol Bonnín
Hi, Nice demonstration. I only miss the "seriously" part, which is covered partially by the term "expensive" ;-) I wanted only to add IPSEC as another possible scenario. It has less (no) TCP overhead than a SSL tunnel. And it works without even changing your config files. Antonio Fiol Chri

Re: Virtual Hosts with Apache and Tomcat

2004-03-01 Thread Antonio Fiol Bonnín
That (with a high probability) is because some objects they store in sessions are not Serializable. IOW, they violate the Servlet Specification. I'm just curious: is this actually a violation of the servlet spec? The API seems to indicate that you can put anything in the session that you wan

Re: Deployment: admin vs manager

2004-03-01 Thread Riaan Oberholzer
The system is setup so that each user gets a home directory, eg /home/riaan/ In that, I have: /home/riaan/application.war /home/riaan/application.xml I then use the manager app to install the app with the above file urls. Looking at the server.xml after installation actually shows the applicati

RE: The purpose of WEB-INF\classes ?

2004-03-01 Thread mike jackson
The first reason I can think of is configuration files. I have one environment on my development box, another on the test deployment box and yet another on the final production server. Depending on the box I'm on I'm going to use different database URLs at a minimum and quite often I'm having to

RE: Tomcat users

2004-03-01 Thread UmamaheswarKalluru
Hi Kannan, Thank you for your reply. May I know what kind of Hardware or Software configuration can improve the performance of Tomcat please? Thank you, Best Regards, Uma - To unsubscribe, e-mail: [EMAIL PROTECTED] For addit

Re: classloader order

2004-03-01 Thread Christopher Schultz
Yoav, What can I do to make sure that whatever I have in my /WEB-INF/lib/ directory takes precedence? You're not doing anything wrong, your systems group is. You can't override the bootstrap classloader. Aw, sure you can (-Xbootclasspath/p). But trumping the boot classloader with WEB-INF/lib is

Re: Tomcat 4.1.29 JVM crash on RHEL-3-ES

2004-03-01 Thread Christopher Schultz
Joe, I'm experiencing sporadic crashing of the JVM running Tomcat in 2 of my environments. These environments both run the same webapps, and they both use JDK 1.4.2_03 on RHEL-3 ES. Other environments where these same webapps run are using JDK 1.4.1 and Redhat7.2, and are not experiencing these

Re: The server encountered an internal error () that prevented it from fulfilling this request.

2004-03-01 Thread Christopher Schultz
Metin, What can be the reason of this error? > java.lang.NoClassDefFoundError: org/jdom/JDOMException Looks like you need to install the JDOM library... -chris signature.asc Description: OpenPGP digital signature

Re: Securing SSL from IIS to Tomcat

2004-03-01 Thread Christopher Schultz
Antonio, Since IIS decrypts the request and passes it unencrypted to Tomcat, How do I encrypt the request so that all communication from IIS with Tomcat is secure??? Do you really need it? It would probably affect your performance seriously. (No, I cannot prove that statement...) I can prove thi

Re: Do servlet threads ever die?

2004-03-01 Thread Christopher Schultz
Ken, Problem: I call native code (Tcl) from my servlet. Tcl's thread model forces me to run Tcl only on the thread that created the Tcl interpreter. So now how do I cleanup these interpreters? The cleanup code needs to be run on the creating thread. Guh. I highly recommend against running na

Re: Syntax Question

2004-03-01 Thread Christopher Schultz
Jack, I want to add a variable to the web.xml file and be able to call in from within a servlet, taglib or bean. You need to use the element in your element in web.xml. Your JSP syntax appears to be correct. -chris signature.asc Description: OpenPGP digital signature

Re: The purpose of WEB-INF\classes ?

2004-03-01 Thread Justin Ruthenbeck
To you (the end-user), there's no purpose for it other than convenience. One thing to keep in mind is that classes in the /classes directory take precedence over those in jars found in the /lib directory (in Tomcat -- is this a spec thing? I'm assuming not as WL61 at lease doesn't do this), wh

Re: Virtual Hosts with Apache and Tomcat

2004-03-01 Thread Christopher Schultz
Kannan, Being yourself as SYSADMIN for UNIX and Network, it would be nice that developers or professional should take a lead into get into this problem. Easy for you to say. Let's face it: these guys have a connection leak. Plain and simple. Your devs need to find their leak. It is demonstrable.

Re: Virtual Hosts with Apache and Tomcat

2004-03-01 Thread Christopher Schultz
Antonio, And bad. Every time I restart, Tomcat loses the state information for established login sessions. Customer don't like that. That (with a high probability) is because some objects they store in sessions are not Serializable. IOW, they violate the Servlet Specification. I'm just curious

Re: JSP import problem

2004-03-01 Thread Parsons Technical Services
David, 1. What is the package line say in the classes contained in the mytest.jar? 2. What are the class names contained in the mytest.jar? 3. Have you checked spelling and capitalization? Just checking the basics first. Doug www.parsonstechnical.com - Original Message - From: "Dav

JSP import problem

2004-03-01 Thread David Grant
Hi All, I am having a problem importing a package into my jsp file. The package is called mytest.jar The following is my jsp file - <%@ page import = "java.io.*" import = "java.lang.*" import = "java.util.*" import = "mytest.*" %> <% Mytest mytest = new mytest("123123",

The purpose of WEB-INF\classes ?

2004-03-01 Thread George Hester
This is not a question to fix a problem other then one in my head. I am not sure what the difference is putting a jar in a \WEB-INF\lib and setting up a \WEB-INF\classes. Since a jar usually just includes class files if we put a jar in the webapp's \WEB-INF\lib what would be the purpose of set

Katja Handtusch/268/DCAG/DCX ist außer Haus.

2004-03-01 Thread katja.handtusch
Ich werde ab 16.02.2004 nicht im Büro sein. Ich kehre zurück am 03.03.2004. Ich werde Ihre Nachricht nach meiner Rückkehr beantworten. Bei dringenden Angelegenheiten wenden Sie sich bitte an meine Vertretung Solveig Hunger (Tel.: 5479) oder Alexandra Pürschel (Tel.: 5463). -

Re: Tomcat and SSL: problem with expiration of VeriSign Global Server ID Intermediate Root

2004-03-01 Thread Ankur Shah
Jörn Böckenkamp wrote: It IS easy when you're using a self-signed cert, but I have to use one from VeriSign and I don't think that I can regenerate the VeriSign cert with a new date :-) Did you try importing the new certificate directly into the user's keystore? For example, if you run the ser

jsp import question

2004-03-01 Thread David Grant
Hi All, I am having a problem importing a package into my jsp file. The package is called mytest.jar The following is my jsp file - <%@ page import = "java.io.*" import = "java.lang.*" import = "java.util.*" import = "mytest.*" %> <% Mytest mytest = new mytest("123123",

RE: application unavailable

2004-03-01 Thread Jason Keltz
Thanks Justin/Wendy, Yes. Using "start" instead of "reload" works just fine. Whoops. I'm new to this. Yoav -- In terms of running one tomcat server per user -- that's difficult. Imagine a class of 100 students (or more) all working on their programs at the same time. While a System.exit could

Re: Process Died | Production

2004-03-01 Thread Ankur Shah
Shapira, Yoav wrote: Yeah, I've encountered internal crashes, as I imagine many others on the list have. In my case it was due to missing Solaris OS patches. The hs_err produced by the JVM when it has an internal crash sometimes says things like "could not allocate font package xxx" which is a h

Re: Deployment: admin vs manager

2004-03-01 Thread Tom . Williams
Where do you specify the application.xml file so the datasources are configured automatically? Peace... Tom Riaan Oberholzer

RE: application unavailable

2004-03-01 Thread Justin Ruthenbeck
At 01:27 PM 3/1/2004, you wrote: That's exactly the kind of thing I want to do. However, I just tried to use the manager app to restart my failed "Hello" example. When the context was up, the reload worked fine. However, when the context died because of an intentional error in web.xml, I get an

RE: application unavailable

2004-03-01 Thread Wendy Smoak
> From: Jason Keltz [mailto:[EMAIL PROTECTED] > FAIL - Encountered exception java.lang.IllegalStateException: > Container StandardContext[/jas/example2] has not been started > Any ideas as to what the problem might be? Maybe a silly question, but did you try the 'start' Ant task instead of the '

Re: Tomcat5 MBeans/JMX context creation

2004-03-01 Thread Randy Watler
Remy Maucherat wrote: > Randy Watler wrote: > >> I am currently experimenting with the Java 1.5 remote JMX/MBeans for >> use in our build process. >> ... >> Can anyone clarify how the "createStandardContext" should be invoked? > > > You can look at the JBoss integration code for examples. > ...

RE: MS SQL Server 2000 as JNDI Datasource

2004-03-01 Thread Jim Steinberger
In the server.xml, nested in the tags, I have: factory org.apache.commons.dbcp.BasicDataSourceFactory username #USERNAME# password #PASSWORD# driverClassName com.microsoft.jdbc.sqlserver.SQLServerDriver url jdbc:microsoft:sqlserver:

MS SQL Server 2000 as JNDI Datasource

2004-03-01 Thread Frank Schaare
Hi, i´m looking for a working configuration (like in the JNDI Datasource HOW-TO) for MS Sql Server 2000. We´re using the MS JDBC driver. I´ve searched the mail-archives for hours now, found tons of threads, but no answer. Any suggestions / help / sources for me ?

updated Tomcat ISAPI filter available

2004-03-01 Thread David Boyer
This is the isapi_redirector2.dll built from the latest source snapshot as of March 1, 2004. http://web.bvu.edu/staff/david/index.jsp?section=software&subsection=isapi&page=overview The build went without error, but please let me know if the filter does not work properly so I can pull it form m

The server encountered an internal error () that prevented it from fulfilling this request.

2004-03-01 Thread Metin Zavrak
What can be the reason of this error? Thanks, javax.servlet.ServletException: Error instantiating servlet class SepeteEkle org.apache.catalina.valves.ErrorReportValve.invoke (ErrorReportValve.java:164) org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:206)

RE: Cluster error when starting up web application

2004-03-01 Thread Filip Hanik \(lists\)
now remember, that I actually don't have to invoke the listeners upon replication, I am doing it anyway, cause I think it might help, but there is a risk in some apps that it may not. the spec is in the gray, it doesn't say that you have to or not. Filip -Original Message- From: Filip Han

RE: Cluster error when starting up web application

2004-03-01 Thread Filip Hanik \(lists\)
I just committed a fix into CVS, I didn't change the tellNew, instead I moved setValid(true) before I called tellNew() during session creation. Filip -Original Message- From: Aadi Deshpande [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 10:36 PM To: Tomcat Users List Subject

RE: application unavailable

2004-03-01 Thread Jason Keltz
Hi Justin, That's exactly the kind of thing I want to do. However, I just tried to use the manager app to restart my failed "Hello" example. When the context was up, the reload worked fine. However, when the context died because of an intentional error in web.xml, I get an error from manager:

application unavailable

2004-03-01 Thread Shapira, Yoav
Hi, >... the problem is that I'm trying to run one tomcat server for a large >group of students. I can handle the deploy/undeploy part, but if a >student makes an error in their web.xml file, which is bound to happen, I >don't want to have to restart the server. I'll need to look at a way to >w

RE: application unavailable

2004-03-01 Thread Justin Ruthenbeck
At 12:50 PM 3/1/2004, you wrote: On Mon, 1 Mar 2004, Shapira, Yoav wrote: > > > > Don't be so sure ;) You can use the manager webapp (either graphically > > or via ant), you can write some custom JMX code in another webapps, or > > you can restart the server, but there are no other options. ...

RE: application unavailable

2004-03-01 Thread Yansheng Lin
wow coool! If I make a mistake, I can get the whole class off. hehe:). -Original Message- From: Jason Keltz [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 1:51 PM To: [EMAIL PROTECTED] Subject: RE: application unavailable On Mon, 1 Mar 2004, Shapira, Yoav wrote: > > > > Don't b

RE: application unavailable

2004-03-01 Thread Jason Keltz
On Mon, 1 Mar 2004, Shapira, Yoav wrote: > > > > Don't be so sure ;) You can use the manager webapp (either graphically > > or via ant), you can write some custom JMX code in another webapps, or > > you can restart the server, but there are no other options. ... the problem is that I'm trying to

RE: application unavailable

2004-03-01 Thread Shapira, Yoav
Howdy, >If I try to start up a web application and there's an error in web.xml, >the tomcat server marks the application unavailable. Even after fixing >the problem, I can't seem to make the application available until >restarting the tomcat server. I'm sure there must be *some* file I can >era

application unavailable

2004-03-01 Thread Jason Keltz
Hi. If I try to start up a web application and there's an error in web.xml, the tomcat server marks the application unavailable. Even after fixing the problem, I can't seem to make the application available until restarting the tomcat server. I'm sure there must be *some* file I can erase, or so

RE: Tomcat 4.1.29 JVM crash on RHEL-3-ES

2004-03-01 Thread Kannan Sundararajan
Did you go thru some profilers. 1. Which version of JVM you are running. 2. What is your hardware OS. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 3:04 PM To: Tomcat Users List Cc: 'Tomcat Users List' Subject: RE: Tomcat 4.1.29 JVM c

RE: Tomcat 4.1.29 JVM crash on RHEL-3-ES

2004-03-01 Thread jmiller
The servers are only being used internally for testing at the moment. As best I can tell, the crashes occur at night when nothing (or very few people) are using the them. > Original Message > Subject: RE: Tomcat 4.1.29 JVM crash on RHEL-3-ES > From: "Kannan Sundararajan" <[EMA

RE: Securing SSL from IIS to Tomcat

2004-03-01 Thread Kannan Sundararajan
I doubt any has that kind of need. If that is the case, then everyone will pull their brains out. If we are worried about the IIS having SSL with Tomcat, then how about SSL between database and Tomcat. How about query tools used in database ( secured query tool? , I dont know who has like this).

Re: Securing SSL from IIS to Tomcat

2004-03-01 Thread Antonio Fiol Bonnín
John MccLain wrote: Since IIS decrypts the request and passes it unencrypted to Tomcat, How do I encrypt the request so that all communication from IIS with Tomcat is secure??? Do you really need it? It would probably affect your performance seriously. (No, I cannot prove that statement...) O

Re: Do servlet threads ever die?

2004-03-01 Thread Antonio Fiol Bonnín
Hi, Threads may die... depending on your config. You can use the Servlet#destroy() method. (Not Tomcat-specific) Yours, Antonio Fiol Kenneth H. Cox wrote: Problem: I call native code (Tcl) from my servlet. Tcl's thread model forces me to run Tcl only on the thread that created the Tcl inte

Re: Tomcat5 MBeans/JMX context creation

2004-03-01 Thread Remy Maucherat
Randy Watler wrote: I am currently experimenting with the Java 1.5 remote JMX/MBeans for use in our build process. In particular, I am attempting to install a new context in a running Tomcat5.18 server using an external Ant task/application, (without using the manager webapp). I found code in t

RE: Tomcat 4.1.29 JVM crash on RHEL-3-ES

2004-03-01 Thread Kannan Sundararajan
Did you load test these servers? -Original Message- From: Joe Miller [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 1:37 PM To: [EMAIL PROTECTED] Subject: Tomcat 4.1.29 JVM crash on RHEL-3-ES Hello, I'm experiencing sporadic crashing of the JVM running Tomcat in 2 of my environm

Re: serving binary files

2004-03-01 Thread Antonio Fiol Bonnín
Vladimer Shioshvili wrote: Does anyone have a suggestion on how to server binary files through tomcat? I am creating a binary file as a result of a request and would like to let the user download it. Just setting mime type and passing through as an attachment doesn't work as write methods of

Tomcat 4.1.29 JVM crash on RHEL-3-ES

2004-03-01 Thread Joe Miller
Hello, I'm experiencing sporadic crashing of the JVM running Tomcat in 2 of my environments. These environments both run the same webapps, and they both use JDK 1.4.2_03 on RHEL-3 ES. Other environments where these same webapps run are using JDK 1.4.1 and Redhat7.2, and are not experiencing thes

Securing SSL from IIS to Tomcat

2004-03-01 Thread John MccLain
Since IIS decrypts the request and passes it unencrypted to Tomcat, How do I encrypt the request so that all communication from IIS with Tomcat is secure??? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-m

Re: Simple instructions

2004-03-01 Thread Rick Umali
Michael: > I am trying to learn how everything slots together with Jakarta and other > things (like openejb etc) > > has anyone seen or could help put together the "Dummys guide to Installing > Configuring and Understanding Tomcat" I'm on a similar learning curve, experimenting and playing with

Re: Running seperate apps with shared components - the best way forward

2004-03-01 Thread Andrew Waters
Obviously solution really :-), doh! Thanks Yoav. Shapira, Yoav wrote: Howdy, You can have a context for common static resources, or you could have copies of these static resources with every webapp (on the assumption that disk space is cheap and you're not working on some mobile/j2me platform). I

Tomcat5 MBeans/JMX context creation

2004-03-01 Thread Randy Watler
I am currently experimenting with the Java 1.5 remote JMX/MBeans for use in our build process. In particular, I am attempting to install a new context in a running Tomcat5.18 server using an external Ant task/application, (without using the manager webapp). I found code in the admin webapp to d

RE: how can i get a servlet instance from ServletPool

2004-03-01 Thread Edson Alves Pereira
Maybe i really should put those static methods in Java objects, in that way will get easyer to share with other servlets. It´s plain to see, you right. > -- > De: Erik Price[SMTP:[EMAIL PROTECTED] > Responder:Tomcat Users List > Enviada: segunda-feira, 1 de março de 2004

Re: Difference found with jsp:include when migrating from 4.1.X to 5.0.18

2004-03-01 Thread Tim Funk
Here's why: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25448 -Tim Steve Burns wrote: In our deployment we have hundreds of jsp files with static include statements, like Instead of shortening this to: we decided in our jsp coding standard that the include should have a separate clos

RE: Difference found with jsp:include when migrating from 4.1.X to 5.0.18

2004-03-01 Thread Shapira, Yoav
Hi, I'll preface this by saying I'm not a JSP expert and don't use them frequently, so I could be wrong. That said, the JSP Specification v2.0 (which tomcat 5.x implements: tomcat 4.1.x implements the JSP Specification v1.2), section JSP.5.4 (page 1-110), explains the differences between the two

Re: Running seperate apps with shared components - the best way forward

2004-03-01 Thread Josh Rehman
This would require pointing to static resources in the new static context in both applications, right? Or is there a way (or a reason) to have tomcat serve up those resources as appearing under the same context? Shapira, Yoav wrote: Howdy, You can have a context for common static resources, or y

Difference found with jsp:include when migrating from 4.1.X to 5.0.18

2004-03-01 Thread Steve Burns
In our deployment we have hundreds of jsp files with static include statements, like Instead of shortening this to: we decided in our jsp coding standard that the include should have a separate closing tag in case a had to be added later on. The jsp compiler chokes on these include state

RE: Clustering Tomcat 5.0.19

2004-03-01 Thread Filip Hanik \(lists\)
works just fine for me. The configuration file changed between version 0.16 and 0.19, so make sure you have the 0.19 server.xml Filip -Original Message- From: Duma Rolando [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 9:22 AM To: [EMAIL PROTECTED] Subject: Clustering Tomcat 5.0.1

RE: Tomcat users

2004-03-01 Thread Kannan Sundararajan
That was not question posted on the initial thread. If you want to know about yours please start a different thread, rather than deviating this thread. Please try to read this again. The question posted by user was >>Hello, >>I would like to know how many users can access Tomcat 5.0.19 per seco

Do servlet threads ever die?

2004-03-01 Thread Kenneth H. Cox
Problem: I call native code (Tcl) from my servlet. Tcl's thread model forces me to run Tcl only on the thread that created the Tcl interpreter. So now how do I cleanup these interpreters? The cleanup code needs to be run on the creating thread. I am using Tomcat 5. Do servlet threads ever d

RE: how can i get a servlet instance from ServletPool

2004-03-01 Thread Erik Price
--- Edson Alves Pereira <[EMAIL PROTECTED]> wrote: > No, i made it static `cause i couldn´t get servlet instance in > another servlet, that´s solved my problem, but i´d like to know if is > this > the best way to solve problems like that? Doesn't it seem like you could refactor that functio

RE: Running seperate apps with shared components - the best way forward

2004-03-01 Thread Shapira, Yoav
Howdy, You can have a context for common static resources, or you could have copies of these static resources with every webapp (on the assumption that disk space is cheap and you're not working on some mobile/j2me platform). If you see a need in the future to independently upgrade/restart/mainta

Running seperate apps with shared components - the best way forward

2004-03-01 Thread Andrew Waters
Hi, We have a ‘suite’ of applications that are all deployed under one context in Tomcat. They are related applications, and share some common java code, the odd jpeg/gif, css files and (external) configuration files. However, as running applications, they do not interact with each other in a

RE: how can i get a servlet instance from ServletPool

2004-03-01 Thread Edson Alves Pereira
No, i made it static `cause i couldn´t get servlet instance in another servlet, that´s solved my problem, but i´d like to know if is this the best way to solve problems like that? > -- > De: Mike Curwen[SMTP:[EMAIL PROTECTED] > Responder:Tomcat Users List > Enviada: segu

RE: how can i get a servlet instance from ServletPool

2004-03-01 Thread Mike Curwen
That sort of coding is probably not the way to go about solving this particular problem (how to re-use all the work you've done in the other servlet). But assuming you leave everything "as is", the question I come up with is: "Why do you need an instance of a servlet, if the method you want to ca

RE: how can i get a servlet instance from ServletPool

2004-03-01 Thread Edson Alves Pereira
I have one servlet that make a SQL query and as result build a HTML table to display in user´s browser, i´d like to create a report servlet to use servlets like my query-servlet to print ( in our project report-servlets are a little different from our query-servlets ). Then i created this r

RE: serving binary files

2004-03-01 Thread Vladimer Shioshvili
That worked.. Thanks a lot Yoav.. PS now accepting useless suggestions :) At 11:43 AM 3/1/2004, you wrote: Howdy, >Does anyone have a suggestion on how to server binary files through tomcat? >I am creating a binary file as a result of a request and would like to let >the user download it. Just

digester MissingResourceException

2004-03-01 Thread Erik Price
Hi, I'm running into a problem trying to start Tomcat 4.1.30 on my development machine (Win2000). I've downloaded and extracted the Tomcat 4.1.30 zip, placed it at C:\jakarta-tomcat-4.1.30, and set %CATALINA_HOME% to this directory. When I try to start Tomcat from either a DOS prompt using "cata

Clustering Tomcat 5.0.19

2004-03-01 Thread Duma Rolando
Hi all, I have a problem running Tomcat 5.0.19 on HP Itanium with JRockit 1.4.2. If I comment out the Cluster & ReplicationValve from server.xml as mentioned in the docs, leaving the default attribute values my catalina.out shows the following exception: GRAVE: Unable to start cluster. java.lang.

Re: Tomcat users

2004-03-01 Thread Nathan Gross
Simple. It's a cell-phone! Why, can't run Tomcat on a cell phone? Shucks. -nat ps. Is top-posting ok/preferred on this forum? Kannan Sundararajan wrote: What are you talking about Nat? Yoav Shapira, clearly mentioned about it. It all depends on the hardware, OS etc, which you are trying to run.

Syntax Question

2004-03-01 Thread Jack Lauman
I want to add a variable to the web.xml file and be able to call in from within a servlet, taglib or bean. In a JSP 2.0 page using JSTL 1.1 I can use: <%=application.getInitParameter("variable_name")%> Can this be done? If so, what's the correct syntax to do it. Thanks, Jack ---

Re: Simple instructions

2004-03-01 Thread Vladimer Shioshvili
scroll down and find the email address for unsubscribing... At 12:02 PM 3/1/2004, you wrote: hi excuse me, can you tell me can i unsubscribe from this mailig list thanks a lot - Original Message - From: "Michael Forster" <[EMAIL PROTECTED]> To: "Tomcat-User" <[EMAIL PROTECTED]> Sent: Monda

Re: serving binary files

2004-03-01 Thread Tarik El Berrak
hi excuse me, can you tell me can i unsubscribe from this mailig list thanks a lot - Original Message - From: "Shapira, Yoav" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:43 PM Subject: RE: serving binary files Howdy, >Does anyone have

Re: jar versions

2004-03-01 Thread Tarik El Berrak
hi excuse me, can you tell me can i unsubscribe from this mailig list thanks a lot - Original Message - From: "Charles N. Harvey III" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:42 PM Subject: Re: jar versions > Didn't realize it was suc

Re: Simple instructions

2004-03-01 Thread Tarik El Berrak
hi excuse me, can you tell me can i unsubscribe from this mailig list thanks a lot - Original Message - From: "Michael Forster" <[EMAIL PROTECTED]> To: "Tomcat-User" <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:39 PM Subject: Simple instructions > I am trying to learn how everythin

RE: serving binary files

2004-03-01 Thread Shapira, Yoav
Howdy, >Does anyone have a suggestion on how to server binary files through tomcat? >I am creating a binary file as a result of a request and would like to let >the user download it. Just setting mime type and passing through as an >attachment doesn't work as write methods of the writer seem to t

Re: jar versions

2004-03-01 Thread Charles N. Harvey III
Didn't realize it was such a heated subject. Thanks for the reference, it made some good sense. I'm definately not the type to want to start an argument, so I can live with it as is. Thanks again. Charlie Shapira, Yoav wrote: Howdy, Please let's not start another flamewar on this topic of et

Simple instructions

2004-03-01 Thread Michael Forster
I am trying to learn how everything slots together with Jakarta and other things (like openejb etc) has anyone seen or could help put together the "Dummys guide to Installing Configuring and Understanding Tomcat" Some headers that could be used are What is in the server.xml file How do I set up

serving binary files

2004-03-01 Thread Vladimer Shioshvili
Does anyone have a suggestion on how to server binary files through tomcat? I am creating a binary file as a result of a request and would like to let the user download it. Just setting mime type and passing through as an attachment doesn't work as write methods of the writer seem to truncate

RE: Trouble with Tomcat5, SSI and crossContext

2004-03-01 Thread Kannan Sundararajan
To unsubscribe, e-mail: [EMAIL PROTECTED] -Original Message- From: Tarik El Berrak [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 11:41 AM To: Tomcat Users List Subject: Re: Trouble with Tomcat5, SSI and crossContext hi excuse me, can you tell me how to unsubscribe from the maili

RE: jar versions

2004-03-01 Thread Shapira, Yoav
Howdy, Please let's not start another flamewar on this topic of eternal debate, this mailing list is voluminous enough as it is. There are pros and cons to each side, and many debates have taken place on this and other list on this topic. Suffice it to say it's a choice the developers make. For

Re: Trouble with Tomcat5, SSI and crossContext

2004-03-01 Thread Tarik El Berrak
hi excuse me, can you tell me how to unsubscribe from the mailing list. thankx a lot - Original Message - From: "Ted Gittinger" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 01, 2004 5:29 PM Subject: Trouble with Tomcat5, SSI and crossContext > jakarta-tomcat-5.0.18 >

Trouble with Tomcat5, SSI and crossContext

2004-03-01 Thread Ted Gittinger
jakarta-tomcat-5.0.18 Windows 2000 I cannot get SSI (server side includes) to work from one context to another. I CAN get it to work from one context to the ROOT context but not anywhere else. I have an index.html file with the following virtual include: index.html is located in 'stx.war' deplo

RE: Tomcat users

2004-03-01 Thread Kannan Sundararajan
What are you talking about Nat? Yoav Shapira, clearly mentioned about it. It all depends on the hardware, OS etc, which you are trying to run. -Original Message- From: Nathan Gross [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 11:17 AM To: Tomcat Users List Subject: Re: Tomcat

jar versions

2004-03-01 Thread Charles N. Harvey III
I have one little thing that sometimes drives me crazy about most products that I download off of the internet - jar versions. There aren't any. Its not just Tomcat, its Sun. How come the j2ee.jar never has a version? Does that bother anyone else? This never really bothered me that much before,

FW: Apache Tomcat 4.0 vs 4.1

2004-03-01 Thread John Eaton
Has no-one any ideas about my issue below? -Original Message- From: John Eaton Sent: 24 February 2004 09:17 To: [EMAIL PROTECTED] Subject: RE: Apache Tomcat 4.0 vs 4.1 The jsp page in the work directory is as follows package org.apache.jsp; import javax.servlet.*; import javax.servlet

Re: Tomcat users

2004-03-01 Thread Nathan Gross
Shapira, Yoav wrote: Howdy, I would like to know how many users can access Tomcat 5.0.19 per second. i.e I need to know the hit ratio. Can some one help me please? 1 zillion jillion. Or zero. Depends on if you use the -XaTonOfUsers=true java runtime option. Just kidding, of c

Re: 5.0.19. [Newbie] Why it doesnt run my HelloServlet

2004-03-01 Thread Nathan Gross
Shapira, Yoav wrote: Howdy, The good news is that I rechecked again, and there are two modifications required for Tomcat 5's xml regarding the invoker. And it works! Did you bother to read why the invoker servlet was commented out in the first place? ;) Yoav Shapira Yep. I di

RE: classloader order

2004-03-01 Thread Shapira, Yoav
Howdy, >that or remove them altogether from the machine and make each webapp >carry around all jars - which really isn't so terrible. No, it's really not terrible and it's likely to save you many headaches. Yoav Shapira This e-mail, including any attachments, is a confidential business comm

investigating "SSL Cert handshake timeout"

2004-03-01 Thread Jonathan Higa
I'm running Tomcat 4.1.27 on Solaris 2.6 with JDK 1.4.0_01. I have a webapp configured to use CLIENT-CERT authentication. When I attempt to point my browser at one of the resources guarded by a security-constraint, I can select and send a client certificate, but the server throws a SocketExceptio

RE: Virtual Hosts with Apache and Tomcat

2004-03-01 Thread Kannan Sundararajan
Being yourself as SYSADMIN for UNIX and Network, it would be nice that developers or professional should take a lead into get into this problem. It looks like that to me that it has been stepping or bossing up the developers up there. And since there is lot of techonology involved, it would be muc

Re: classloader order

2004-03-01 Thread Charles N. Harvey III
Yoav, Thank you so much for confirming what I had basically already figured out. I think, originally, we had other things running on our Tomcat machines (web-service processes) and it made it easier to develop apps with those jars included. I am currently asking them to move all of these jars to /

Session Timeout and "Direct Reference to login page"

2004-03-01 Thread Renato Romano
I have two problems i'm facing with every web application using declarative security model, that is: 1) Detect that the user session has expired, and forward him to an appropriate login page; Usually we build webapp in which the home page shows a login form; to handle this, I use to make a "index.

RE: Configuring tomcat logs

2004-03-01 Thread STOCKHOLM, Raymond
Thank's for the explanation. -Message d'origine- De : Shapira, Yoav [mailto:[EMAIL PROTECTED] Envoyé : lundi 1 mars 2004 15:31 À : Tomcat Users List Objet : RE: Configuring tomcat logs Hi, >Does anybody know if it is possible to configure tomcat >to have a "RollingFileAppender" (as in

RE: classloader order

2004-03-01 Thread Shapira, Yoav
Howdy, >I have read >http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html >many times over and I am still confused. The Overview relates parent >and children >classloaders to each other. It then says that the Java 2 way is to put >the Bootstrap >classloader first. It then st

RE: Can someone direct me to the documentation.

2004-03-01 Thread Shapira, Yoav
Hi, >http://jakarta.apache.org/tomcat/tomcat-4.1-doc/index.html >In the getting started topic. I do notice a blurb about web.xml in the >application developers topic stating "Covers basic organization of your >web application source tree, the structure of a web application archive, >and an intro

classloader order

2004-03-01 Thread Charles N. Harvey III
Hello. I have questions about the order in which jars are loaded into the classloader. I have read http://jakarta.apache.org/tomcat/tomcat-4.1-doc/class-loader-howto.html many times over and I am still confused. The Overview relates parent and children classloaders to each other. It then says

RE: Virtual Hosts with Apache and Tomcat

2004-03-01 Thread Mike Curwen
I have a sneaking suspicion that someone is still blowing smoke. ;) Either 1) the oracle pool has a leak 2) oracle server has a problem closing connections 3) you have a leak in the application. For problem 3), I find the DBCP's ability to 'tattle' on bad JSP pages/classes invaluable in trackin

RE: Web site error.

2004-03-01 Thread Shapira, Yoav
Hi, >The one on the left of the page does work. But if you look further down the >page in the main body there is another link for JK Documentation and it >points to >http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk2/doc/ which >is >redirected to the http://jakarta.apache.org/site/bin

Re: Virtual Hosts with Apache and Tomcat

2004-03-01 Thread Stephen Carville
Here is some more information on the problem. From a developer: "According to the document that the link below refers to, a single instance of Tomcat will have multiple JVMs, where each JVM represents a virtual host. The following link clearly states this virtual host concept as it applies to Tom

  1   2   >