RE: DB Connection error

2012-01-09 Thread Propes, Barry L
I think some Oracle desktop installations, like Oracle XE, come with 8080 as the out-of-the-box default port. -Original Message- From: Chema [mailto:demablo...@gmail.com] Sent: Monday, January 09, 2012 12:03 PM To: Tomcat Users List Subject: Re: DB Connection error Caused by:

RE: DB Connection error

2012-01-09 Thread Propes, Barry L
Oh ok, thanks for the clarification. -Original Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Monday, January 09, 2012 1:51 PM To: Tomcat Users List Subject: Re: DB Connection error 2012/1/9 Propes, Barry L barry.l.pro...@citi.com: I think some Oracle desktop

Tomcat 6.0.26 stopped logging

2012-02-13 Thread Propes, Barry L
Hello Tomcat users and developers. I am using Tomcat 6.0.26 on a few machines - Win XP Pro on two of them, and Windows Server 2003 on the production machine. Also using jdk1.6.0_18 and was on Ora10g, now 111g. Today, Tomcat stopped logging on two of the machines, and my servlet that submits to

RE: Tomcat 6.0.26 stopped logging

2012-02-13 Thread Propes, Barry L
Application log, yes...error log. -Original Message- From: Pid [mailto:p...@pidster.com] Sent: Monday, February 13, 2012 2:37 PM To: Tomcat Users List Subject: Re: Tomcat 6.0.26 stopped logging On 13/02/2012 18:16, Propes, Barry L wrote: Hello Tomcat users and developers. I am using

RE: Tomcat 6.0.26 stopped logging

2012-02-13 Thread Propes, Barry L
, February 13, 2012 3:28 PM To: Tomcat Users List Subject: Re: Tomcat 6.0.26 stopped logging -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Barry, On 2/13/12 1:16 PM, Propes, Barry L wrote: I am using Tomcat 6.0.26 on a few machines - Win XP Pro on two of them, and Windows Server 2003

RE: Tomcat 6.0.26 stopped logging

2012-02-13 Thread Propes, Barry L
Alright, thanks, Konstantin. -Original Message- From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] Sent: Monday, February 13, 2012 3:50 PM To: Tomcat Users List Subject: Re: Tomcat 6.0.26 stopped logging 2012/2/14 Propes, Barry L barry.l.pro...@citi.com: Well this was odd. To me

RE: Tomcat-DB Connection problem

2012-02-27 Thread Propes, Barry L
I run 6.0.26 and have a very similar configuration on my container setting. I removed validationQuery=SELECT 1 FROM DUAL from mine, although I'm running connection pooling on mine. Are you attempting that at all with yours? I also have this attribute in mine.

RE: jdbc pool properties

2012-04-04 Thread Propes, Barry L
There are some databases that do go in and periodically kill off connections, aside from the Tomcat settings. In addition to testOnBorrow=true, I also had two other attributes, but not sure if Tomcat 7.0 uses them or not, as I'm on 6.0.29. testOnBorrow=true

RE: JDBC Connection over VPN

2012-05-07 Thread Propes, Barry L
Could the VPN connection be utlizing the same port Tomcat or Oracle usually does? Like something at 8080? Not sure if that's the case; or conversely, does going into VPN block those ports? -Original Message- From: Sanjeev Sharma [mailto:sanjeev.sha...@buchanan-edwards.com] Sent:

RE: tomcat and DB oracle problem - only in higher versions

2012-08-16 Thread Propes, Barry L
Are the DBCP references different in these? In either the xml files or the jar itself? -Original Message- From: cjder...@gmail.com [mailto:cjder...@gmail.com] On Behalf Of chris derham Sent: Thursday, August 16, 2012 9:59 AM To: Tomcat Users List Subject: Re: tomcat and DB oracle

RE: tomcat and DB oracle problem - only in higher versions

2012-08-17 Thread Propes, Barry L
Yes, I believe you do. I had to change to that -- odbc6 -- upon moving to JDK 1.6. Which I swore I had or needed to do when moving from Tomcat 4.1.3, but maybe I don't recall that part correctly. -Original Message- From: Busfy,Peter [mailto:peter.bu...@drei.com] Sent: Friday, August

RE: DB Connection Pool

2012-11-21 Thread Propes, Barry L
I use 6.0.29, and there was a setting I had to change to keep some connections from hanging or timing out. Although I use Tomcat's DBCP, and not OracleDataSource. I think it was this first line here. timeBetweenEvictionRunsMillis=-1 minEvictableIdleTimeMillis=28800

RE: JNDI setup oracle 11 g

2013-01-10 Thread Propes, Barry L
Tony, I have a similar standalone Java app that hits Oracle 11g. At your line with the DBURL, I have something much more concise. Where you have public static final String DBURL = jdbc:oracle:thin:@(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = abc-def-scan.corp.xyz.com)(PORT = 1521))

RE: add database resource

2013-01-10 Thread Propes, Barry L
Did you remove the contents from the server.xml? Or just paste the same contents to the META-INF/context.xml file? You might want to add the contents of the context.xml file to the thread message. -Original Message- From: Leon [mailto:leon.m...@hccnet.nl] Sent: Thursday, January 10,

RE: JNDI setup oracle 11 g

2013-01-10 Thread Propes, Barry L
I might add, Tony, one other thing I noticed in my JNDI config. I'd removed the validationQuery attribute. It might have been regarding this, but I'd writtten a comment right below it that per Konstantin, there was a memory leak regarding the Eviction Timer. Try removing that attribute

RE: add database resource

2013-01-10 Thread Propes, Barry L
Right! Like Chuck says, Leon, that is invalid. Within the context file itself (context.xml) you need the Resource attributes sandwiched between Content/Content XML tags and no other attributes in the context tag itself. -Original Message- From: Caldarale, Charles R

RE: JNDI setup oracle 11 g

2013-01-10 Thread Propes, Barry L
the JDBC/Oracle driver. I can work around the issue by not using JNDI in the web app, however I am not then able to use pooling I guess. Tony From: Propes, Barry L [via Tomcat] ml-node+s10n4992228...@n6.nabble.com To: tsidhu tsidh...@yahoo.com Sent: Thursday

RE: add database resource

2013-01-10 Thread Propes, Barry L
YES! Duh! Forgive me! LOL. Context!! -Original Message- From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: Thursday, January 10, 2013 1:35 PM To: Tomcat Users List Subject: RE: add database resource From: Propes, Barry L [mailto:barry.l.pro...@citi.com] Subject: RE

RE: JNDI setup oracle 11 g

2013-01-10 Thread Propes, Barry L
trace. I think the issue is in the get connection call it must make some call to the db, that oracle does not like when used via JNDI but works fine when used via JDBC. Tony From: Propes, Barry L [via Tomcat] ml-node+s10n499223...@n6.nabble.com

RE: JNDI setup oracle 11 g

2013-01-10 Thread Propes, Barry L
the issue is in the get connection call it must make some call to the db, that oracle does not like when used via JNDI but works fine when used via JDBC. Tony From: Propes, Barry L [via Tomcat] ml-node+s10n499223...@n6.nabble.com To: tsidhu tsidh

RE: JNDI setup oracle 11 g

2013-01-10 Thread Propes, Barry L
, instead it included the previously built classes. Once I removed the export of the Oracle Jar from Eclipse, the code worked fine. Thanks again for help. Tony From: Propes, Barry L [via Tomcat] ml-node+s10n4992246...@n6.nabble.com To: tsidhu tsidh...@yahoo.com Sent

RE: Tomcat7 - ajax and connection pool : connection closed despite the use of validationQuery and testOnBorrow

2013-04-05 Thread Propes, Barry L
I could be wrong, but is that validationQuery attribute correct? SELECT 1 ? - I have validationQuery=select 1 from dual in mine, and my doc states it has to be a valid SQL statement returning at least one row. That may not factor in at all, just noticed it. Looked maybe out of kilter.

RE: Tomcat7 - ajax and connection pool : connection closed despite the use of validationQuery and testOnBorrow

2013-04-05 Thread Propes, Barry L
closed despite the use of validationQuery and testOnBorrow 'select 1 from dual' works in Oracle DB In MySQL, select 1 2013/4/5 Propes, Barry L barry.l.pro...@citi.com I could be wrong, but is that validationQuery attribute correct? SELECT 1 ? - I have validationQuery=select 1 from dual in mine

RE: Tomcat7 - ajax and connection pool : connection closed despite the use of validationQuery and testOnBorrow

2013-04-08 Thread Propes, Barry L
SELECT statements should have FROM and possibly other clauses. MySQL may ignore the clauses. MySQL does not require FROM DUAL if no tables are referenced. I think that Oracle requires FROM word in queries ( I think ) 2013/4/5 Propes, Barry L barry.l.pro...@citi.com Ok, thanks

RE: security-role-ref doesn't work

2013-04-19 Thread Propes, Barry L
What version are you using? Mine doesn't contain this attribute pair at all... security-role-ref /security-role-ref -Original Message- From: Jakub 1983 [mailto:jjaku...@gmail.com] Sent: Thursday, April 18, 2013 8:51 PM To: Tomcat Users List Subject: security-role-ref doesn't work my

RE: Tomcat 7.0.33 manager - 403 Access Denied

2013-04-23 Thread Propes, Barry L
I'm not sure if it's applicable here, but I'll let you know my prior experience with this kind of thing on Tomcat 6.0.xx. I've had to stop the manager app, clear out the work folder and I think maybe even delete the manager.xml file out of the conf\Catalina\localhost dir because it wasn't

RE: Question on servlet determination

2013-04-23 Thread Propes, Barry L
I'm tempted to say no. Because you might be adding a / in front of your servlet mapping. In other words, changing the path of the folder slightly, with a different relative path. From: Jeffrey Janner [mailto:jeffrey.jan...@polydyne.com] Sent: Tuesday, April 23,

RE: Question on servlet determination

2013-04-23 Thread Propes, Barry L
[mailto:jeffrey.jan...@polydyne.com] Sent: Tuesday, April 23, 2013 4:46 PM To: 'Tomcat Users List' Subject: RE: Question on servlet determination -Original Message- From: Propes, Barry L [mailto:barry.l.pro...@citi.com] Sent: Tuesday, April 23, 2013 4:34 PM To: 'Tomcat Users List' Subject: RE

RE: Internal Servlet Error

2013-05-13 Thread Propes, Barry L
Yeah, it's clear from what's typed below his DB driver is way out of whack with this ancient version of Tomcat. It probably got updated along the way by network sorts while the Tomcat version stayed put. Go to current, and with current Tomcat, also get a current JDK - I imagine the one you

RE: Internal Servlet Error

2013-05-14 Thread Propes, Barry L
Barry, On 5/13/13 1:02 PM, Propes, Barry L wrote: Yeah, it's clear from what's typed below his DB driver is way out of whack with this ancient version of Tomcat. It probably got updated along the way by network sorts while the Tomcat version stayed put. No, it's probably correct

RE: Question about usernames being case insensitive

2013-08-27 Thread Propes, Barry L
-Original Message- From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Sent: Tuesday, August 27, 2013 2:22 PM To: Tomcat Users List Subject: Re: Question about usernames being case insensitive On Aug 27, 2013, at 2:52 PM, Michael Spring spr...@pitt.edu wrote: I have observed using

RE: Question about usernames being case insensitive

2013-08-27 Thread Propes, Barry L
-Original Message- From: Michael Spring [mailto:spr...@pitt.edu] Sent: Tuesday, August 27, 2013 2:35 PM To: Tomcat Users List Subject: Re: Question about usernames being case insensitive All three responses are exactly right. I checked my script and assumed -- and we know what happens

RE: Connection to ApacheDS LDAP

2013-11-04 Thread Propes, Barry L
-Original Message- From: Daniel Mikusa [mailto:dmik...@gopivotal.com] Sent: Monday, November 04, 2013 9:57 AM To: Tomcat Users List Subject: Re: Connection to ApacheDS LDAP On Nov 4, 2013, at 10:49 AM, Shai Levit redsolar_ecli...@msn.com wrote: My apologies in advance for some of the

RE: What if my database is unavailable at startup?

2013-12-13 Thread Propes, Barry L
I've never heard of these or seen these attributes either. What are they for? -Original Message- From: Jose María Zaragoza [mailto:demablo...@gmail.com] Sent: Friday, December 13, 2013 2:10 PM To: Tomcat Users List Subject: Re: What if my database is unavailable at startup? With

RE: What if my database is unavailable at startup?

2013-12-13 Thread Propes, Barry L
-Original Message- From: Dames, Kristopher J [mailto:kristopher.da...@mercy.net] Sent: Friday, December 13, 2013 1:39 PM To: Tomcat Users List Subject: RE: What if my database is unavailable at startup? Daniel, I use tomcat 6.0.32. Here is an example Resource tag: Resource

RE: What if my database is unavailable at startup?

2013-12-13 Thread Propes, Barry L
-Original Message- From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: Friday, December 13, 2013 3:59 PM To: Tomcat Users List Subject: RE: What if my database is unavailable at startup? From: Propes, Barry L [mailto:barry.l.pro...@citi.com] Subject: RE: What if my

RE: What if my database is unavailable at startup?

2013-12-16 Thread Propes, Barry L
to get it to automatically retry so I don't have to restart tomcat? I use DBCP but am willing to try some other pool. Barry, On Fri, Dec 13, 2013 at 4:59 PM, Propes, Barry L barry.l.pro...@citi.comwrote: I use DBCP and Oracle as well, and am also on Tomcat 6 - 6.0.26. Take a look at mine

RE: Modify content in META-INF/context.xml

2013-12-17 Thread Propes, Barry L
-Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Tuesday, December 17, 2013 5:27 AM To: Tomcat Users List Subject: Re: Modify content in META-INF/context.xml On 17/12/2013 11:16, Jose María Zaragoza wrote: 2013/12/17 André Warnier a...@ice-sa.com: Hi. Without

RE: What if my database is unavailable at startup?

2013-12-23 Thread Propes, Barry L
is useless. Or as the docs say:* NOTE - for a true value to have any effect, the validationQuery parameter must be set to a non-null string* Best, Alec On Mon, Dec 16, 2013 at 10:07 AM, Propes, Barry L barry.l.pro...@citi.comwrote: -Original Message- From: Howard W. Smith, Jr

Connection pooling issue on Tomcat

2014-03-28 Thread Propes, Barry L
Hi folks, I'm using Tomcat 6.0.29 for an app I've had in place for years. I run the Java app I have on a Windows 2003 server for my production region, but have local builds on both my desktop and laptop, both of which are Windows XP Pro. Yes, I do realize that the Tomcat version is old, but

RE: Connection pooling issue on Tomcat

2014-03-28 Thread Propes, Barry L
-Original Message- From: Christopher Schultz [mailto:ch...@christopherschultz.net] Sent: Friday, March 28, 2014 11:13 AM To: Tomcat Users List Subject: Re: Connection pooling issue on Tomcat -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Barry, On 3/28/14, 11:58 AM, Propes, Barry L

RE: Connection pooling issue on Tomcat

2014-03-28 Thread Propes, Barry L
-Original Message- From: Mark Shifman [mailto:mark.shif...@yale.edu] Sent: Friday, March 28, 2014 12:34 PM To: Tomcat Users List Subject: Re: Connection pooling issue on Tomcat On 03/28/2014 11:58 AM, Propes, Barry L wrote: Hi folks, I'm using Tomcat 6.0.29 for an app I've had

RE: SQLNestedException in Connection Pooling With Tomcat 7.0.39

2014-04-04 Thread Propes, Barry L
-Original Message- From: Saurabh Saraswat [mailto:ssaras...@pivotalindia.com] Sent: Friday, April 04, 2014 7:23 AM To: Tomcat Users List Subject: Re: SQLNestedException in Connection Pooling With Tomcat 7.0.39 Dear Dan, Thanks for your response! I have cross checked the user /

RE: Error in DBCP Connection Pool with tomcat 6.x

2014-07-01 Thread Propes, Barry L
-Original Message- From: Vijendra Pachoriya [mailto:vijendra.pachor...@indegene.com] Sent: Tuesday, July 01, 2014 2:31 AM To: users@tomcat.apache.org Cc: Alok Roy Subject: Error in DBCP Connection Pool with tomcat 6.x Hi Tomcat Team, Please help me out in solving below error. Below

RE: Error in DBCP Connection Pool with tomcat 6.x

2014-07-03 Thread Propes, Barry L
, Jul 1, 2014 at 8:09 AM, Propes, Barry L barry.l.pro...@citi.com wrote: -Original Message- From: Vijendra Pachoriya [mailto:vijendra.pachor...@indegene.com] Sent: Tuesday, July 01, 2014 2:31 AM To: users@tomcat.apache.org Cc: Alok Roy Subject: Error in DBCP Connection Pool

RE: Tomcat configuration on proxy_ajp.conf

2019-02-12 Thread Propes, Barry L
2 févr. 2019, à 22:28, "Propes, Barry L " mailto:barry.l.pro...@citi.com.invalid>> a écrit: Hi folks, First I apologize if this seems more like an Apache question rather than a Tomcat question. I just got an upgraded Red Hat Linux build from 6 to 7, and Apache went from 2.2.15 to

Tomcat configuration on proxy_ajp.conf

2019-02-12 Thread Propes, Barry L
Hi folks, First I apologize if this seems more like an Apache question rather than a Tomcat question. I just got an upgraded Red Hat Linux build from 6 to 7, and Apache went from 2.2.15 to 2.4.6. In my older Red hat 6 build, I've got a tomcat.conf file that handles ProxyPass and

RE: downloading JSTL..

2007-01-09 Thread Propes, Barry L [GCG-NAOT]
so would I just dump all of the .tld files in my WEB-INF sub directory titled tlds? For instance, I've got a directory in my webapps folder, then a WEB-INF directory for it, then inside it I've got a directory titled tlds. Just throw them in there? -Original Message- From: Wendy Smoak

RE: Tomcat unexpectedly shuts down

2007-01-11 Thread Propes, Barry L [GCG-NAOT]
I'd find out what other major processes are running on those two UNIX boxes, as it sounds like something there's clashing terribly, and killing off the Tomcat process. -Original Message- From: Brown, Carlton [mailto:[EMAIL PROTECTED] Sent: Thursday, January 11, 2007 4:01 PM To:

RE: Tomcat unexpectedly shuts down

2007-01-11 Thread Propes, Barry L [GCG-NAOT]
-Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 11, 2007 4:06 PM To: Tomcat Users List Subject: RE: Tomcat unexpectedly shuts down I'd find out what other major processes are running on those two UNIX boxes, as it sounds like something

RE: Tomcat unexpectedly shuts down

2007-01-11 Thread Propes, Barry L [GCG-NAOT]
- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 11, 2007 5:06 PM To: Tomcat Users List Subject: RE: Tomcat unexpectedly shuts down I'd find out what other major processes are running on those two UNIX boxes, as it sounds like something there's

RE: how to detect whether Tomcat has finished starting completely on Windows?

2007-01-24 Thread Propes, Barry L [GCG-NAOT]
usually just shows a message stating Starting service Tomcat-Standalone Apache Tomcat/4.0.1 Starting service Tomcat-Apache Apache Tomcat/4.0.1 for me. I would guess 5.5 does much the same. -Original Message- From: Vlad [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 24, 2007 1:42 PM

RE: how to detect whether Tomcat has finished starting completely on Windows?

2007-01-24 Thread Propes, Barry L [GCG-NAOT]
by the way...why not run it as a service? We do on our Win2K server here! We also daily stop it at 5:50 am, and restart it at 5:55 am, just to kill off any bad threads if there are any. It's rare that there are anyway. -Original Message- From: Vlad [mailto:[EMAIL PROTECTED] Sent:

RE: how to detect whether Tomcat has finished starting completely on Windows?

2007-01-25 Thread Propes, Barry L [GCG-NAOT]
? Hello, We have very specific needs and can't run it as a service (user who runs it may not have enough permissions to start/stop service).. -- Vlad . * Propes, Barry L [GCG-NAOT] [EMAIL PROTECTED] [Wed, 24 Jan 2007 15:01:14 -0500]: by the way...why not run it as a service? We do on our Win2K

RE: authentication using active directory

2007-01-26 Thread Propes, Barry L [GCG-NAOT]
you have to use the usernames and passwords as j_username and j_password. You didn't try to change that did you? -Original Message- From: Deepan [mailto:[EMAIL PROTECTED] Sent: Friday, January 26, 2007 1:22 AM To: Tomcat Users List Subject: authentication using active directory Hi, I

RE: URL Redirect Question

2007-02-08 Thread Propes, Barry L [GCG-NAOT]
you could do this... set that one URL in your welcome page as the default -- say index or default.jsp, or index.html, or whatever. That way, people can just click that simple link below. Within one of those pages, you could add a small little javascript function that does the redirect. If you

Connection Pool configuration

2007-02-08 Thread Propes, Barry L [GCG-NAOT]
Hello, I'm dealing with Tomcat 4.0.1 and -4.1.3. I badly need to get connection pooling configured, but am not quite sure how to do it. Here's a block from my server.xml file. Realm className=org.apache.catalina.realm.JDBCRealm debug=99 driverName=oracle.jdbc.OracleDriver

RE: Connection Pool configuration

2007-02-09 Thread Propes, Barry L [GCG-NAOT]
create a Datasource under ur apps context should do the trick. Thanx. Regards, FooShyn - Original Message - From: Propes, Barry L [GCG-NAOT] [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Friday, February 09, 2007 12:01 AM Subject: Connection Pool configuration

RE: Please help me about loading javascript...

2007-02-09 Thread Propes, Barry L [GCG-NAOT]
while that's difficult to read, let me see if I interpreted correctly. While loading a webpage from the localhost URL the javascript file included in that web page does not fully load, and in the middle of loading, hangs or crashes? And then you open the page in Internet Explorer it reads

RE: Windows Authentication against multiple domains

2007-02-09 Thread Propes, Barry L [GCG-NAOT]
if you find out, please let me know...I'm barking up that tree, too. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 4:50 PM To: users@tomcat.apache.org Subject: Windows Authentication against multiple domains Hi, I am having a

Tomcat load up error, w/ Oracle

2007-02-13 Thread Propes, Barry L [GCG-NAOT]
Hi folks, I've been having some issues anyway with Oracle in my Java app the last week or so. Originally, I thought it was due to some references where I was using the old sun.jdbc.odbc.JdbcOdbcDriver rather than the thin Oracle driver. So in any reference I had this, I've switched it to the

RE: Tomcat load up error, w/ Oracle

2007-02-13 Thread Propes, Barry L [GCG-NAOT]
it in error, purge the message from your system and notify the sender immediately. Any other use of the email by you is prohibited. -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 13, 2007 11:43 To: Tomcat Users List Subject: Tomcat load

RE: Tomcat load up error, w/ Oracle

2007-02-13 Thread Propes, Barry L [GCG-NAOT]
, proprietary, or otherwise private information. If you have received it in error, purge the message from your system and notify the sender immediately. Any other use of the email by you is prohibited. -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: [OT] mod_jk - tomcat sending delay

2007-02-13 Thread Propes, Barry L [GCG-NAOT]
New using Tomcat 5 series -- just where is mod_jk within Tomcat? Please let me know. Thanks, -Original Message- From: babu [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 4:11 PM To: users@tomcat.apache.org Subject: Re: [OT] mod_jk - tomcat sending delay Hi, We are also

RE: mod_jk - tomcat sending delay

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
. With regards, Babu Satasiya Propes, Barry L [GCG-NAOT] wrote: New using Tomcat 5 series -- just where is mod_jk within Tomcat? Please let me know. Thanks, -Original Message- From: babu [mailto:[EMAIL PROTECTED] Sent: Friday, February 09, 2007 4:11 PM To: users

RE: Connection Pool configuration

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
commented out. Any feedback would be great! Thanks, . -Original Message- From: Propes, Barry L [GCG-NAOT] Sent: Wednesday, February 14, 2007 10:17 AM To: Tomcat Users List Subject: RE: Connection Pool configuration are you talking under the META-INF folder of the app I suppose? Just so

RE: Connection Pool configuration

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
bout Tomcat 4.0, but i think in 4.1 u could do it through the admin page. Just create a Datasource under ur apps context should do the trick. Thanx. Regards, FooShyn - Original Message - From: Propes, Barry L [GCG-NAOT] [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org

multiple versions of TC

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
Hi, I'm running 4.0.1 currently on my local box, but our prod box has 4.1.3. I was wondering, if I copy down the newer version, can I run it also (not simultaneously) but without having to delete the older version? Can I just set the jdk path appropriately and run it like I would my older

RE: multiple versions of TC

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
ok, thanks, David. -Original Message- From: David Kerber [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 14, 2007 12:21 PM To: Tomcat Users List Subject: Re: multiple versions of TC Propes, Barry L [GCG-NAOT] wrote: Hi, I'm running 4.0.1 currently on my local box, but our prod

RE: multiple versions of TC

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Barry, David Kerber wrote: Propes, Barry L [GCG-NAOT] wrote: I'm running 4.0.1 currently on my local box, but our prod box has 4.1.3. I was wondering, if I copy down the newer version, can I run it also (not simultaneously) but without having

RE: multiple versions of TC

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
versions of TC -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Barry, Propes, Barry L [GCG-NAOT] wrote: gotcha! Thanks. Both were running at port 8080, just not simultaneously. I should be ok in that regard, correct? Yeah, you should be fine. What I do on my machines is front everything

RE: multiple versions of TC

2007-02-14 Thread Propes, Barry L [GCG-NAOT]
perfect! Thanks, Chris! -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 14, 2007 3:27 PM To: Tomcat Users List Subject: Re: multiple versions of TC -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Barry, Propes, Barry L [GCG-NAOT] wrote

RE: multiple versions of TC

2007-02-15 Thread Propes, Barry L [GCG-NAOT]
it? -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 14, 2007 3:27 PM To: Tomcat Users List Subject: Re: multiple versions of TC -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Barry, Propes, Barry L [GCG-NAOT] wrote: what does that entail? Just

RE: Weird Exception thrown on startup (how to resolve?)

2007-02-15 Thread Propes, Barry L [GCG-NAOT]
looks like the Persistent Manager Sessions area got uncommented, and maybe shouldn't have been? Or has something wrong within the reference? -Original Message- From: Lisa [mailto:[EMAIL PROTECTED] Sent: Thursday, February 15, 2007 11:19 AM To: users@tomcat.apache.org Subject: Weird

startup error

2007-02-15 Thread Propes, Barry L [GCG-NAOT]
Hi folks, I was trying to get DBCP working and tried adding the Resource param info per the TC 4.1 documentation: Context path=/DBTest docBase=DBTest debug=5 reloadable=true crossContext=true Logger className=org.apache.catalina.logger.FileLogger prefix=localhost_DBTest_log. suffix=.txt

RE: Tomcat 5.5.9 on Sun Solaris: JSP compilation error

2007-02-15 Thread Propes, Barry L [GCG-NAOT]
might require updated jar files for the servlets and jsps? -Original Message- From: Daniel Gresh [mailto:[EMAIL PROTECTED] Sent: Thursday, February 15, 2007 1:34 PM To: Tomcat Users List Subject: Tomcat 5.5.9 on Sun Solaris: JSP compilation error Hi list, Recently I upgraded Tomcat

RE: Tomcat default context

2007-02-19 Thread Propes, Barry L [GCG-NAOT]
didn't know it was possibleto set up a default context outside of the server.xml file. I thought Tomcat required that. -Original Message- From: Gardner, Brad [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 10:43 AM To: users@tomcat.apache.org Subject: Tomcat default context

RE: Tomcat default context

2007-02-19 Thread Propes, Barry L [GCG-NAOT]
on the root context. -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 11:48 AM To: Tomcat Users List Subject: RE: Tomcat default context didn't know it was possibleto set up a default context outside of the server.xml file. I

Connection pool problem DBCP - 4.1.3

2007-02-19 Thread Propes, Barry L [GCG-NAOT]
This is driving me crazy. I'm finally close, I think, on getting this solved. Problem is I seem to either get Connection is closed or Exhausted resultset, depending where I put my close statement. I've got the following up at the top, which replaces my driver reference that was previously

RE: Connection pool problem DBCP - 4.1.3

2007-02-19 Thread Propes, Barry L [GCG-NAOT]
{ Close PreparedStatement } } finally { Close Connection } All of the closing should be done in finally blocks so they happen even if you get an exception. -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: 19 February 2007 18:22 To: Tomcat Users

RE: Connection pool problem DBCP - 4.1.3

2007-02-19 Thread Propes, Barry L [GCG-NAOT]
Johnny, you were correct. that selstmt connection statement was not being utilized, but sure must have had an adverse impact, because I think I've got it working ok now! Thanks a bunch, guys! -Original Message- From: -- [mailto:[EMAIL PROTECTED] Sent: Monday, February 19, 2007 2:06 PM

RE: overlapped parameters between sessions

2007-02-20 Thread Propes, Barry L [GCG-NAOT]
starting to wonder if that's maybe happening to me some, too, though I've not confirmed it any of the logs yet. -Original Message- From: WILLIAM PARRA [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 20, 2007 4:00 PM To: Tomcat Users List Subject: overlapped parameters between sessions

RE: Connection pool problem DBCP - 4.1.3

2007-02-21 Thread Propes, Barry L [GCG-NAOT]
should be done in finally blocks so they happen even if you get an exception. -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: 19 February 2007 18:22 To: Tomcat Users List Subject: Connection pool problem DBCP - 4.1.3 This is driving me crazy. I'm

authentication security constraint error

2007-02-21 Thread Propes, Barry L [GCG-NAOT]
Hi, I've been using versions 4.0 and 4.1.3 with a security constraint with no problems. However, when I added info in my server.xml file to try and attempt DBCP, I get a warning in my logs about something being defined in in an auth-constraint without being in a security role. Maybe not too

RE: authentication security constraint error

2007-02-21 Thread Propes, Barry L [GCG-NAOT]
ok, thanks, Chuck. -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 5:02 PM To: Tomcat Users List Subject: RE: authentication security constraint error From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Subject

RE: authentication security constraint error

2007-02-21 Thread Propes, Barry L [GCG-NAOT]
Yeah, I had them in there. -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 5:02 PM To: Tomcat Users List Subject: RE: authentication security constraint error From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED

RE: authentication security constraint error

2007-02-21 Thread Propes, Barry L [GCG-NAOT]
now I'll double check that part. That could be an issue. -Original Message- From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 21, 2007 5:35 PM To: Tomcat Users List Subject: RE: authentication security constraint error From: Propes, Barry L [GCG-NAOT

RE: Pls help : How to make case insensitive URL(JSP) on Tomcat 5.5

2007-02-22 Thread Propes, Barry L [GCG-NAOT]
can't you force something like that in the welcome page attribute of the web.xml file in the conf folder? i.e. welcome-file-list welcome-fileindex.html/welcome-file welcome-fileindex.htm/welcome-file welcome-fileindex.jsp/welcome-file

RE: authentication security constraint error

2007-02-22 Thread Propes, Barry L [GCG-NAOT]
List Subject: RE: authentication security constraint error From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Subject: RE: authentication security constraint error Yeah, I had them in there. Are they in the right order relative to the other elements? The web-app schema is rather

RE: How can I realize server side GUI??

2007-02-22 Thread Propes, Barry L [GCG-NAOT]
sounds like a lot of Swing to me...is it not? -Original Message- From: wang suya [mailto:[EMAIL PROTECTED] Sent: Thursday, February 22, 2007 5:48 PM To: Tomcat Users List Subject: Re: How can I realize server side GUI?? Hello Peter You are right. I want to make a graphical

RE: Connection reset error

2007-02-22 Thread Propes, Barry L [GCG-NAOT]
another oddity about this (maybe not). The error occurs/ed when I tried it thru the IP address of the box. In trying it thru the domain name, I don't get that error. -Original Message- From: Propes, Barry L [GCG-NAOT] Sent: Thursday, February 22, 2007 5:49 PM To: Tomcat Users List

RE: Connection pool problem DBCP - 4.1.3

2007-02-23 Thread Propes, Barry L [GCG-NAOT]
: true RemoveAbandonedTimeout: 60 Thanks, Barry -Original Message- From: Propes, Barry L [GCG-NAOT] Sent: Wednesday, February 21, 2007 10:18 AM To: Tomcat Users List Subject

RE: increase the backend idle connection timeout or the connection_pool_minsize

2007-02-26 Thread Propes, Barry L [GCG-NAOT]
on that connection pool size, these two: parameter namemaxActive/name value20/value /parameter parameter namemaxIdle/name value2/value /parameter

connection pool - DBCP error

2007-02-26 Thread Propes, Barry L [GCG-NAOT]
I am getting a slight error with regards to my connection pool configuration. I may not have totally closed the connection properly, but shouldn't the following account for it? AbandonedObjectPool is used ( [EMAIL PROTECTED]) LogAbandoned: true RemoveAbandoned: true

RE: connection pool - DBCP error

2007-02-26 Thread Propes, Barry L [GCG-NAOT]
/namevalueselect count(*) from dual/value/parameter -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Monday, February 26, 2007 3:48 PM To: Tomcat Users List Subject: connection pool - DBCP error I am getting a slight error with regards to my connection pool

RE: connection pool - DBCP error

2007-02-27 Thread Propes, Barry L [GCG-NAOT]
/namevalueselect count(*) from dual/value/parameter -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Monday, February 26, 2007 3:48 PM To: Tomcat Users List Subject: connection pool - DBCP error I am getting a slight error with regards to my connection

RE: connection pool - DBCP error

2007-02-27 Thread Propes, Barry L [GCG-NAOT]
). See the javadocs for org.apache.commons.dbcp.BasicDataSource for all the options settable. minEvictableIdleTimeMillis= translates to setMinEvictableIdleTimeMillis(). --David Propes, Barry L [GCG-NAOT] wrote: Daniel, I scoured the APIs for that method and couldn't find anywhere, but I added

RE: j_security_check

2007-02-27 Thread Propes, Barry L [GCG-NAOT]
I connect to Oracle, but mine's configured slightly different. in the server.xml file, connectionName=user_name connectionPassword=password userTable=users userNameCol=user_name userCredCol=user_pass userRoleTable=user_roles roleNameCol=role_name/ I have an

RE: connection pool - DBCP error

2007-02-27 Thread Propes, Barry L [GCG-NAOT]
: RE: connection pool - DBCP error -Original Message- From: Propes, Barry L [GCG-NAOT] [mailto:[EMAIL PROTECTED] Sent: Monday, February 26, 2007 4:48 PM To: Tomcat Users List Subject: connection pool - DBCP error AbandonedObjectPool is used ( [EMAIL PROTECTED]) LogAbandoned

RE: The return type is incompatible with JspSourceDependent.getDependants()

2007-03-01 Thread Propes, Barry L [GCG-NAOT]
might be reflective of the JDK you're using and how that generated JSP was being written. What method, package was being used, etc. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, March 01, 2007 3:29 PM To: Tomcat Users List Subject: The return type

<    1   2   3   4   5   6   7   >