Denny access to dir webapps

2002-12-12 Thread RAFA
Hi. How can I deny access to webapps directory and subdirectories? I work only with Tomcat, without Apache. Maybe modifying tomcat.conf? ¿?¿? Thanks. Rafa. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

[classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ola Berg
I have this problem with using my own (URLClassLoader) class loader in a servlet of mine. The thing is that I am writing a web front end to domain name services (automatic registration of .org, .com. .biz, .info etc domains). Depending on the top level domain, I need to use different versions

How to secure application

2002-12-12 Thread David Rayroud
Hi, Excuse me but I'm beginner user with Tomcat. I will protect an application, that can be use only for selected user. How can I configure Tomcat for this ? With roles (tomcat-users.xml)? I didn't find documentation for this. I'm using Tomcat 4.1.12, running on a SME 5.7 (beta 2), based on

RE: CATALINA_BASE Error ContextConfig.tldScanJar

2002-12-12 Thread Elisabeth Julg
Hi, Bonjour, I don't use Xerces. I use only tomcat 4.1.16-LE-jdk14 and jdk1.4.1. Stack trace : 2002-12-12 09:58:38 WebappLoader[/admin]: Deploying class repositories to work directory D:\PastelBase\work\Standalone\localhost\admin 2002-12-12 09:58:38 WebappLoader[/admin]: Deploy class files

RE: How to secure application

2002-12-12 Thread Jeroen Breedveld
|| -Original Message- || From: David Rayroud [mailto:[EMAIL PROTECTED]] || Sent: donderdag 12 december 2002 10:02 || To: TomcatUser || Subject: How to secure application || || || Hi, || || Excuse me but I'm beginner user with Tomcat. || || I will protect an application,

RE: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ralph Einfeldt
I would recommend to use a different approach: Define an interface for the API. Implement the different protocols in different classes with unique names. Load the classes dynamically and store instances of the classes in variables. Use the interface to access the api. public class

EVAL_BODY_INCLUDE and jasper2

2002-12-12 Thread Jochen Schwörer
hi, i have a question concering the difference between EVAL_BODY_BUFFERED and EVAL_BODY_INCLUDE. if i understand correctly, the only difference is that EVAL_BODY_BUFFERED buffers the output so that it can be evaluated in doEndTag(). when i have a custom tag which extends BodyTagSupport (and so

Tomcat under Forte

2002-12-12 Thread Shruti Ahuja, Noida
Hi, I am deploying a web application on Tomcat 4.0.1 server under Forte 4.0. I get the following exception when i open the homepage in the browser - http://localhost:8080 http://localhost:8080 . What might be the reason for this and how do i overcome it ?? Pls help.

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ola Berg
I would recommend to use a different approach: [snip] Doesn't help since the underlying API (outside of my control) belongs in different jars (same class names, different implementations). Sure, by tweaking I can do as you suggested, but the dynamic class loading will be the most flexible.

RE: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ralph Einfeldt
OK, that's a reason. So you create one instance of the classloader for each protocol/jar ? I think you have to find out where it hangs: - under linux/unix kill -QUIT jvmpid will produce a stacktrace for each thread (per dafault catalina.out) - build extensive logging in your classloader - use

problem with chinese output in jsp/tomcat 4.1.12

2002-12-12 Thread Partha Ranjan Das
Hi, I am using Tomcat 4.1.12. My requirement is to get Chinese characters in JSP pages. I am using the following code: in one page which has the form I am using: BODY form name=frm1 action=page2.jsp method=POST Select name=sel1 option value=1??/option option value=2/option

Problem with SSL on Tomcat 4.1.12 on win2k

2002-12-12 Thread talkingstone
I apologize in advance if this has been covered but while trying to follow some examples, SSL is not working properly. It hangs during execution. I'm sure you probably need more info but I'm too green to know what you might expect. Also, please give me a few tips on searching the list archive.

Re: CATALINA_BASE Error ContextConfig.tldScanJar

2002-12-12 Thread Martin Jacobson
Elisabeth Julg wrote: Hi, Bonjour, - Root Cause - java.io.IOException: Le chemin d'accès spécifié est introuvable at java.io.WinNTFileSystem.createFileExclusively(Native Method) at java.io.File.checkAndCreate(File.java:1313) at java.io.File.createTempFile(File.java:1401) at

Catalina Directory Listing

2002-12-12 Thread Gerrit Grobbelaar
How must I configure Catalina (Tomcat 4.1.12) so that it doesn't show a directory listing of the directories that don't have any welcome-files? The Valve Component? How? etc. Currently I have a weak sollution (IMHO): Implementing org.apache.catalina.servlets.DefaultServlet and give it (via

Re: problem with chinese output in jsp/tomcat 4.1.12

2002-12-12 Thread Mike W-M
I don't quite see where the chinese characters come into it, but I think you've forgotten to put the curly-brackets round the thing that's supposed to be conditional. Instead of %if(request.getParameter(sel1).equals(1))% ?? %out.println(hi from partha);% ...I suggest you try... %

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Martin Jacobson
Ola Berg wrote: I have this problem with using my own (URLClassLoader) class loader in a servlet of mine. The thing is that I am writing a web front end to domain name services (automatic registration of .org, .com. .biz, .info etc domains). Depending on the top level domain, I need to use

Error 403 using an Alias with Apache + Tomcat4

2002-12-12 Thread Marco Bucciarelli
I have a problem with Apache 1.3.12 and Tomcat 4.1.12 on a Linux RedHat 7.0. I tried both mod_jk and mod_webapp to let Tomcat and Apache talk together, now I am using mod_jk but I experienced this problem with both connectors. The problem is this: if I give an Alias directive to Apache, for a

newbie q about connectors

2002-12-12 Thread Adam Maltby
Hi all, Any ideas why I would be getting HTTP 500 errors msgs in the web interface when trying to create a new connector??? Also, if I had a website I wanted to run on port 80 only, would I need to set up a new tomcat service in the server or would it be another server install on the machine?

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ola Berg
I have an analogous case, in which I have a single API for database access, with choice of database (Oracle, MySQL,...) made at run-time. The problem was simply solved using the 'Abstract Factory' pattern. This means that I have two packages (db.MySql, db.Oracle), which both

RE: Catalina Directory Listing

2002-12-12 Thread Turner, John
Put an index.html file in each directory that redirects to the home page using a META REFRESH of zero. Not so elegant, but very simple and 100% effective. John -Original Message- From: Gerrit Grobbelaar [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 5:48 AM To: Tomcat

RE: How to build jk2?

2002-12-12 Thread Turner, John
I'm not on the team, so I wouldn't know. I'm sure they would appreciate a documentation patch if you're inclined to submit one. Using configure is familiar to most systems administrators. John -Original Message- From: Joseph Shraibman [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: newbie q about connectors

2002-12-12 Thread Turner, John
For number 1, you'll have to provide lots more information. What does create a new connector mean? You're writing your own connector? For #2, if you have no concerns about running a process as root on port 80, just change Tomcat's HTTP connector from the default 8080 to port 80 and you will

Re: How to secure application

2002-12-12 Thread Andreas Hucks
I found another one at: http://www.onjava.com/pub/a/onjava/2001/07/24/tomcat.html, but I have a question about it, too: This seems to be a Tomcat-specific way. Is it? If it is, is there an equivalent method that works for all servlet 2.3 containers (besides writing my own filter to do it)?

Service/Connector suddenly stops

2002-12-12 Thread Cato Løkseth
Hi, I'm having two services/websites set up on my Tomcat. One on port 80 another on 81 (the sites are the same except that the port 80 is the one that is used the most). Within the last year the website at port 80 has stopped twice! When accessing the website that stopped from client browsers

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ola Berg
Or you could try to isolate the problem with an example and post that to the list. The problem can be stated as ---8--- URL[] urls = new URL[]{ new URL(http://www.myserver.com/jars/myapi-1.2.jar;) }; URLClassLoader cl = new URLClassLoader( urls); //have tried different parents //here it hangs

/WEB-INF

2002-12-12 Thread Alberto Puerta
Hi. I've Tomcat installed in Linux and some virtual hosts i'd like they use the same WEB-INF directory but tomcat ignores symlinks and the WEB-INF link, so the web crashes (there's no web.xml). How can i use the same WEB-INF for different virtual hosts? Thanks. -- To unsubscribe, e-mail:

RE: problem with chinese output in jsp/tomcat 4.1.12

2002-12-12 Thread Partha Ranjan Das
Hi Mike, Thanks for your observation. The main problem is : whenever i try to use some chinese content in the jsp whether in the body or in the java code, the jsp tags are not being parsed by the jsp engine with tomcat4.1.12. And hence, in the html output, I am finding that the %...% tags are

RE: newbie q about connectors

2002-12-12 Thread Adam Maltby
For 1, this is in the web interface management screen, when you click on localhost and select Create New Connector from the drop down list. IE to create a new port etc. For 2, maybe I didn;t make myself quite clear, what mean is i would like the management stuff to be just accessed on 8080, and

RE: Catalina Directory Listing

2002-12-12 Thread Gerrit Grobbelaar
Would still like to do it the proper way though. I know with Tomcat 3.2.x it was as simple as referencing the RequestInterceptor component in server.xml: RequestInterceptor className=org.apache.tomcat.request.StaticInterceptor debug=0 suppress=true / So now for the HOWTO with

using manager web application

2002-12-12 Thread Eman Fattouh
dear all; i'm new in using Tomcat server, and i'm trying to deploy my applications on it. i tried to use manager web application through its web interface at http://myserver/manager/ i ftp my war file on server and try to install it but i couldn't it gives me connection time out i use it

Re: using manager web application

2002-12-12 Thread Ola Berg
Just a simple guess, sorry if this is just too stupid of me to point out but, have you tried http://myserver:8080/manager ? /O - Original Message - From: Eman Fattouh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 12, 2002 12:53 PM Subject: using manager web

Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
Hi all I'm really stuck here and I'd appreciate some help. To summarise, I've followed the instructions below to generate a CA key so that I can sign my own certificates for use with tomcat. The instructions below work and the ca.crt and client.crs.der certs that pop out are viewable in IE. If I

RE: How to secure application

2002-12-12 Thread Ralph Einfeldt
It's part of the servlet spec so it should work with any 2.3 compliant container. (Spec 2.3 SRV.13.1 Deployment Descriptor Elements) -Original Message- From: Andreas Hucks [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 12:18 PM To: Tomcat Users List Subject: Re: How

Tomcat 4.1.12 Memory Usage

2002-12-12 Thread Laxmikanth M.S.
Hi all, Earlier I installed tomcat3.3.1 with apache1.3.27 ...the performance of the machine was better... Now I have installed Tomcat4.1.12 with apache1.3.27 the system Memory usage is full and almost it hangsis this the problem with tomcat4.1.12...do i need to do some extra setting to improve

Security violation in Tomcat 4.0.6

2002-12-12 Thread Gayathri Shaikh
Hi I am using Tomcat 4.0.6 LE JDK 1.4 with JDK 1.4.1_01. I am getting the following Security violation when I try to access my web application. java.security.AccessControlException: access denied (java.lang.RuntimePermission accessClassInPackage.org.apache.catalina.util) at

RE: newbie q about connectors

2002-12-12 Thread Turner, John
Sorry, I can't help you with #1, I'm not familiar with what that is...I edit server.xml directly. For #2, there are a couple of different options, basically to get something without a port number on the URL you either need to add a second HTTP connector on port 80 and run tomcat as root (not

Re: problem with chinese output in jsp/tomcat 4.1.12

2002-12-12 Thread Mike W-M
That's clearer. My email client isn't showing the chinese characters, actually. I'm sure both that fact and your problem are related to character-encoding...(though I don't exactly know what to do about it). JSPs have a contentType attribute. (I think it defaults to iso-8851 (equivalent to

Tomcat uptime and stability in production environments

2002-12-12 Thread Mike W-M
I remember someone telling me once, No wonder we're having problems - that NT box hasn't been rebooted for a week. I haven't seen any mention of it here, but wondered if anyone has any similar(ly pithy) advice to offer on matters of Tomcat / Java stability and uptime. Is one sensible to plan to

RE: Tomcat uptime and stability in production environments

2002-12-12 Thread Turner, John
We're currently running Tomcat in production, and have been doing so for over a year. One of our servers has over a dozen Tomcat instances on it (3.x). Linux, of course. It's uptime is just under 7 months, and the Tomcat instances have never been restarted except on a few occasions (once every

Re: Tomcat uptime and stability in production environments

2002-12-12 Thread Tim Funk
We try to restart our tomcats at least once every other week. This is because we are JSP heavy and we have many page changes per day. We have found we can get through 2 weeks without running OutofMemory from the JSP recompile memory leak. (YMMV) If it weren't for the JVM javac memory leak - we

need help urgently

2002-12-12 Thread Eman Fattouh
dear all; i have some applications under webapps folder. all of them must include some static html files. the problem is if i jave the following file system: /var/tomcat4/webapps/test1 -- application 1 containing test1.jsp file and others /var/tomcat4/webapps/test2 --- application

RE: need help urgently

2002-12-12 Thread Aleksandr Shneyderman
the workaround that would be to put a link (include) in test1 and test2 that links to the ../include Alex. -Original Message- From: Eman Fattouh [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 8:48 AM To: Tomcat Users List Subject: need help urgently dear all;

virtual hosting on tomcat

2002-12-12 Thread Sherif D Mohamad
I am trying to add a virtual host on tomcat, I added this lines to server.xml file: Host name=mydom.net debug=0 appBase=/home/username/webapps/ROOT unpackWARs=true Aliasmysite.mydom.net/Alias Logger className=org.apache.catalina.logger.FileLogger directory=logs

problems with servlets

2002-12-12 Thread Carlos Alberto Peláez Ayala
Hello, I have tomcat 4.1.12 with uPortal 2.1 and after make the ant deploy, from the uPortal directory, the building proccess it´s ok. But, when i try to access to my uPortal installation http://localhost:8080/uportal, appear this problem (thank´s for help me :) HTTP Status 500 -

Re: How to upgrade form 4.1.12 to 4.1.16beta?

2002-12-12 Thread Marco Baiguera
what about upgrading using rpm (under redhat linux)? is it safe in a production environment? thank you - Original Message - From: Brandon Cruz [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Friday, December 06, 2002 7:14 PM Subject: How to upgrade form 4.1.12 to

RE: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Cox, Charlie
-Original Message- From: Ola Berg [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 3:52 AM To: Tomcat Users List Subject: [classloading] How to use URLClassLoader within a servlet I have this problem with using my own (URLClassLoader) class loader in a servlet of

RE: virtual hosting on tomcat

2002-12-12 Thread Gerrit Grobbelaar
you sure that the references to the manager application is in place? and is it actually there where it is referring to? Gerrit -Original Message- From: Sherif D Mohamad [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 01:53 To: [EMAIL PROTECTED] Subject: virtual hosting on

Apache-Tomcat HOWTO

2002-12-12 Thread Denise Mangano
Another trivial question... I am looking at John Turner's how-to's for setting up Apache 1.3.26 + Tomcat 4.0.4. There was a post that when reading the how-to's version numbers are not that critical. Will this document help me for my Apache 1.3.27/Tomcat 4.1.12 set up? If so, then does that mean

RE: How can I get better logs from tomcat4.1.x?

2002-12-12 Thread Shapira, Yoav
Howdy, Are you looking to monitor tomcat internally, in which case things like the RequestDumperValve configured at the top level (so all hosts share it) might be useful? Or a debug=99 (instead of the default debug=0) setting on each host, along with that host's logger configured to write to the

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Laxmikanth M.S.
this will help and I have used ...adn works fine I would like to know where john Turner works and where he is Regards Laxmikanth M S Off* : 91-80-6610330 extn 1256 Res* : 91-80-5267150 http://www.sonata-software.com Coming together is the beginning, staying together is progress and

RE: learning filters

2002-12-12 Thread Shapira, Yoav
Howdy, 1. Is it a good idea to do so? Depends on your use cases. How many entry points does your app have? 2. The filter mapping tag in the web.xml now looks like: a. filter-mapping/*/filter-mapping b. Would this not slow down the application, since in a standalone scenario, all request for

RE: Memory issues

2002-12-12 Thread Shapira, Yoav
Howdy, Are you saying garbage collection never happens? Or that it never de-allocates anything? The overall resident process size will never decrease, only increase up to the limit you (sort of) specify using parameters like -Xmx. Java will allocate memory as needed up to that limit, and

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Turner, John
Right here. :) John -Original Message- From: Laxmikanth M.S. [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 9:03 AM To: Tomcat Users List Subject: RE: Apache-Tomcat HOWTO this will help and I have used ...adn works fine I would like to know where john

RE: problems with servlets

2002-12-12 Thread Shapira, Yoav
Hi, Perhaps if you looked at this line 230 in PortalSessionManager.java, you could learn more ;) It's tough to help with just the information you provided. Is there anything else in the tomcat logs? Can you run the tomcat examples without problems? How is the uPortal context configured?

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Laxmikanth M.S.
don't kid yaar... where u work and which part of world u r living upto my knowledge the active participant of this list are John Turner,,,Bill Barker to say Regards Laxmikanth M S Off* : 91-80-6610330 extn 1256 Res* : 91-80-5267150 http://www.sonata-software.com Coming together is the

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Kris Schneider
As an experiment, I created a directory under WEB-INF called ext and dumped a JAR file in it (commons-cli-1.0.jar). Then I created a servlet that did: URL jarURL = getServletContext().getResource(/WEB-INF/ext/commons-cli-1.0.jar); URL[] urls = { jarURL }; ClassLoader ctxClassLoader =

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Turner, John
#1: Yes. #2: No. :) You don't need ant. When I originally wrote the HOWTO, I thought you did, so I hacked through getting it to work and put that in my HOWTO. Then, based on a tip from someone on the list I learned that I didn't need to go through all that, all I needed to do was follow

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Turner, John
Ann Arbor, MI, USA, home of the University of Michigan Wolverines. Go Blue. John -Original Message- From: Laxmikanth M.S. [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 9:11 AM To: Tomcat Users List Subject: RE: Apache-Tomcat HOWTO don't kid yaar... where u

Re: Tomcat port number

2002-12-12 Thread Lindomar
Search for 8080 in server.xml You'll find this connector : Connector className=org.apache.coyote.tomcat4.CoyoteConnector ... Finally change the number 8080. - Original Message - From: Laxmikanth M.S. [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, December

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Laxmikanth M.S.
I am from India and work for Sonata Software.r u a student -Original Message- From: Turner, John [SMTP:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 7:45 PM To: 'Tomcat Users List' Subject: RE: Apache-Tomcat HOWTO Ann Arbor, MI, USA, home of the University of

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
Just to clarify, when I try to connect via SSL the SSL Handshake fails. Donie -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 12:08 To: 'Tomcat Users List' Subject: Creating a signed SSL certificate with my own CA Hi all I'm really stuck here and

RE: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Cox, Charlie
have you looked at WebAppClassloader.java to see how it is implemented in tomcat? Also see the Loader element in server.xml to see if that would help you extend the WebAppLoader.java to implement your own WebAppClassloader Charlie -Original Message- From: Ola Berg [mailto:[EMAIL

RE: Tomcat uptime and stability in production environments

2002-12-12 Thread Shapira, Yoav
Hi, We have tomcat instances (on Solaris) that haven't been restarted in months and are seeing daily production use in excess of 5000 of hits on average. Java will not take more than the max memory allowed to it (64MB by default, controllable via a combination of -Xmx and other VM options). This

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Turner, John
I'm a student, but not a student. I work full time and go to school full time, both. John -Original Message- From: Laxmikanth M.S. [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 9:17 AM To: Tomcat Users List Subject: RE: Apache-Tomcat HOWTO I am from India and

Catalina Directory Listing

2002-12-12 Thread Gerrit Grobbelaar
Please help, the following is still unresolved: == Would still like to do it the proper way though. I know with Tomcat 3.2.x it was as simple as referencing the RequestInterceptor component in server.xml: RequestInterceptor

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Milt Epstein
On Thu, 12 Dec 2002, Turner, John wrote: Ann Arbor, MI, USA, home of the University of Michigan Wolverines. Go Blue. Hey, I heard the basketball team finally won the other night :-). (Go Illini! :-) Milt Epstein Research Programmer Integration and Software Engineering (ISE) Campus

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Turner, John
Yes, they did! LOL It's a rebuilding year. :) John -Original Message- From: Milt Epstein [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 9:29 AM To: Tomcat Users List Subject: RE: Apache-Tomcat HOWTO On Thu, 12 Dec 2002, Turner, John wrote: Ann Arbor, MI,

Re: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Christoph Fischer
Maybe you have an entry for a special proxy-server in you IE for SSL-connections ? I've created a key with the keytool from j2sdk1.4.1 and it works without problem Chris Donie Kelly wrote: Hi all I'm really stuck here and I'd appreciate some help. To summarise, I've followed the instructions

Re: Catalina Directory Listing

2002-12-12 Thread Milt Epstein
On Thu, 12 Dec 2002, Gerrit Grobbelaar wrote: Please help, the following is still unresolved: == Would still like to do it the proper way though. I know with Tomcat 3.2.x it was as simple as referencing the RequestInterceptor component in

Re: need help urgently

2002-12-12 Thread Eman Fattouh
i'm appreciating your response, but are u sure that there is no another solution? i can't use links as these files are the banner and footer of the site, so i have to use jsp:include tag.. all that i want to make sure..is it really not permitted to refer to any static resources outside my

RE: Apache-Tomcat HOWTO

2002-12-12 Thread Milt Epstein
On Thu, 12 Dec 2002, Turner, John wrote: Yes, they did! LOL It's a rebuilding year. :) How many years they been saying that? :-) -Original Message- From: Milt Epstein [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 9:29 AM To: Tomcat Users List Subject: RE:

[OFFTOPIC] RE: Apache-Tomcat HOWTO

2002-12-12 Thread Turner, John
Two. Last one and this one, with the new coach. Next year, I think they will jam. The new coach has been making good progress, and he's got some significant (though still green) talent to work with. As long as the NCAA doesn't add insult to injury and add additional penalties onto the school

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
I can create a single key and use that. it works ok. When i try to sign the key using my own ca is where the problem is happening. Donie -Original Message- From: Christoph Fischer [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 14:35 To: Tomcat Users List Subject: Re: Creating a

Custom resource Factory problem

2002-12-12 Thread Aleksandr Shneyderman
(tomcat 4.1.16) I was trying to create a custom resource factory and get the following exception: javax.naming.NamingException: Cannot create resource instance at org.apache.naming.factory.ResourceFactory.getObjectInstance(ResourceFactory. java:189) at

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Bodycombe, Andrew
You can turn SSL debugging by setting the following environment variable CATALINA_OPTS=-Djavax.net.debug=ALL Then, restart tomcat. You will then see much more info in the log. This might help you to debug your problem. Andy. -Original Message- From: Donie Kelly To: 'Tomcat Users List'

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ola Berg
couldn't you use this the 'top level domain' to determine which context to send the request to?. Yes of course. That is one of the B plans, should this classloading thing fail. A plan is still dynamic class loading. /O -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

RE: Creating a signed SSL certificate with my own CA

2002-12-12 Thread Donie Kelly
Thanks I'll turn it on and get back her if the logs don't help me... Donie -Original Message- From: Bodycombe, Andrew [mailto:[EMAIL PROTECTED]] Sent: 12 December 2002 14:58 To: 'Donie Kelly '; ''Tomcat Users List' ' Subject: RE: Creating a signed SSL certificate with my own CA You

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Ola Berg
As an experiment, I created a directory under WEB-INF called ext and dumped a' JAR file in it (commons-cli-1.0.jar). Then I created a servlet that did: [snip] Which is just the kind of thing you want, yes? No, you cheated ;-) You put the jar file in the WEB-INF. Strictly, we want it

Errors in iis_redirect.log file

2002-12-12 Thread Jordi Masip
Hi, I find next two errors inside iis_redirect.log file after working with a java application (JDBC, JSPs,...) using IIS5 and Tomcat 4.0.1 in a w2k server: [Tue Dec 03 10:54:10 2002] [jk_isapi_plugin.c (404)]: jk_ws_service_t::start_response, ServerSupportFunction failed [Tue Dec 03 10:54:10

Tomcat list Unsubscribe

2002-12-12 Thread Kurelli Rajsekar
Please unsubscribe me. -Original Message- From: Ola Berg [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 8:37 PM To: Tomcat Users List Subject: Re: [classloading] How to use URLClassLoader within a servlet couldn't you use this the 'top level domain' to determine which

RE: How to upgrade form 4.1.12 to 4.1.16beta?

2002-12-12 Thread Brandon Cruz
I just ended up installing the binary and copying over my webapps, web.xml, server.xml, and a couple other files. Wasn't too bad. After checking, I think I could have just swapped out jar files as well, but didn't want to take the chance since it was kind of an emergency. Brandon

RE: Cannot Run Servlets, only JSP's

2002-12-12 Thread Jim Henderson
Boy does this sound familiar! Check the posts with subject entitled RE: Directory Structure from yesterday. They may help. Sorry, if I knew to pass you the links I would. I had the SAME problem for 3 days! -Original Message- From: Johnson, Garrett [mailto:[EMAIL PROTECTED]] Sent:

Re: How to upgrade form 4.1.12 to 4.1.16beta?

2002-12-12 Thread Peter
I'd be careful using the RPM on RH 8.0. I just installed Apache 2.0.43 with the RPM thinking the RPM would upgrade my 2.0.4 installation but instead I now have two version installed in differend directories. It's a pain because the Apache Configuration utility points to 2.0.4. Does anybody

Re: Tomcat uptime and stability in production environments

2002-12-12 Thread Marco Bucciarelli
About the problem of memory usage, I have a question. Yesterday, after a lot testing, I upgraded my production environment (RedHat Linux 7.0, Apache 1.3.22, Sun JDK 1.3.1) from Tomcat 3 to Tomcat4.1.12. The version of Apache remains the same. I have 10 web applications with not very much users

RE: Tomcat uptime and stability in production environments

2002-12-12 Thread Brandon Cruz
Mike, I had this mysterious problem with Tomcat 3.2.4 which would force us to restart the server almost every day due to CPU usage slowly increasing over time. We tried upgrading to Tomcat 4.1.12 and found it to have several bugs and crash every once in a while (the crashing could have been

Re: [classloading] How to use URLClassLoader within a servlet

2002-12-12 Thread Kris Schneider
Okay, I moved the JAR to $CATALINA_HOME/webapps/ROOT and changed the code to: URL jarURL = new URL(http://gizzard.dotech.com:8080/commons-cli-1.0.jar;); And got as output: URL of org.apache.commons.cli.ParseException:

RE: Tomcat uptime and stability in production environments

2002-12-12 Thread Aleksandr Shneyderman
if I put all the jars in every context, how memory consuming is this? since web application's class loader looks at your WEB-INF/classes/ and WEB-INF/lib/*jar first it loads a class per application. So if you have say ten applications and they use an identical class say A that is say 20K your

Re: need help urgently

2002-12-12 Thread Kris Schneider
jsp:include is limited to ...the inclusion of static and dynamic resources in the same context as the current page. But, since it looks like you're using TC 4.x, you can take advantage of JSTL to include content from a different context within the same container or even from an absolute URL. For

JSP compile problem with embedded Tomcat

2002-12-12 Thread Bradford Holcombe
I am trying to embed Tomcat into a Java application using the following builds: Tomcat 4.1.16beta JDK 1.4.1_01 I started with the source code that appeared in the OnJava article http://www.onjava.com/pub/a/onjava/2002/04/03/tomcat.html. I am trying to serve a webapp that does work fine when I

RE: Apache-Tomcat mod_jk

2002-12-12 Thread Denise Mangano
Thank you very much for your help. The instructions were easy enough to follow, with a few exceptions. I downloaded the mod_jk-1.3-eapi.so because as per the site, that was the module to use if I am running Apache 1.3 with mod_ssl. After doing all the steps I tried to restart Apache and got the

RE: Hello World

2002-12-12 Thread eduardofcomelo
dear reynir, the code below is the code of the application, but all the methods returns an empty string. I would like to know if there is an error at tomcat service. What can I do to get any return from the server. table border=0 border=100% tr th align=rightContext Path:/th td align=left%=

RE: Apache-Tomcat mod_jk

2002-12-12 Thread Denise Mangano
By the way - not sure if I have the right path to my apache/libexec, but other modules were in my /usr/lib/apache/ directory so that is where I placed this one... Denise Mangano Help Desk Analyst Complus Data Innovations, Inc. -Original Message- From: Denise Mangano Sent: Thursday,

Tomcat 3.2.1 + Apache 1.3 won´t work..

2002-12-12 Thread Günther Mittermayer
Hi all, I´ve been trying to set Tomcat and Apache to work together for some time, and after a couple of silly errors I got to a point where things seem to work, but Tomcat won't be called by Apache if I try to access a .jsp file.. I set up Apache to have two virtual hosts refering to two

Re: Beginner

2002-12-12 Thread eduardofcomelo
What happens when the examples do not work? Do you get an error message? What is it? All the request methods below return an empty string. table border=0 border=100% tr th align=rightContext Path:/th td align=left%= request.getContextPath() %/td /tr tr th align=rightPath

RE: Apache-Tomcat mod_jk

2002-12-12 Thread Turner, John
Do you have a workers.properties file? Creating one is explained in my HOWTO...JK needs one to understand how to get to Tomcat. Do you have the JkMount statements in httpd.conf? Apache needs those to understand what to send to JK. John -Original Message- From: Denise Mangano

RE: Apache-Tomcat mod_jk

2002-12-12 Thread Turner, John
That's not really the standard place for them, but as long as Apache starts up there shouldn't be any problems. You can also check Apache config by: /some/path/to/apache/bin/apachectl configtest It's usually quicker than starting it up and stopping it all the time. John -Original

Apache+mod_dav+connector dilemma

2002-12-12 Thread Jonas Bosson
Dear tomcat wizards. I can't get mod_dav to work since the jk connector routes all http method calls for *.xml pages to tomcat. Any solution I can think of requires a modification of the connectors in tomcat. Before I proceed, I need help to decide what the best solution is: Alt 1: Allow the

Re: Tomcat uptime and stability in production environments

2002-12-12 Thread Mike W-M
It's all making interesting reading. I'm slightly surprised to see so many people on 4.1.x. When I stuck my head down a month or so ago to do some work, 4.0.4 was the production release. (A longstanding one, I believe.) Suddenly 4.1.x is the production version and everyone seems to be using that.

RE: Tomcat 3.2.1 + Apache 1.3 won´t work..

2002-12-12 Thread Ralph Einfeldt
Your setup is not consistent: In the worker.list the names are missing the ajp -Original Message- From: Günther Mittermayer [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 12, 2002 4:41 PM To: [EMAIL PROTECTED] Subject: Tomcat 3.2.1 + Apache 1.3 won´t work.. JkMount

RE: How can I get better logs from tomcat4.1.x?

2002-12-12 Thread Brandon Cruz
Thanks for the pointers! I think the request dumper valve would work, but it will probably provide too much information for me. I only want the logs to only show exceptions and errors or the information that developers intentionally write to System.out. I do need to know which host is causing

  1   2   3   >