RE: newbie question urgent plz

2002-06-11 Thread Vikramjit Singh
Hi, thanks for your help markus, ashraf and sankar. I have deployed my CorpMIS context. I went through the docs and then slowly started fresh. one very strange problem i found was this, earlier i was writing my web.xml file like this CreateCompanyMstr com.gtl.corpmis.admin.adminser

Re: Re[3]: Roles in JNDIRealms

2002-06-11 Thread Cristina Perez Sanchez
Hi Jon, thanks for your help. I´ve tested group and groupOfUniqueNames objectclass and JNDIRealm works properly. Thanks again, Cristina --- Jonathan Eric Miller <[EMAIL PROTECTED]> wrote: > I think you can use whatever objectClass you want. > The only filter that it > uses for finding roles is

AW: AW: problem with connections not closing...

2002-06-11 Thread Ralph Einfeldt
A JDBC Realm is just a tool to authenticate and authorize an user against a database. So it has nothing to do with your problem. As said earlier finalize() won't help you, as the time when a servlet instance is destroyed is undetermined. It might never be destroyed until tomcat is shut down. How

BARCODE

2002-06-11 Thread Lee Chin Khiong
DOES ANYBODY KNOWS HOW TO GENERATE BARCODE USING JAVA OR JSP ?

java help

2002-06-11 Thread Sudhir Kumar
hi, i hjave a situation where in which i invoke help files through a click of a button. i am using a helpbreeze to develop help files. My problem is when the help is open i need to work on my application. so i made it non modal. but if i click on help button again it is opening another w

Re: How well does tomcat 4.0.03 work as a HTTP server?

2002-06-11 Thread Trevor Nielsen
Tomcat works fine as a regular HTTP server, but does not server up pages as well as a dedicated HTTP server like Apache. It also does not allow for the fine-tuning and advanced features of a dedicated HTTP server (this is the reason that many people use Tomcat to serve jsps/servlets from behind

AW: HELP! IIS and Tomcat Security

2002-06-11 Thread Friedli Beat
I guess this is only a question of configuration. I haven't found the solution either - Something with the security manager Sombody how has configured this the right way should write a "how to" to be added to the tomcat docs. mit freundlichen Grussen Galexis AG Beat Friedli . SW-Entwicklung

AW: Locale Problem Using IIS 5.0 and isapi_redirector

2002-06-11 Thread Friedli Beat
Yes, I have the same problem! It didn't occour in Tomcat 3.x mit freundlichen Grüssen Galexis AG Beat Friedli · SW-Entwicklung (DDIS/ASW) Grubenstrasse 11 · CH-3322 Schoenbuehl tel: +41 (0)31 858 72 32 · fax: +41 (0)31 858 78 81 > -Ursprüngliche Nachricht- > Von: Tony Dawber [mailt

How well does tomcat 4.0.03 work as a HTTP server?

2002-06-11 Thread S W
HI Everyone, I'm curious has anyone used Tomcat as a regular http server, and would you recommend it? The reason I'm asking this quesion is because I'm not sure if it would be better to use IIS to redirect the Java pages to the Tomcat server or if it would be better to serve the htm pages straig

tomcat not starting

2002-06-11 Thread rainkid
Hello, I am having trouble starting tomcat 4. Using the following packages: tomcat 4.0.3 j2sdk 1.4.0 red hat 7.2 + updates i have JAVA_HOME set correctly. tomcat and j2sdk are installed from rpm. java programs compile and run fine. when issuing a /etc/init.d/tomcat4 start i an 'ok'. sys log re

Tomcat load estimates/load balancing question

2002-06-11 Thread Lucy Marney
Hi all, I have a quick question regarding the estimated load of Tomcat 4.0 - running behind Apache 1.3.22, using the WARP connector, and both on the same machine (Linux). I have read alot about the inability of mod_webapp to do serious load balancing - I've gathered that production-style scal

Re: Listener Objects

2002-06-11 Thread Ushakov, Sergey N
I have just recently merged in the issue... My results (not necessarily perfect :) are: - all listener objects are to be declared in web.xml; - it seems they are instantiated automatically along with the web app; - it may be a good idea to implement a listener as a special class, independent of a

Choosing between mod_jk or mod_webapp?

2002-06-11 Thread Ryan McDonough
I'm trying to help a client of mine choose between using mod_webapp or mod_jk as their link between Tomcat and Apache. I have been successful in getting both connectors to work, the question is which one is better? My gut says mod_webapp is the way to go, but I haven't spent much time with it to m

Re: IIS mailing list (off-topic)

2002-06-11 Thread Joel Rees
> Sorry with everybody about this off-topic question but I need absolutely > to find a mailing-list about Internet Information Server. I tried to search > on the Web but unsuccessfully. In case you're still looking, google newsgroup archives at http://groups.google.com/groups?hl=ja&lr=&group=mic

Newbie Question: Apache+Tomcat configuration

2002-06-11 Thread Stonix
Hi, I am absolutely newbie on Tomcat. I have a Linux RH 7.1 box and a Apache 1.3.19 running on it. I just installed Tomcat 4.0.3. Seems like it has been successfully installed because if test it on 8080 port all the java examples running perfect. Now, what have to be done for the rest? I guess

RE: Auto Start Tomcat

2002-06-11 Thread Scott Seidl
I have made the following entries in my '/etc/rc.local' file/script. This file/script is read on boot and will execute the commands listed. JAVA_HOME='/usr/java/j2sdk1.4.0/' export JAVA_HOME echo "Starting Tomcat" sh /usr/src/jakarta-tomcat-4.0.3-src/dist/bin/catalina.sh start -security sleep 5

Re: System.out.println

2002-06-11 Thread August Detlefsen
System.out.println() goes to $CATALINA_HOME/logs/catalina.out -August --- Markus Kirsten <[EMAIL PROTECTED]> wrote: > What's the most easy way to print out debug messages in Tomcat? The > ability to use System.out.println() seems to have gone in version 4. > Is > there any easy way of loggin

Re: Re[3]: Roles in JNDIRealms

2002-06-11 Thread Jonathan Eric Miller
I think you can use whatever objectClass you want. The only filter that it uses for finding roles is the string that you set roleSearch to. Jon - Original Message - From: "Cristina Perez Sanchez" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, June 11, 2002

System.out.println

2002-06-11 Thread Markus Kirsten
What's the most easy way to print out debug messages in Tomcat? The ability to use System.out.println() seems to have gone in version 4. Is there any easy way of logging my debug messages to a log file (which is just used for this)? Markus -- To unsubscribe, e-mail:

Re: Listener Objects

2002-06-11 Thread Joe Tomcat
On Tuesday 11 June 2002 12:41, you wrote: > If so, i could split the Class and encapsulate the session stuff I need to > do in another Object. But could you suggest a method to communicate between > my servlet and my sessionListener? Couldn't you communicate through the ServletContext? As for in

Re: auth-constraint question

2002-06-11 Thread Mark Larson
Ok, if anyone is following this thread... I found a freeware "hard links for windows" program and placed hard links for my site in a separate webapp dedicated to webdav only. So, multiple distinguishable authentications for a single filesystem works. >From: "Mark Larson" <[EMAIL PROTECTED]> >Re

Re: Apache 1.3.23 and Tomcat 4.1.3 integration problem

2002-06-11 Thread PJ Crump
oops.. I mean am running 4.0.3 not 4.1.3 - Original Message - From: "Bill Kurani" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Tuesday, June 11, 2002 12:26 PM Subject: Re: Apache 1.3.23 and Tomcat 4.1.3 integration problem > Dear PJ > > Down rev to 4.0.3 and prob

Listener Objects

2002-06-11 Thread Ralf Mitschke
Hi! I would like to know how Listener Objects are instantiated. And here's my reason :-) My Class extends HttpServlet and I tried to deal with SessionEvents in the same Class. So I implemented HttpSessionListener. But when the sessionCreated/sessionDestroyed methods get the Event any changes mad

Re: Tomcat in chroot jail

2002-06-11 Thread Ralph Goers
I solved my own problem. I was originally trying to use the rpm on linux. When I switched to the "normal" binary distribution I had it working with no trouble. Ralph - Original Message - From: Ralph Goers To: [EMAIL PROTECTED] Sent: Tuesday, June 11, 2002 10:34 AM Subject:

Re: SOLVED: jdk 1.4 and Oracle drivers

2002-06-11 Thread Peter Mutsaers
>> "Jacob" == Jacob Kjome <[EMAIL PROTECTED]> writes: Jacob> Well, I have been using the classes12.jar in Jacob> TOMCAT_HOME/common/lib. I've used it with both the JNDI Jacob> javax.sql.DataSource deal provided by the Jakarta-Commons Jacob> project and another connection pooler.

RE: Plz help!! Consulted archives!! RE: JSP examples error but serveltsexamples running

2002-06-11 Thread rsequeira
Probably the web application that holds TestServlet hasn't been deployed or you are trying to access TestServlet via an incorrect URL. Unless you send in more details it difficult to resolve your problem. RS "Lynne Gurney" <[EMAIL PROTECTED]> on 06/11/2002 04:33:15 PM Please respond to "To

Re: auth-constraint question

2002-06-11 Thread Mark Larson
Thanks for the response. I would like to have both roles go as far down the tree as possible. But, from a browser, have Root role authentication and their inherent read-only permissions, and from a dav client: Webdav role authentication and full access to the file system. >From: "Terrence Szet

RE: Plz help!! Consulted archives!! RE: JSP examples error but servelts examples running

2002-06-11 Thread Lynne Gurney
or I get type Status report message /TestServlet description The requested resource (/TestServlet) is not available. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 11 June 2002 22:22 To: Tomcat Users List Subject: RE: Plz help!! Consulted archives!! RE: JSP

Updated. Generic DataSource Resource Factory Available. JDBC Data Sources.

2002-06-11 Thread anthony.dodd
I've added a small piece to the readme.txt file regardin the is of the oracle.jdbc.pool.OracleConnectionCacheImpl to create as a Pooled connection datasource.   Regards Tony CONTENTS 1. INTRODUCTION 2. CREATING AN ORACLE DATASOURCE 3. CREATING A SQL SERVER DATASOURCE USING DATADIRECT

Updated. Generic DataSource Resource Factory Available. JDBC Data Sources.

2002-06-11 Thread anthony.dodd
I've added a small piece to the readme.txt file regardin the is of the oracle.jdbc.pool.OracleConnectionCacheImpl to create as a Pooled connection datasource.   Regards Tony CONTENTS 1. INTRODUCTION 2. CREATING AN ORACLE DATASOURCE 3. CREATING A SQL SERVER DATASOURCE USING DATADIRECT

Updated. Generic DataSource Resource Factory Available. JDBC Data Sources.

2002-06-11 Thread anthony.dodd
I've added a small piece to the readme.txt file regardin the is of the oracle.jdbc.pool.OracleConnectionCacheImpl to create as a Pooled connection datasource.   Regards Tony CONTENTS 1. INTRODUCTION 2. CREATING AN ORACLE DATASOURCE 3. CREATING A SQL SERVER DATASOURCE USING DATADIRECT

RE: Plz help!! Consulted archives!! RE: JSP examples error but serveltsexamples running

2002-06-11 Thread rsequeira
Since you can run the examples servlets, there's something wrong with the configuration (either in server.xml or web.xml). Apparently Tomcat cannot find TestServlet. If you can elaborate on your configuration, directory structure - it might help. RS "Lynne Gurney" <[EMAIL PROTECTED]> on 06/

Re: JNDI lookup connection datasource microsoft sql server

2002-06-11 Thread anthony.dodd
I've revised the Connection Pooling example for Oracle to use the OracleConnectionCacheImpl class. I've attached an updated readme file. Regards Tony - Original Message - From: "John McAuley" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; "anthony.dodd" <[EMAIL PROTECT

Problem with Postgresql jdbc connection

2002-06-11 Thread Moi spécial
Hello, I am trying to use a jdbc connection to Postgresql and I have some problems with the security manager (?). Every access to the database gives me an abort of the transaction with a stack trace : --

RE: Plz help!! Consulted archives!! RE: JSP examples error but servelts examples running

2002-06-11 Thread Lynne Gurney
I decided to reinstall tomcat and the example servlets are working now. The problem with the first error was indeed something wrong with one of my test applications which I have also resolved. However, I now cannot run any servlets in any of my test apps. So it goes on . . . I have fiddled with th

RE: getting exception when trying to close connection

2002-06-11 Thread Zachary Kuhn
OK well, a couple answers first. The socket that is being referred to is the underlying (usually tcp/ip) socket that your driver uses to connect to the database. A connection is an abstraction from what the implementation socket is. A couple things could be happening with your oracle driver. First

Re: auth-constraint question

2002-06-11 Thread Terrence Szeto
One thing you can do is use filters to further restrict users. So write a filter, which checks for user roles, and foward the ones you don't want to go further "down" your directory. Don't forget to map the filter in the web.xml file so tomcat knows where to restrict. hope that helps Terr

RE: Connecting Apache 2 with Tomcat 4.x

2002-06-11 Thread Turner, John
Thanks. I believe the command line I used to build Apache was: "./configure --enable-so --enable-ssl --with-apxs" And I believe the command line I used to build mod_webapp (after building and installing APR) was: "./configure --with-apxs=/your/path/to/apache2/bin/apxs --with-tomcat=/your/path

RE: CATALINA_BASE?

2002-06-11 Thread Adam Pfeiffer
Jiann-Ming Su, I am confused on your question. You seem to contradict yourself. Here is what I see as a contradiction: 1. The RUNNING.txt wasn't exactly clear on this, but if I want to run multiple instances of tomcat, do I simply set the CATALINA_BASE variable to as many base directories as

Re: server.xml dtd

2002-06-11 Thread Craig R. McClanahan
On Tue, 11 Jun 2002, Ricky Leung wrote: > Date: Tue, 11 Jun 2002 13:27:27 -0400 > From: Ricky Leung <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: Tomcat Users List <[EMAIL PROTECTED]> > Subject: server.xml dtd > > I can't find the dtd anywhere and the documentation

RE: CATALINA_BASE?

2002-06-11 Thread Turner, John
Hi - I don't think that will work. As far as I know, you need to run a separate Tomcat process for each CATALINA_BASE, with the appropriate environment. The easiest thing to do would be to setup some small shell scripts to start/stop each instance, and in each script change CATALINA_BASE accord

RE: Connecting Apache 2 with Tomcat 4.x

2002-06-11 Thread Adam Pfeiffer
Hi John, This is a very great doc and a very good start. I have one question, what command line parameters did you use to compile apache to enable DSO support, SSL, and apxs? Thanks much, Adam --- "Turner, John" <[EMAIL PROTECTED]> wrote: > > I just went through the same process (only using

RE: Connecting Apache 2 with Tomcat 4.x

2002-06-11 Thread Turner, John
I just went through the same process (only using MS SQL Server 2000 instead of Oracle). It took me over a week to figure out what was going on. I'm all for the open source movement, but the lack of documentation has got to be the most frustrating thing I've ever dealt with. Here's what I did,

LDAP Authentication with Tomcat 4.1.3

2002-06-11 Thread Josh Fenlason
I'm trying to do LDAP Authentication in Tomcat 4.1.3. I found some a couple of links that said to use LDAPRealm in Tomcat's server.xml, but I still haven't had any luck. Has anyone else been able to get this to work? Here are the two Realm elements that I've tried in server.xml. Any help would

RE: Tomcat 4, Win 2K service problem...

2002-06-11 Thread Cox, Charlie
I had the same problem, see the following bug: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=4524 try jk_nt_service from tomcat 3.x and configure it like here: http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg35196.html Charlie > -Original Message- > From: harsh

auth-constraint question

2002-06-11 Thread Mark Larson
Hello, I am running tomcat 4 stand-alone on Win NT4, using authentication with mysql (working just fine) on my entire site/webapp. I have a Webdav role and a Root role defined and need to use both of them in the same webapp. My entire site is password protected. When I connect with my webdav cli

RE: I really need help.

2002-06-11 Thread BBui
OK. I did that. Bao-Ha Dam Bui [EMAIL PROTECTED] S. Jude Medical, Inc 651.765.1018 -Original Message- From: Wagoner, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 2:31 PM To: 'Tomcat Users List' Subject: RE: I really need help. Right under the "Anonymous Access" sectio

CATALINA_BASE?

2002-06-11 Thread Jiann-Ming Su
The RUNNING.txt wasn't exactly clear on this, but if I want to run multiple instances of tomcat, do I simply set the CATALINA_BASE variable to as many base directories as I need instances? That is, if I want two instances from the same binary, would I set CATALINA_BASE as follows? export CATALIN

Re: Error response

2002-06-11 Thread John C Cartwright
Well, apparently, this is a bug that was thought to be fixed and then still shows in 4.0.3. Supposed to be resolved in 4.0.4. -- john John C Cartwright wrote: > Hello All, > > I notice that using tomcat 4.0.3, the error response is not interpreted > correctly when the request is routed throu

Re: +Tomcat+Performance??

2002-06-11 Thread Hanks Mei
Quoting peter lin <[EMAIL PROTECTED]>: > > > Hanks Mei wrote: > > > Well try this approach before deployment. Thanks for the tip peter. > > But right now I just have a small page with 4-5 tag libraries. which > just retrieve information > > from a bean(where data is hard coded) and displayed

RE: server.xml dtd

2002-06-11 Thread Eric Everman
Last I had heard there was not a DTD for server.xml. My guess is that this is because new versions of Tomcat have new features that would need to be reflected by a new version of the DTD - which would quickly lead to DTD sprawl. And probably no one wants to do it. . . And the server.xml file

RE: Tomcat Unexplained Shutdown

2002-06-11 Thread Hanks Mei
Long time back I have seen someone reporting that tomcat crashes(shutsdown) when some binary data(file) is dumped to the tomcat(3.x). Not sure whether this is the cause. Cross check this. mano Quoting Geoff Peters <[EMAIL PROTECTED]>: > Aha! So that may also be another thing to look at - I di

RE: I really need help.

2002-06-11 Thread Wagoner, Mark
Right under the "Anonymous Access" section is a "Authenticated Access" section. You want to deselect all of these. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 3:21 PM To: [EMAIL PROTECTED] Subject: RE: I really need help. How would

Re: Running Apache and Tomcat on different servers; problem with redirection

2002-06-11 Thread Hanks Mei
Hi, Some questions Are you using mod_jk cocnnectors for apache & tomcat to communicate or are you just forwarding requests from apache. If you are just forwarding(using redirects) then this is the expected behaviour You should move to mod_jk adapter. In case you are using a mod_jk adapter, have y

RE: I really need help.

2002-06-11 Thread BBui
How would I disable IIS authentication? I already allowed anonymous access. Thanks. Bao-Ha Dam Bui [EMAIL PROTECTED] S. Jude Medical, Inc 651.765.1018 -Original Message- From: Wagoner, Mark [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 1:53 PM To: 'Tomcat Users List' Subjec

Connecting Apache 2 with Tomcat 4.x

2002-06-11 Thread Edward Wilson
I would like to connect the latest version of Apache with the latest venison of Tomcat. It would be great to find a single doc that could show me how to do this quickly. I don't care about millisecond performance differentials or scalability. I am trying to upgrade a previous implementation tha

Re: mod_jk-01 VS mod_webapp w/ Tomcat 4.0.3??

2002-06-11 Thread otisg
I'm looking for answers to those same questions, so please post to the list. Thanks, Otis ___ Sign up for FREE iVillage newsletters . >From health and pregnancy to shopping and relationships, iVillage

RE: getting exception when trying to close connection

2002-06-11 Thread Christian J. Dechery
ok... there you go: public DAOFundos(Esquema esq) { if( esq==null ) { esq = esquemaDefault; } try { Class.forName( esq.getDriver() ); con = DriverManager.getConnection(esq.getUrl(), esq.getUser(), esq.getPassword()); } catch(ClassNotFoundException cnf) {

RE: sessions with IE6 - browsers opened from within a singlebrowser

2002-06-11 Thread Aleksandar Milanovic
Hi, I managed to work around my problem by defining aliases for localhost. The different domain names prevent the overwriting of cookies among browsers in a single process. Another solution could be to wrap request and response classes so that the code changes cookie names, but this is more time

Running Apache and Tomcat on different servers; problem with redirection

2002-06-11 Thread misterxyz misterxyz
I try to run apache and tomcat on two different servers; apache server is accessible from the Internet via ssl, tomcat is not directly accessible from the Internet. Request is forwarded by apache to tomcat server as http. tomcat server replaces the ip address in the response with the tomcat se

RE: +Tomcat+Performance??

2002-06-11 Thread Hanks Mei
Quoting "Trenton D. Adams" <[EMAIL PROTECTED]>: > Are you loading a bean with scope="request"? If so, this could cause a > problem. > I have not used any bean!! The java class is invoked from the tag library. > -Original Message- > From: Hanks Mei [mailto:[EMAIL PROTECTED]] > Sent: J

RE: getting exception when trying to close connection

2002-06-11 Thread Zachary Kuhn
It would be halpful to see the declaration of con, and the type of driver you are using -Original Message- From: Christian J. Dechery [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 11:41 AM To: [EMAIL PROTECTED] Subject: getting exception when trying to close connection I know

RE: I really need help.

2002-06-11 Thread Wagoner, Mark
You might check to make sure IIS is NOT trying to perform authentication. On the properties sheet for the site, allow anonymous access and disable IIS authentication. HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 2:50 PM To: [EMAIL

Mapping *.jsp to Tomcat with webapp

2002-06-11 Thread Markus Kirsten
Hi, I've seen some posts about this here. One earlier from me and now from some other users. Is it possible to make the most intuitive mapping to Tomcat - *.jsp in the Apache directory? Markus -- To unsubscribe, e-mail: For additional commands, e-mail:

I really need help.

2002-06-11 Thread BBui
Hi all, IIS & Tomcat4 using FORM-BASED authentication I am using form-based authentication. Tomcat pulls up the login page (defined in ) and then authenticate fine. However, the same link will show access-denied error if the page is requested through IIS 5.0. Can anyone suggest what coul

getting exception when trying to close connection

2002-06-11 Thread Christian J. Dechery
I know my implementation isn't the best there is... take a look at this code: protected void finalize() { try { if( con!=null && !con.isClosed() && con.getAutoCommit() ) { con.close(); } } catch(SQLException sqle) { System.out.println("["+this.getClass().getName()+"] Não foi

mod_jk-01 VS mod_webapp w/ Tomcat 4.0.3??

2002-06-11 Thread Adam Pfeiffer
Hello, I am trying to find out which is better, mod_jk-01 or mod_webapp. Here are my different criteria to base which is better on. 1. Which is more stable, and with what version of apache? 2. Which can do load balancing, and with what version of apache? 3. Which has the best performance for s

RE: tomcat-apache with webapp connector

2002-06-11 Thread Stanish, Brian
Thanks for the tips. > What I haven't tried to do yet (time, I always need more > time) is sit down > and distinguish between forcing all static content (.html, > .gif, .jpeg, etc) > to be done via Apache (though mod_webapp...since we all know > that mod_jk can > in fact do this). Well I hav

RE: server.xml dtd

2002-06-11 Thread Ricky Leung
That's exactly what I did, in fact, I looked at every single .jar file that was bundled with Tomcat and I didn't find a dtd that is for server.xml. And that's why I have to ask the list. -Original Message- From: Whitcomb, Roger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 1:52

RE: symbol pset_bind: referenced symbol not found

2002-06-11 Thread Don Fike
Your correct, it wasn't a Tomcat problem. It was a SunOS 5.8 and j2sdk1.4.0_01 problem. I found two solutions, 1. Upgrade OS 2. Downgrade Java Using JDK 1.3 instead of 1.4, Java is happy, and Tomcat is happy. thanks -Original Message- From: Mike Jackson [mailto:[EMAIL PROTECTED]] S

Re: Database locked by Tomcat

2002-06-11 Thread jeff . guttadauro
Hi, Kevin. Correction: Database locked by YOU! :) You've closed the statement but not the connection. You need a conn.close() after the commit. This shouldn't lock the database by itself, although if you keep leaving connections open, then you will eventually hit a connection max limit,

RE: server.xml dtd

2002-06-11 Thread Whitcomb, Roger
Ricky - Sorry for the misinformation -- I thought they would both be in the servlet.jar. But, in looking into it further, I don't see any DTD referenced in server.xml, nor do I see one in the servlet.jar. I see doc on the Tomcat web site about all the elements in server.xml http://jakar

Database locked by Tomcat

2002-06-11 Thread Kevin Andryc
I am Running Tomcat 4.0 on Windows 2000. I have a servlet, which calls a program that connects to a DBF database natively (not using JDBC-ODBC) and updates records in the database. The problem I am having is that Tomcat does not release the database until I restart the Tomcat service. I close the

RE: server.xml dtd

2002-06-11 Thread Ricky Leung
not the DTD for web.xml but the DTD for server.xml. -Original Message- From: Whitcomb, Roger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 1:35 PM To: Tomcat Users List Subject: RE: server.xml dtd According to one of the developers (Craig McClanahan) (posted last Friday): > W

RE: Tomcat Unexplained Shutdown

2002-06-11 Thread Geoff Peters
Aha! So that may also be another thing to look at - I didn't know that could possibly shut down Tomcat - but that exception may be a result of the user actions listed in my origianl email, in which case it would crap out - I am going to take those out right now. Thanks Larry!! Geoff

RE: server.xml dtd

2002-06-11 Thread Whitcomb, Roger
According to one of the developers (Craig McClanahan) (posted last Friday): > Where can I find the DTD for web.xml? I want to make sure I have the > elements in the correct order. > It is in the servlet specification, which you can download from: http://java.sun.com/products/servlet/download.

RE: symbol pset_bind: referenced symbol not found

2002-06-11 Thread Mike Jackson
Sounds like a jvm problem (or possibly install problem don't know), not a tomcat problem. --mikej -=- mike jackson [EMAIL PROTECTED] > -Original Message- > From: Don Fike [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 11, 2002 9:39 AM > To: [EMAIL PROTECTED] > Subject: symbol pset_

Tomcat in chroot jail

2002-06-11 Thread Ralph Goers
I've seen references in this list, the development list and various places on the internet to people running Tomcat in a chroot jail. However, I haven't seen any documentation anywhere on what is required to make this work. Can someone who is doing this please drop me a note identifying what

RE: Tomcat Unexplained Shutdown

2002-06-11 Thread Larry Isaacs
Have you verified that the System.exit()s in IfaxSend.java. are not being executed? If executed, they would to a fine job of taking down Tomcat. Cheers, Larry > -Original Message- > From: Geoff Peters [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 11, 2002 8:13 AM > To: Tomcat Users

server.xml dtd

2002-06-11 Thread Ricky Leung
I can't find the dtd anywhere and the documentation area only gives the explanation and not the order of the attributes and my guess is that the ordering is a must. Could someone point me to where the dtd where server.xml uses so I can just look it up myself? Thanks, Ricky -- To unsubscribe, e

RE: problem..plz help me out

2002-06-11 Thread puneet sachar
hi all well i 'm sending u problem since ..so many days and u all guys helpz me a lot esp. shankar , gu, jamesand all of u but ..still what i'm looking for i didn't get the answer i mailed u abt the server.xml file and the changes i made ..i want to make a new virtual host and context

Re: Apache 1.3.23 and Tomcat 4.1.3 integration problem

2002-06-11 Thread Bill Kurani
Dear PJ Down rev to 4.0.3 and problem will go away. thanks - bill - Original Message - From: "PJ Crump" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]>; "Bill Kurani" <[EMAIL PROTECTED]> Sent: Monday, June 10, 2002 11:01 PM Subject: Re: Apache 1.3.23 and Tomcat 4.1.3 int

RE: jk_nt_service.exe with Tomcat V4.0.3

2002-06-11 Thread Cox, Charlie
I am using jk_nt_service with tc 4.0.1 since I had problems with the Tomcat installer's service. you can use the jk_nt_service from the 3.x tree and you can configure it by following the directions here: http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg35196.html Charlie > -Ori

Re: j_security_check in Jboss 3.0 with Tomcat

2002-06-11 Thread Hanks Mei
Quoting Mukul Joshi <[EMAIL PROTECTED]>: > Hi > > Has anyone used j_security_check in Jboss 3.0 with > Tomcat. > > If yes, is the user authenticated with the custom > login module in JBoss. > Yes, JBoss plugs in his own realm into tomcat, so that the same security manager used in JBoss framew

RE: Please help me improve my question skills (number of tomcat a pps)

2002-06-11 Thread Whitcomb, Roger
Jeff - We are using Tomcat to provide a Web front end for a mainframe application -- so at most two or three clients at once hitting the server. The box is Win2K or WinNT 4. The application is a bunch of JSPs and a couple of Java Beans which use TCP/IP to talk to the MF. We are not quite

RE: +Tomcat+Performance??

2002-06-11 Thread Trenton D. Adams
Are you loading a bean with scope="request"? If so, this could cause a problem. -Original Message- From: Hanks Mei [mailto:[EMAIL PROTECTED]] Sent: June 11, 2002 9:17 AM To: [EMAIL PROTECTED] Subject: Re:+Tomcat+Performance?? Quoting Rick Fincher <[EMAIL PROTECTED]>: > Hi, > > Just

Re: RES: Tomcat Performance??

2002-06-11 Thread Hanks Mei
Quoting "Jose Euclides da Silva Junior - DIGR.O" <[EMAIL PROTECTED]>: > Hi. It seems very strange. you ve got very differents response time, > from 90 > up 2200 ms!!! Do you have any other kind of service running and wasting > your > cpu or io service? NOPE!!! Just tomcat is running. I have ev

Re:+Tomcat+Performance??

2002-06-11 Thread Hanks Mei
Quoting Rick Fincher <[EMAIL PROTECTED]>: > Hi, > > Just a shot in the dark because you sound pretty well versed in JSP, > but > were your pages pre-compiled? I have not yet tried with that. Will try and update ASAP. > If not, they compile the first time they are called, that adds > significant

Re: Re[2]: Roles in JNDIRealms

2002-06-11 Thread Ryan
Jon, Excellent! Thanks for the info. Ryan --- Jonathan Eric Miller <[EMAIL PROTECTED]> wrote: > Jacob, > > I'm happy to say that there is a new "bind as user" > mode in Tomcat 4.1.3 > which verifies the user password by binding as them > to the directory, rather > than querying the directory for

Re: Tomcat Performance??

2002-06-11 Thread Remy Maucherat
peter lin wrote: > > Remy Maucherat wrote: > > >>4.0.4 doesn't have the try/catch nesting patch, as it is a major change. >>None of the changes and improvements made in Jasper 2 were ported to >>Jasper 1. >> >>Remy >> > > > my apologies for giving out wrong information. I have multiple versi

Re: security-constraints

2002-06-11 Thread Craig R. McClanahan
On Tue, 11 Jun 2002, Dennis van den Berg wrote: > Date: Tue, 11 Jun 2002 13:02:46 +0200 > From: Dennis van den Berg <[EMAIL PROTECTED]> > Reply-To: Tomcat Users List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: security-constraints > > Hi all, > > According to the servlet 2.3 specs, t

symbol pset_bind: referenced symbol not found

2002-06-11 Thread Don Fike
Using binary's I have installed both; j2sdk1.4.0_01 jakarta-tomcat-4.0.3 The system architecture is; SunOS 5.8 Generic_108528-12 sun4u sparc Running startup.sh for tomcat prints out my environment variables but does not start. Running shutdown.sh generates this error; Error: failed /silk/ho

Re: Tomcat Performance??

2002-06-11 Thread peter lin
Remy Maucherat wrote: > 4.0.4 doesn't have the try/catch nesting patch, as it is a major change. > None of the changes and improvements made in Jasper 2 were ported to > Jasper 1. > > Remy > my apologies for giving out wrong information. I have multiple version running on my box and it's ge

Re: AW: problem with connections not closing...

2002-06-11 Thread Christian J. Dechery
yeah... I know what u mean, but now is kinda too late for me to change that... there are way too many JSPs accessing my beans (the ones who make calls to the DAOs)... so I want a better (simpler) solution to provide closure to all the connections? I was thinking of some type os static variable

Re: SOLVED: jdk 1.4 and Oracle drivers

2002-06-11 Thread Jacob Kjome
Hello John, Well, I have been using the classes12.jar in TOMCAT_HOME/common/lib. I've used it with both the JNDI javax.sql.DataSource deal provided by the Jakarta-Commons project and another connection pooler. I've never had a single problem. I've used JDK-1.3.x and JDK-1.4 and haven't had to r

Re: Tomcat Performance??

2002-06-11 Thread Remy Maucherat
Hanks Mei wrote: > Hi, > > I have been trying to analyze the > performance of my application(Jsp pages with tag libraries) > in tomcat4.0.3+ jdk1.4 > > But I was astonished to find that, the time taken for > the pages to be served was varying between 90ms to 2200ms. > The test jsp page i

Re: Tomcat Performance??

2002-06-11 Thread Remy Maucherat
peter lin wrote: > Are you using tomcat 4.0.3 _ jdk1.4 on Solaris? > > If so, there is a bug with sun.tools.javac.Main that hits performance > and jsp page compilation. > > In general, JSP tag performance is slower than pages with scriplets. In > the last 2 months there have been patches and cha

HELP! IIS and Tomcat Security

2002-06-11 Thread BBui
Hi, I am using IIS5 and Tomcat 4.0.2. I am using FORM-BASED authentication for my webapp. The login form is loaded when I access the secured area using localhost:8080 but I get below error when accessing the page through IIS (localhost). I am using ajp13. Should that make any difference? I

RE: Please help me improve my question skills (number of tomcata pps)

2002-06-11 Thread Knutsen Jeffrey S
YES! You've hit it! I AM asking the question about how fast the car will go. At this time, I DON'T care about the type of car or engine! My question is being analyzed far too deeply by the diligent developers on this mail list. The type of responses I was hoping for would have had developers p

Re: +Tomcat+Performance??

2002-06-11 Thread peter lin
Hanks Mei wrote: > Well try this approach before deployment. Thanks for the tip peter. > But right now I just have a small page with 4-5 tag libraries. which just retrieve >information > from a bean(where data is hard coded) and displayed in the page. when you say "hard coded" I am interpreti

  1   2   3   >