Re: Rpm start up scripts.

2002-09-10 Thread Kwok Peng Tuck
Hmm. Didn't try that but will do attempt it later. Thanks I'll post on my failure/success later. Sam Ward wrote: Hi, I am not fully aware of what the rpm scripts do, but the first thing to check would be to see if the startup script is being called by init. As root, run chkconfig --list

Antwort: RE: Apache 2.0.40, mod_jk core dump on AIX

2002-09-10 Thread johannes . grumboeck
Thank you for your hint - I'll be trying to find something helpful. (I remember having a similar problem for PHP DSO a few months ago...) But anyway, it worked to compile mod_jk as static module into Apache 2.0.40. For the moment that's good enough, but not the optimum. greetings, Johannes

tomcat start error

2002-09-10 Thread Halil AKINCI
Hi, I've installed tomcat 3.3.1 and j2sdk1.4 on windows 98 machine. I have an application that includes following web.xml file. Tomcat is running, but before the running, some error lines display on DOS console, but tomcat is running correctly. This is the error lines; 2002-09-10

What does WARP stand for, anyway?

2002-09-10 Thread Ian McFarland
Web Application Routing Protocol? Couldn't find it on the Apache site, via Google, nor in the source code. (Perhaps I overlooked it there?) Thanks, -Ian -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Configuring tomcat 4.1.10 for working with both http and https

2002-09-10 Thread Giovanni Cuccu
At 18:19 09/09/2002 +0200, you wrote: I found that if I use the old connector (JK) all works well. It seems like the jk2 connector (which is much faster than its predecessor) still need some testing before going really usable. Giovanni Hi all, I have just downloaded tomcat 4.1.10 and

AW: line feeds in response

2002-09-10 Thread Alexander Stage
Thanks. Alex -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 9. September 2002 23:42 An: Tomcat Users List Betreff: Re: line feeds in response I had a similar problem a couple of days ago. I had to remove the @ page directive at the

Re: form-login-config

2002-09-10 Thread Martin Jacobson
Richard Chamberlain wrote: Hi Martin, We do have it on pretty much every page. Once the user is logged the form gets replaced with a kind of member control panel. If you look at slashdot.org they do a similar thing with a member login on each page in the right column - it's doesn't take

Re: Restart webapp after Exception

2002-09-10 Thread ppetershagen
Hi, I have a problem with a webapp application. It produces sometimes a java.lang.OutOfMemory error and Tomcat is going to shut it down like this: java.lang.OutOfMemoryError java.lang.OutOfMemoryError Stopping service Tomcat-Standalone Exception during startup processing

Re: Restart webapp after Exception

2002-09-10 Thread Kwok Peng Tuck
Maybe you should first try and figure out why it's running out of memory? Maybe it has to do with the jsp and servlets that are being use ? If you set your heap to a large value, that won't necessarily solve your problems it might just cure the symptoms. [EMAIL PROTECTED] wrote: Hi, I

RE: Error in apache - LoadBalance with Tomcat

2002-09-10 Thread Vincent . Gaboriau
It seems as your tomcat isn't running. 1 - Tomcat hasn't been started. 2 - A webapp cause a tomcat's crash. 3 - As most of the time, it's a miss configuration. -Message d'origine- De : Alvaro Mota [mailto:[EMAIL PROTECTED]] Envoye : lundi 9 septembre 2002 22:47 A : Tomcat Users List

AW: HELP! Configuring HTTP-headers per mime type?

2002-09-10 Thread Power-Netz \(Schwarz\)
I'd like to send out the following HTTP headers for all *.xml files Content-Cache=maxage=3600 while for *.jsp it should be Content-Cache=no-cache. I know how to configure headers per mime type under Apache, but how is this done under Tomcat? *Can* it be done? simple :

RE: Sessions problem with TC4 on Win XP Home when browsing from localhost

2002-09-10 Thread Vincent . Gaboriau
The session are managed using the cookies. The cookie uses the Domain Name to see the rights to read or write them. If in Tomcat you have specified an host with full name (theServerName.theDomainName), it could be the reason. The cookie is created with the Domain Name theDomainName and the pages

Cant get tomcat 4.1.10 to retirve groups from ADS

2002-09-10 Thread Richard Pearson
Hello, I am having problems getting tomcat 4.1.10 (and previous versions) to correctly use the JNDI realm with microsoft ADS. Tomcat will logon the user but does not find any roles so permission to access the web pages is denied. Here is the section from the web.xml file. Realm

ISAPI troubles

2002-09-10 Thread David LAGARDERE
Hi. I'm using Tomcat 4.0 with IIS 5.0 and I get a lot of the following errors : [jk_isapi_plugin.c (580)]: HttpFilterProc [/scripts/..%5c../winnt/system32/cmd.exe] contains on or more invalid escape sequences. [jk_isapi_plugin.c (404)]: jk_ws_service_t::start_response, ServerSupportFunction

Re: form-login-config

2002-09-10 Thread Richard Chamberlain
Hello, On Tue, 10 Sep 2002 09:13:38 +0200, Martin Jacobson [EMAIL PROTECTED] said: Richard Chamberlain wrote: Hi Martin, We do have it on pretty much every page. Once the user is logged the form gets replaced with a kind of member control panel. If you look at slashdot.org they

RE: Changing the IP address

2002-09-10 Thread Drinkwater, GJ (Glen)
There are two ways to do this. Firstly on your network, your users could use the name of your computer followed by the domain balam2.cuc.uqroo.mx. So you could use http://name.balam2.cuc.uqroo.mx:8080/examples/SendAMail.jsp to get to your server. Or have a alias on your DNS server for example

3.3.2dev and CGI-Servlets

2002-09-10 Thread Power-Netz \(Schwarz\)
Hi, has anyone a good resource for a cgi / php / perl servlets for TC 3.3.2dev ? I want to do calls like this /webapp/cgi/addblah.pl Is something like this available? Ihr Support-Team POWER-NETZ® Full-Service-Provider Online-Support: Support: 0190 - 15 11 15 (EUR 0,62/Min)

Re: Communicating with Tomcat3 through shell scripts.

2002-09-10 Thread David Cassidy
why not use something like wget or curl or perl's network stuff to access your jsp. D Srinadh Karumuri wrote: Help! Help! Help! Can I use 'handle' parameter in server.xml to do this task as below: Connector className=com.mycom.TCCommunicator Parameter name=handler

AW: Communicating with Tomcat3 through shell scripts.

2002-09-10 Thread Power-Netz \(Schwarz\)
We need to disable the user input sometimes and typically we store a flag in the session. To modify this flag we use a jsp page. If I can communicate with tomcat from shell scripts while it is running, I will be able to able to set it up in crontab etc. Write a framework that can be

Performance Tuning

2002-09-10 Thread David LAGARDERE
Hi. I would like to know if there are some known tips to tune Tomcat 4.0 performances over IIS 5.0. Does isolation degree of Jakarta application import (appart from security considerations) ? Should workers be added and load balanced ? Don't hesitate to give me some advices. Thanks in advance.

Tomcat 3.2.4 slow with Jdk1.4 and SSL

2002-09-10 Thread Wolfgang Stein
Migrating from Jdk1.3 to Jdk1.4 we encountered a significant performance decrease on SSL-communications (server certs) between Applets and Tomcat 3.2.4. Did anybody experience similar performance losses ? Does this happen because of a low SSL implementation in jdk1.4 ? Did anybody

server.xml and configuring connection pools

2002-09-10 Thread Donie Kelly
Hi all Simple problem I guess. I'm trying to limit tomcat to 20 threads max but still accept connections using the acceptCount parameter of Connector in server.xml. My problem is that the application will accept up to 20 connections and give connection refused for everything else. What am I

SetCharacterEncodingFilter PROBLEM

2002-09-10 Thread Vladimir Garanovich
Anything Strange Tomcat 4.0.1, 4.0.3, 4.0.4, 4.1.10 Filter worked request.getCharacterEncoding() = utf-8 But in all cases I receive all parameters length = 13 but it must be 11 What wrong? Web.xml filter filter-nameSet Character Encoding/filter-name

Source code directory / deployment directories / CVS repository tree (URGENT)

2002-09-10 Thread Heligon Sandra
I have a question about the directories structure. For a web application we distinguish two directories structures: - source code directory that contains Java classes/packages specific to the application - deployment application directory (= Tomcat

Difference between ajp13 and ajp14

2002-09-10 Thread Marc
Hi everybody!!! What is the difference between ajp13 and ajp14? is ajp14 an improve over ajp13? Wich do u think is the best (performance, estability, ...) for connecting tomcat4.1.10 to apache1.3.26?? Thank u all!!! Marc -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Suspected Content-Length bug in SSL adapter, Tomcat 4.0.4.

2002-09-10 Thread Tom Cook
Hi, I have spent hours trying to figure this out and have searched the bug database and the mailing list archives, and have not had any luck, so I am posting it here. The story: * I am building a web application using tomcat and struts. * This application is a simple, four-form system, with

jspc name-mangling and mapping vs. Tomcat on-the-fly compile

2002-09-10 Thread Scott Dayberry
Sorry if this has been answered, but I couldn't find anything searching. It might be in older archives, as my issue is with Tomcat 3.2.3. I'm trying to get JSP pre-compilation to work, but have the following problem. (The example is using a one page webapp,

Re: Source code directory / deployment directories / CVS repositoryt ree (URGENT)

2002-09-10 Thread Ben Walding
Probably a good idea to read through http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/source.html. I personally don't like having TomCat looking into my source area as I prefer to deploy for development like I do for production. To this end I just create a WAR file and use the

RE: RE: RE: Problems with class loader

2002-09-10 Thread Cox, Charlie
Glad I could help! I enjoyed the discussion as well. I like the challenging problems :) sorry for the late response, I was out of the office. Charlie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, September 06, 2002 3:15 AM To: [EMAIL PROTECTED]

RE: Debugging class loading

2002-09-10 Thread Cox, Charlie
before you go hacking with your own classloader, have you reviewed the classloader doc? What kind of problems are you having? Only classes in each web application are loaded by the web app's classloader. If you have classes in \common\lib or \tomcat\lib, they are loaded by StandardClassLoader.

Re: Suspected Content-Length bug in SSL adapter, Tomcat 4.0.4.

2002-09-10 Thread Remy Maucherat
Tom Cook wrote: Hi, I have spent hours trying to figure this out and have searched the bug database and the mailing list archives, and have not had any luck, so I am posting it here. The story: * I am building a web application using tomcat and struts. * This application is a simple,

RE: Url Mapping with mod_jk

2002-09-10 Thread Anthony Milbourne
I'm replying to my own message because I have sort of made some progress I have found (by reading the mod_jk.log - which I should have checked before) that mod_jk was failing to connect to a socket. I spent a long time trying to figure out whi it couldn't connect as I could do it manually.

Re: Tomcat 4.0.4 under Windows NT crashes: memory cannot beread

2002-09-10 Thread Larry Meadors
I have actually found the 1.4.1 release candidate to be MORE stable than 1.4.0 was. You might try that. Larry [EMAIL PROTECTED] 09/09/02 23:32 PM Randall Schulz suggested that I upgrade Java. I've checked the Java system on this machine, and it is already 1.4.0.01, so about as recent as we

RE: Url Mapping with mod_jk

2002-09-10 Thread Vincent . Gaboriau
Hi, Can we see your config files : httpd.conf (the interesting part), the server.xml and workers.properties. -Message d'origine- De : Anthony Milbourne [mailto:[EMAIL PROTECTED]] Envoyé : mardi 10 septembre 2002 13:55 À : 'Tomcat Users List' Objet : RE: Url Mapping with mod_jk I'm

Re: AW: HELP! Configuring HTTP-headers per mime type?

2002-09-10 Thread Gili
That won't work. What you mentioned only works for JSP files, not XML or HTML files. There has to be a way to specify headers externally from the file itself. Gili On Tue, 10 Sep 2002 10:04:38 +0200, Power-Netz \(Schwarz\) wrote: I'd like to send out the following HTTP headers

RE: server.xml and configuring connection pools (URGENT: please look)

2002-09-10 Thread Donie Kelly
Hi all Simple problem I guess. I'm trying to limit tomcat to 20 threads max but still accept connections using the acceptCount parameter of Connector in server.xml. My problem is that the application will accept up to 20 connections and give connection refused for everything else. What am I

RE: Rpm start up scripts.

2002-09-10 Thread Turner, John
Use the binary. I have RH 7.2 servers, and the binary install is absolutely, 100% painless. There's no need for an RPM. John -Original Message- From: Kwok Peng Tuck [mailto:[EMAIL PROTECTED]] Sent: Monday, September 09, 2002 11:29 PM To: [EMAIL PROTECTED] Subject: Rpm start up

AW: AW: HELP! Configuring HTTP-headers per mime type?

2002-09-10 Thread Ralph Einfeldt
To do that for other files you can implement a servlet filter that sets the header with the given code. -Ursprüngliche Nachricht- Von: Gili [mailto:[EMAIL PROTECTED]] Gesendet: Dienstag, 10. September 2002 14:05 An: Power-Netz (Schwarz); Tomcat Users List Betreff: Re: AW: HELP!

RE: Difference between ajp13 and ajp14

2002-09-10 Thread Turner, John
For Apache 1.3.26, I don't think you have a choice. As far as I know, you are limited to mod_jk, which is AJP13. Anyone who has successfully built the 4.1.10 connectors (JK and JK2) for Apache 1.3.26 and 2.0.40, please let me know. I've already spent several hours trying to do it, without

RE: Tomcat 3.2.4 slow with Jdk1.4 and SSL

2002-09-10 Thread Andreas Mohrig
I'm using Tomcat 4.0.4 with Jdk1.4 (on both Linux-Server and Windows NT client) and worrying about a quite similar problem. The server is extremely fast (I'd say the answer takes some milliseconds) when I access it with a browser (e.g. MS IE 5.0), but it takes about 20 seconds (!) when I try a

RE: Url Mapping with mod_jk

2002-09-10 Thread Turner, John
This is a working workers.properties file, RH 7.2, Tomcat 4.0.4/4.1.10, Apache 1.3.26/2.0.40 using mod_jk 4.0.4 (NOT 4.1.10): # Setup for apache system # workers.tomcat_home=/usr/local/jakarta-tomcat-4.0.4 workers.java_home=/usr/java/j2sdk1.4.0_01 ps=/ worker.list=ajp12, ajp13 # Definition for

RE: Performance Tuning

2002-09-10 Thread Shapira, Yoav
Hi, I think the first tip of advice should always be: tune your app first. Profile it, design for performance from the ground up, make it scream. This will take most of your performance tuning time and will net you most of the wins. Then you get around to tuning the server. Ideally, you

Re: Configuring Tomcat 4.0

2002-09-10 Thread Mauro Daniel Ardolino
Well. I think is better to tell you how I did to make a servlet work. First of all I created a folder under webapps (e.g. miFirstServlet). After that I put a simple html file called index.html inside this folder. Example of simple index.html: html headtitleMy first servlet/title/head body

creating scripting variables with TagExtraInfo

2002-09-10 Thread Flavio Tordini
hi all, i have a problem with tag libraries tomcat 4.1.10. i'm trying to define a scripting variable using TagExtraInfo, but jasper2 cannot compile my jsp and gives this error: --- org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: 4 in the jsp file:

Re: ServletException atorg.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)

2002-09-10 Thread Milt Epstein
On Tue, 10 Sep 2002, Oskar Bartenstein wrote: Hello, please help with a bug (?) or mistake (?) What is a likely reason for javax.servlet.ServletException: Servlet execution threw an exception at

Re: creating scripting variables with TagExtraInfo

2002-09-10 Thread Giovanni Cuccu
At 14:54 10/09/2002 +0200, you wrote: try out.print( ciao ); Giovanni hi all, i have a problem with tag libraries tomcat 4.1.10. i'm trying to define a scripting variable using TagExtraInfo, but jasper2 cannot compile my jsp and gives this error: --- org.apache.jasper.JasperException: Unable to

RE: Debugging class loading

2002-09-10 Thread Michael Petres
We have a shrink-wrapped product. Many of our support calls have to deal with classloader issues, to be more specific, as our application is deployed in different environments, the support engineers are spending lots of time ensuring that the right classes are loaded from the right places... We

Re: Difference between ajp13 and ajp14

2002-09-10 Thread Marc
Ok, thank you! I'll install the JK connector. Bye! Marc Turner, John wrote: For Apache 1.3.26, I don't think you have a choice. As far as I know, you are limited to mod_jk, which is AJP13. Anyone who has successfully built the 4.1.10 connectors (JK and JK2) for Apache 1.3.26 and 2.0.40,

Re: Suspected Content-Length bug in SSL adapter, Tomcat 4.0.4.

2002-09-10 Thread tek1
not sure if the problems are connected, but i ran into a bug with filters not setting the content-length of the response correctly. please check the archives for my post entitled RE: anyone using filter to set content length of response?. it would require digging into the tomcat code, but i

problems with tomcat4 and jrun2.3

2002-09-10 Thread Christian Bucholdt
Hi, I have a big performance problem with tomcat 4.0.1 on a winNT4 machine (256 MB RAM). After a short time after start and working with the application tomcat has required 100% CPU and more and more RAM. At the same machine runs Jrun 2.3. with a other application. Know anybody this problem? Is

Performance of Web Application

2002-09-10 Thread Madhav Reddy
Hi, Can anybody explain me yahoo web application in and out, like, database design, database server details, servlet engine, server details, the amount of data it handles. How it manages the requests and serves the requests so fast. I guess there will be millions of users for yahoo, and

Re: AW: AW: HELP! Configuring HTTP-headers per mime type?

2002-09-10 Thread Gili
On Tue, 10 Sep 2002 14:10:14 +0200, Ralph Einfeldt wrote: To do that for other files you can implement a servlet filter that sets the header with the given code. And how do you tell Tomcat to tell that filter for that mime type? Gili -- To unsubscribe, e-mail: mailto:[EMAIL

[OT] Re: Performance of Web Application

2002-09-10 Thread Tim Funk
This is way off topic. Do a search on Google (or better yet yahoo) to get the answer. Much of yahoo is written in LISP (I think). There are some discussions on ./ [slashdot.org] about this. Madhav Reddy wrote: Hi, Can anybody explain me yahoo web application in and out, like, database

Re: Performance of Web Application

2002-09-10 Thread Jhair Tocancipa Triana
- Can anybody explain me yahoo web application in and out, like, - database design, database server details, servlet engine, - server details, the amount of data it handles. How it manages - the requests and serves the requests so fast. Clustering? In the case of google,

RE: Sessions problem with TC4 on Win XP Home when browsing from localhost

2002-09-10 Thread Jeff Corliss
Hmmm ... not sure that I really specified the host name per se. Also, one thing I forgot to mention... the app works fine for localhost access running on a Win2k machine. Could this be some XP specific problem? --- [EMAIL PROTECTED] wrote: The session are managed using the cookies. The

Performance Comparison of Oracle and commons-dbcp

2002-09-10 Thread Shapira, Yoav
Hi, Has anyone conducted a performance comparison of connection pooling on tc 4.x, comparing Oracle PooledConnections with commons-dbcp? I'd be interested in the details. Thanks, Yoav Shapira Millennium ChemInformatics This e-mail, including any attachments, is a confidential business

HTTP Status 503 - Server default is currently unavailable

2002-09-10 Thread Mark Hansen
I'm trying to deploy Apache Tomcat/4.0.3. It starts up, but when I try to access index.html, I get the error message HTTP Status 503 - Server default is currently unavailable. Can anyone tell me what might be causing this? Thanks, Mark -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED]

How to get logon name in Real Authentication

2002-09-10 Thread Howard Miller
Hi, I know I'm going to be given hell here, but can find no information on this I have JDBC Realm authentication using Form-Based type login. All works fine. Now, how can I get the login name that the user has used. How do I tell in a bean or whatever (well, I'm using STRUTS), who the user

RE: Debugging class loading

2002-09-10 Thread Cox, Charlie
What I was getting at is that the WebApp Classloader(or your custom cl) does not load all the classes used by tomcat. Therefore, you will only be able to create your dump for the classes loaded within your webapp, not from /common/lib or /tomcat/lib or any of Tomcat's interal classes. You will

RE: HTTP Status 503 - Server default is currently unavailable

2002-09-10 Thread Howard Miller
For a start, have you checked in $CATALINA_HOME/logs? Check the contents of porbably catalina.out, but there could be a localhost-date.txt. Anything strange? HM -Original Message- From: Mark Hansen [mailto:[EMAIL PROTECTED]] Sent: 10 September 2002 14:37 To: Tomcat Users List Subject:

RE: PLEASE: Setting Virtual Hosts ClassPaths with Tomcat 3.3

2002-09-10 Thread Larry Isaacs
I would recommend going to: http://java.sun.com/products/servlet/download.html and downloading the servlet specifications. Version 2.2 is the one that applies to Tomcat 3.3.x. See section 9.4 for info about the web application directory structure. You can also go to:

Re: problems with tomcat4 and jrun2.3

2002-09-10 Thread tek1
does the 100% utilization when either jrun or tc run by themselves? try upgrading tc to 4.0.4 to see if there's a difference. may want to also try tc4.1.10. what version of jdk131 are you using? 131_04? if not, try that also. for problems like this, first try to isolate the problem (i.e.

seeking good 3.3 config for shared host running Apache 1.3.9 on Debian

2002-09-10 Thread Bruce R. Lewis
I'm trying to switch to a new web hosting provider (www.synecdoche.com), and they just installed Tomcat 3.3 on Debian. They're running Apache 1.3.9. They don't have experience with Tomcat, and are looking to me for suggestions on how to configure it. I've actually only used Tomcat standalone

Unable to use JNDI DataSource

2002-09-10 Thread David Mold
I have now tried this on three different machines with the exact same results: I am using the admin tool to create a JNDI data source for a MySQL database. When I try to use the datasource in a servlet, I get the error: Cannot load JDBC driver class 'null' I am able to retrieve a

RE: How to get logon name in Real Authentication

2002-09-10 Thread Howard Miller
Thanks, Without wishing to sound ungratefull, I have spent ages wading through the docs, managed to miss this! That's the trouble with Java, all these huge APIs to struggle through. your help is appreciated! HM -Original Message- From: Andreas Mohrig [mailto:[EMAIL PROTECTED]] Sent:

classloader

2002-09-10 Thread list
Hi! (using tomcat 3.3.1) I use a package in 1.jar, visible to all tomcat-contexts - so I put it into $TOMCAT_HOME/lib/apps the servlet creates an instance of a class a (that is included in 1.jar) a reads 'getServletContext().getInitParameter(config-file)' from this config-file a reads

Connector collection update

2002-09-10 Thread Turner, John
Hello - I've updated my collection of mod_jk connector binaries. Thanks to Milt Epstein, Detlev Beutner, and Jorge Carrizo, there are now links to mod_jk binaries for RH 7.2, Solaris 8, AIX 4.3.3, and Windows, for various versions of Apache and Tomcat. http://www.johnturner.com/howto

AW: AW: AW: HELP! Configuring HTTP-headers per mime type?

2002-09-10 Thread Ralph Einfeldt
The filter would be more general. Define a filter that is triggered for every request. In the filter set the header depending on the kind of object that is requested. (The simple solution: map extensions to mime types. What's good for an operation system or for tomcat should be enough for you

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Anthony Milbourne
Hi Jbuilder 6 Pro Ent come with Tomcat 4 as part of the product (well a closely integrated add-on). Juilder 7 doesn't have a Pro version (because Borland wanted to force everyone to upgrade to the rather expensive Enterprise edition), but the Ent version has Tomcat too. If you don't have one

Re: AW: AW: AW: HELP! Configuring HTTP-headers per mime type?

2002-09-10 Thread Gili
On Tue, 10 Sep 2002 16:27:37 +0200, Ralph Einfeldt wrote: The filter would be more general. Define a filter that is triggered for every request. In the filter set the header depending on the kind of object that is requested. (The simple solution: map extensions to mime types. What's good for

Digested Passwords and the server/lib/catalina.jar file

2002-09-10 Thread Kevin HaleBoyes
I am using JDBC Realms in my application with digested passwords. Specifically the MD5 digest. I need to programatically digest passwords entered into the application for storage in the users table (when a new user is created or password changed). In the Digested Passwords section of the Realm

Virtual Host Auto Config

2002-09-10 Thread Gerstel, Rachel
Hi, Sorry if this question has already been asked, but I have searched and not yet found the answer I need. I have an apache server 1.3.26 that I wish to integrate with tomcat and have name-based virtual hosts on. I think I am getting confused between the server itself and the virtual hosts. I

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Michael Petres
Ok... I have Jbuilder6 but I don't want to use the Tomcat engine that came with Jbuilder. How would I manually integrate another version of Tomcat? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235

RE: classloader

2002-09-10 Thread Cox, Charlie
while I am not completely familiar with classloading in 3.3, you need to have your classes in the same directory(or higher in the classloading heirarchy) so that they are loaded by the same classloader. Therefore 2.jar must go into /lib/apps. There should be a classloader document with 3.3 that

Re: Running tomcat 4.x using JBuilder

2002-09-10 Thread Josiel S. Oliveira
Ok... I have Jbuilder6 but I don't want to use the Tomcat engine that came with Jbuilder. How would I manually integrate another version of Tomcat? Sorry, you can´t. The Tomcat embedded in JBuilder are slightly modified versions from the standalone. I upgraded to JBuilder7 that ships with a

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Vincent . Gaboriau
I see 2 solutions: - Copy your Tomcat's distribution in place of jakarta-tomcat-4.0.1 delivered with JBuilder 6. But it's not proper. - You write an OpenTool for JBuilder 6 in order to add another Tomcat. I've already made that to specify the Tomcat's config file to use in replacement of the

Re: Digested Passwords and the server/lib/catalina.jar file

2002-09-10 Thread da_alchemist
It's error prone either way-- .../common/lib or .../WEB-INF/lib-- upon upgrade. Without understanding the full scope of your project I would tend to lean towards the first solution (.../WEB-INF/lib) unless the .jar file needs to be available to all web applications. The common directory

RE: Virtual Host Auto Config

2002-09-10 Thread Anthony Milbourne
Hi I am trying to get virtual hosts working too and am having problems. I have however got further than you (I think) thanks to help from people in this group (notably John Turner). If you look back in the archives (the last few weeks) for a thread called URL mapping with mod_jk, you will

RE: Virtual Host Auto Config

2002-09-10 Thread Turner, John
Hi - That Apache warning message means that you have multiple Apache Virtual Hosts assigned to the same IP address. The correct way to do this in Apache's configuration is to use the NameVirtualHost directive instead of VirtualHost directive. That's all that warning is saying. Each

Re: classloader

2002-09-10 Thread Michael Reutter
while I am not completely familiar with classloading in 3.3, you need to have your classes in the same directory(or higher in the classloading heirarchy) so that they are loaded by the same classloader. Therefore 2.jar must go into /lib/apps. There should be a classloader document with 3.3

RE: server.xml and configuring connection pools

2002-09-10 Thread Vincent . Gaboriau
How do you test your configuration? You test with more than 20 users? Your configuration is correct according to your explication, but does it can really work? If you test with a soft as LoadRunner, I think you have a simulation scenario. What do the first 20 users after their requests are

Re: Unable to use JNDI DataSource

2002-09-10 Thread Rosdi bin Kasim
Declaring your Datasource in GlobalNamingResources doesn't always work. What you can do is, either declare the DataSource within your apps Context itself, like this: - Option A - Declare the DataSource within your apps Context -- Context

make HANGS execution !!!

2002-09-10 Thread Manoj Kithany
Hi Experts, I am trying to build mod_jk for IBM AIX System - again ;=( . I am using Apache 2.0.39 with Tomcat 4.0.4 and JBOSS 3.0.3 on IBM AIX 5.1 System. I executed ./buildconf.sh and ./configure --with-apxs=/usr/local/apache2/bin/apxs without any problems. BUT, when I execute make, my

How can I send respond incrementally in a Servlet

2002-09-10 Thread Sam Cheung
Hi, I would like to send response back to user during the execution of the doGet() method, not upon completion of the excution of the doGet() method. I try calling the flushBuffer() of the response and the flush() of the print writer of the response but it does not work, could someone please

Re: How can I send respond incrementally in a Servlet

2002-09-10 Thread Rosdi bin Kasim
What is exactly the 'response' you are sending? If it is a table, then the browser will only display it once the whole table is completed (until it received /table). Regards, Rosdi. - Original Message - From: Sam Cheung [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September

RE: server.xml and configuring connection pools

2002-09-10 Thread Donie Kelly
To simulate this I have set the max and min processors to 5 and used 7 Internet Explorer instances to connect. My servlet has a 120 second delay so that causes the connection to hold. I can start 5 and hold the connection open. That's what I want. However, when I connect the sixth one, Internet

RE: How can I send respond incrementally in a Servlet

2002-09-10 Thread Turner, John
My guess is it is some sort of progress bar/indicator. John -Original Message- From: Rosdi bin Kasim [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 11:47 AM To: Tomcat Users List Subject: Re: How can I send respond incrementally in a Servlet What is exactly

Re: Tomcat and SSL

2002-09-10 Thread David Mossakowski
John, Do you mean an actual instance that you can stop and start separately and which has its ports completely different from other instances? If so where do they get their requests from? One Apache server with multiple virtual hosts? Or do you have multiple Apache servers as well. Thanks,

RE: How can I send respond incrementally in a Servlet

2002-09-10 Thread Donie Kelly
I think he means that nothing is sent back to the browser. I have noticed this as well and I could not get a solution. If you close the connection it's sent back and the servlet can continue to run but that may not be desirable Donie -Original Message- From: Rosdi bin Kasim

Re: How can I send respond incrementally in a Servlet

2002-09-10 Thread Sam Cheung
Donie, Yes, this is what I want and I don't want to close the socket since I have more response to send. Sam -Original Message- From: Donie Kelly [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 10:48 AM To: 'Tomcat Users List' Subject: RE: How can I send respond

Re: How can I send respond incrementally in a Servlet

2002-09-10 Thread Tim Funk
How about setting your buffer size smaller. It will force flushing more often. response.setBufferSize(int size) or %@ page buffer=8kb % Sam Cheung wrote: Hi, I would like to send response back to user during the execution of the doGet() method, not upon completion of the excution of

RE: classloader

2002-09-10 Thread Cox, Charlie
my problem: I have many jar-files only needed by *one* context, but I have to put all that jar-files into the same directory (/lib/apps) - that's not very easy to maintain!!! you should be able to put them all in /WEB-INF/lib and they should be ok. You can not have jars in /lib/apps

RE: Tomcat and SSL

2002-09-10 Thread Turner, John
Yes, the Tomcats are all on separate connector ports, and each has their own server.xml, their own classpath, their own work area, and their own application space. There's only one Apache, it uses name-based virtual hosts (one IP address) and mod_jserv to direct the appropriate requests to

RE: Running tomcat 4.x using JBuilder

2002-09-10 Thread Michael Petres
Vincent, If you have an OpenTool already, can I have it? Michael Petres ~ InnovObjX Corp. Web: www.innovobjx.com Tel: 905-729-2235 x3 Fax: 905-729-2235 ~ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: Digested Passwords and the server/lib/catalina.jar file

2002-09-10 Thread Kevin HaleBoyes
From: [EMAIL PROTECTED] Moving a Tomcat server .jar file does not seem like a comfortable option-- it is like moving system libraries the OS depends on to a shareable area because you do not like them where they currently are located-- but if it works and you feel comfortable with it then use

RE: Debugging class loading

2002-09-10 Thread Michael Petres
On the first count... how doe I configure the context to load my own webapp class loader? Is there some place I can see an example? Re class loading hierarchy: It is my understanding that starting with the System class loader, Tomcat ignores the class path and supplies its own implementations of

French characters displaying using Tomcat 3.3

2002-09-10 Thread KONHAWA
Hi to all, I'm using Tomcat 3.3 for a web application. I deployed it on Win 2000 and on Linux Mandrake 8.0 and I didn't faced no problem. But when I deployed it on Debian Linux, accent characters and other special french characters did not apear like they shoud. Is it possible to configure Tomcat

RE: Tomcat and SSL

2002-09-10 Thread Michael Petres
John, How did you achieve this configuration. I am tasked with putting something like this together myself and I haven't got the first clue how to start... I have been running single instances of Tomcat successfully though... Michael Petres ~ InnovObjX Corp. Web:

RE: Debugging class loading

2002-09-10 Thread Cox, Charlie
-Original Message- From: Michael Petres [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 12:50 PM To: Tomcat Users List Subject: RE: Debugging class loading On the first count... how doe I configure the context to load my own webapp class loader? Is there some

RE: Tomcat 3.2.4 slow with Jdk1.4 and SSL

2002-09-10 Thread Wolfgang Stein
I realize you are also a German resident and remember the download of JSSE were differing for non-US citizens. I assume we are victims of a hidden key escrow or Echelon's information gathering efforts :-) But, all joking(?) aside: This seems to be a known jdk1.4 issue. There are some related

  1   2   >