confused on debug level

2003-07-10 Thread Matt Swensson
same message. Where am I supposed to turn it up? Thanks, Matt __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: Réf. : RE: dbcp connection and database restart

2003-07-09 Thread Raible, Matt
Yes. http://www.mail-archive.com/[EMAIL PROTECTED]/msg91560.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 8:31 AM To: Tomcat Users List Cc: 'Tomcat Users List' Subject: Réf. : RE: dbcp connection and database restart

RE: dbcp connection and database restart

2003-07-09 Thread Raible, Matt
Try adding a validation query, for example: validationQuery SELECT * FROM USER_TABLE -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 6:46 AM To: [EMAIL PROTECTED] Subject: dbcp connection and da

RE: Struts in welcome-file-list

2003-07-02 Thread Raible, Matt
As part of the servlet 2.2/2.3 spec, you are not allowed to use a servlet/action as a welcome-file - only .html or .jsp (I think). This is changing in the servlet 2.4 spec. Matt -Original Message- From: Jeroen Breedveld [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 8:28 AM To

RE: ServletContextListener problem

2003-06-27 Thread Raible, Matt
You have 2.2 in the first part of your DTD: http://java.sun.com/dtd/web-app_2_3.dtd";> Change it to: http://java.sun.com/dtd/web-app_2_3.dtd";> HTH, Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 12:17 PM To: T

Tomcat's Ant Tasks

2003-06-24 Thread Raible, Matt
I'm having trouble using Tomcat's Ant Tasks. I've written up a wiki page on how I'm using them and the problems I'm experiencing. Any help is appreciated. http://raibledesigns.com/wiki/Wiki.jsp?page=Tomc

RE: Configuring Apache to work with Tomcat

2003-06-23 Thread Matt Kwid
Ok, I went through the steps again starting from scratch and was able to load up the .jsp pages in the examples directory. Thanks for the support John. :) I also mounted a another web app and everything seems to be running perfectly now. Woot, woot! ~Matt -Original Message- From: John

RE: Configuring Apache to work with Tomcat

2003-06-23 Thread Matt Kwid
ns or information is appreciated. ~Matt -Original Message- From: John Turner [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 5:40 AM To: Tomcat Users List Subject: Re: Configuring Apache to work with Tomcat First, if you have Apache 2.0.46, you won't be able to use the m

RE: Configuring Apache to work with Tomcat

2003-06-23 Thread Matt Kwid
_jk.conf file is not being created. Any and all suggestions are appreciated. ~Matt -Original Message- From: Logan Scott [mailto:[EMAIL PROTECTED] Sent: Sunday, June 22, 2003 11:20 PM To: Tomcat Users List Subject: RE: Configuring Apache to work with Tomcat Try this: http://www.johntu

Configuring Apache to work with Tomcat

2003-06-22 Thread Matt Kwid
lease give me a hand in configuring them to work together or point me to any resources? ~Matt the noob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Can

2003-06-19 Thread Raible, Matt
All you can get is their username - using request.getRemoteUser(). To get the rest of their information, you'll have to query the database with handwritten code. Matt -Original Message- From: Jim Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 3:06 PM To: Tomcat Users

RE: Can

2003-06-19 Thread Raible, Matt
Here's my realm from Tomcat 4.1.x -Original Message- From: Jim Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 2:20 PM To: Tomcat Users List Subject: Re: Can true 2003-06-19 16:02:31 Authenticator[/resources]: Subject to constraint SecurityConstraint[resources] 2003

RE: display tag

2003-06-16 Thread Raible, Matt
Try this: requestURI='<%= request.getContextPath() + "/results.do"%>' You should probably ask these display tag related questions on the display tag user list: http://lists.sourceforge.net/lists/listinfo/displaytag-user Matt -Original Message- From: Mark

Upgrading to Tomcat 5

2003-06-13 Thread Raible, Matt
y expressions 4. None of my logging configuration in mywebapp/WEB-INF/classes/log4j.properties file is picked up. Even moving it to $CATALINA_HOME/common/lib does not seem to help. Thanks, Matt - To unsubscribe, e-mail: [EMAIL

RE: can i send emails using servlets to yahoo or hotmail addresses

2003-06-12 Thread Raible, Matt
How about a code sample: http://tinyurl.com/e61q -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 12:49 PM To: Tomcat Users List Subject: RE: can i send emails using servlets to yahoo or hotmail addresses Howdy, See the JavaMail Sessions s

RE: How to setup JAASRealm in Tomcat 4.x.x

2003-06-12 Thread Raible, Matt
Here's how to setup Tomcat with a JAASRealm to talk to an NT Domain - maybe this will help: http://tinyurl.com/e5tp Matt -Original Message- From: Loyd Bacani [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 11:50 AM To: Tomcat Users List Subject: Re: How to setup JAASRea

RE: webapps stopped à startup

2003-06-12 Thread Raible, Matt
You can stop contexts in the manager app (/manager/html) with Tomcat 4.1.x. -Original Message- From: BOULAY Arnaud [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 9:44 AM To: [EMAIL PROTECTED] Subject: webapps stopped à startup small tip please : How can I tell Tomcat that I don'

RE: Display Tag, Tiles and Paging

2003-06-11 Thread Raible, Matt
)) { if (request.getParameter("searchBy") != null) { searchTerm = "&searchBy="+request.getParameter("searchBy"); } } %> <%-- For linking to edit screen --%> HTH, Matt -Original Message- From: Mark F [mailto:[EMAIL PROTECTED] Sent: We

RE: Auto Login Using Form Based Authentication

2003-06-11 Thread Raible, Matt
ing authentication..."); } response.sendRedirect(response.encodeRedirectURL(route)); return; } } Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Auto Login Using Form Based Authentication

2003-06-10 Thread Raible, Matt
You could put a filter on /* in your app, and if the user is routed to the login page (check the URL for an indexOf("login.jsp")) - then set a request variable containing the parameter you want to save. Matt -Original Message- From: Val T. [mailto:[EMAIL PROTECTED] Sent: Tuesda

RE: Struts Framework

2003-06-06 Thread Raible, Matt
Ever heard of Google? http://www.google.com/search?q=struts -Original Message- From: Anitha K Rao [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 4:12 AM To: Tomcat Users List Subject: Struts Framework Hi, Whats This Struts Framework?Kindly give me info in this domain. Ciao

RE: Container Managed Authentication

2003-06-04 Thread Raible, Matt
-Original Message- From: Vinh Tran [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 12:04 PM To: [EMAIL PROTECTED] Subject: Container Managed Authentication All: I am using CMA with Tomcat4/Apache1.3. I have a form-based login page pointed at j_security_check. When a user submits

RE: Auto login using a cookie

2003-06-04 Thread Raible, Matt
I have a way that's been working for me - see it at: http://raibledesigns.com/training/index.jsp?topic=rememberMe HTH, Matt -Original Message- From: Joël "Wijngaarde [Us Media] [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 6:14 AM To: Tomcat Users List Subject: Re:

How we solved our tomcat/oracle connectivity issues

2003-06-03 Thread Raible, Matt
e Oracle side, not on the Tomcat/application side. Read more here: http://tinyurl.com/d9cv HTH, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Alternate password encyption code?

2003-05-30 Thread Raible, Matt
"j_security_check" - is that what you're looking for? Matt -Original Message- From: Jeff Sexton [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 4:39 PM To: Tomcat Users List Subject: RE: Alternate password encyption code? On Thu, 29 May 2003, Raible, Matt wrote:

RE: Alternate password encyption code?

2003-05-30 Thread Raible, Matt
Here's how I do it - and I generally use "SHA" as my algorithm: /** * Encode a string using algorithm specified in web.xml and return the * resulting encrypted password. If exception, the plain credentials * string is returned * * @param password Password or other cred

RE: What is the maximum session handling capability

2003-05-30 Thread Raible, Matt
It's all relative to CPU and RAM IMO. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 9:19 AM To: [EMAIL PROTECTED] Subject: What is the maximum session handling capability In the past, I've used Tomcat for very small projects. But, now I

java.io.IOException: Not owner - when using Netfiler

2003-05-29 Thread Raible, Matt
r all the files (as an NT user) and I'm also the owner (according to Unix), but it appears that something on the netfiler is causing the problems. Any ideas are appreciated. Thanks, Matt 2003-05-28 15:16:09 ContextConfig[/cct]: Scanning JAR at resource path '/WEB-INF/lib/hibernate.jar

RE: placement of properties files

2003-05-28 Thread Raible, Matt
I'd recommend WEB-INF/classes - then it's in the classpath. -Original Message- From: Schwartz, David (CHR) [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 6:57 AM To: 'Tomcat Users List' Subject: RE: placement of properties files I think web-inf folder - since tomcat wont serve f

RE: STRUTS in Tomcat?

2003-04-04 Thread Raible, Matt
The 4.1.x version of Tomcat has an Administration app that's written using Struts. > -Original Message- > From: Chin, Ed [mailto:[EMAIL PROTECTED] > Sent: Friday, April 04, 2003 2:29 PM > To: 'Tomcat Users List' > Subject: STRUTS in Tomcat? > > > Is STRUTS included in the distribution of

RE: Tomcat 4.1.24- do not follow symbolic link- works finein4.0 .6

2003-03-31 Thread Raible, Matt
You must do it for your "test" context - not the "example" context. Please post these messages to the list rather than to me directly - you'll get better support from the list. Matt > -Original Message- > From: Ajay Agrawal [mailto:[EMAIL PROTECTED] >

RE: URGENT: java.lang.OutOfMemoryError

2003-03-31 Thread Raible, Matt
I experienced lots of OutOfMemoryError's with 4.1.18. I don't think I've seen any since upgrading to 4.1.24. HTH, Matt > -Original Message- > From: Galbayar Dorjgotov [mailto:[EMAIL PROTECTED] > Sent: Saturday, March 29, 2003 6:26 PM > To: Tomcat U

Tomcat-users.xml getting erased

2003-03-30 Thread Matt Raible
it has is: Any ideas? Thanks, Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat 4.1.24- do not follow symbolic link- works finein4.0 .6

2003-03-28 Thread Raible, Matt
In server.xml - where you define the context for your application or at the global level next to similar Resources entries. HTH, Matt > -Original Message- > From: Ajay Agrawal [mailto:[EMAIL PROTECTED] > Sent: Friday, March 28, 2003 3:16 PM > To: Raible, Matt > Subj

RE: Tomcat 4.1.24- do not follow symbolic link- works fine in4.0 .6

2003-03-28 Thread Raible, Matt
-Original Message- > From: Ajay Agrawal [mailto:[EMAIL PROTECTED] > Sent: Friday, March 28, 2003 2:38 PM > To: Tomcat Users List > Subject: Tomcat 4.1.24- do not follow symbolic link- works > fine in 4.0.6 > > > Hi, > > I have installed Tomcat 4.1.24 and having problem with > sym

RE: Anygood Howto on Multiple Virtual Hosts Apache, mod_jk andTo mcat

2003-03-28 Thread Raible, Matt
http://raibledesigns.com/tomcat/index.html Step 6: Configuring Private JVMs. HTH, Matt > -Original Message- > From: Richie Chauhan [mailto:[EMAIL PROTECTED] > Sent: Friday, March 28, 2003 10:31 AM > To: Tomcat > Subject: Anygood Howto on Multiple Virtual Hosts Apa

RE: connection pool

2003-03-28 Thread Raible, Matt
I've seen this same issue and I'm interested in a solution as well. Thanks, Matt > -Original Message- > From: Salina Cheung [mailto:[EMAIL PROTECTED] > Sent: Friday, March 28, 2003 9:00 AM > To: [EMAIL PROTECTED] > Subject: connection pool > > > H

JDBCRealm Timeout

2003-03-28 Thread Raible, Matt
able to use is: oracle.jdbc.driver.OracleDriver Therefore, my realm is timeing out, whereas my pool stays active. I can't login to verify this, but it is my suspicion, especially since my DBPing can still be run, and it hits the same table as the JDBCRealm. Any i

Tomcat 4.1.x w/ NIC Teaming

2003-03-27 Thread Matt Fury
andle requests from 200 mbit network connection. -Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT] Contract Work Hourly Rates

2003-03-26 Thread Raible, Matt
s > > > Where are you located, Matt? > > At 03:45 PM 3/26/03 -0700, you wrote: > >Most clients seem to want to pay b/w 30 and 50, from what > I've seen. When > >I've asked for more than that - I don't get any returned > e-mails or phone > >

RE: [OT] Contract Work Hourly Rates

2003-03-26 Thread Raible, Matt
Most clients seem to want to pay b/w 30 and 50, from what I've seen. When I've asked for more than that - I don't get any returned e-mails or phone calls. In Florida, where I've been hoping to find my next job, it's more like 20-40/hour. :( Matt > -Original

RE: [OT] Contract Work Hourly Rates

2003-03-26 Thread Raible, Matt
In this economy, I usually ask the client how much they're willing to spend. Usually they will fess up and then you can decide from there. Telling them how much you (truly) want will usually result in "yeah, right." Matt > -Original Message- > From: Micael [ma

RE: Admin is incomplete

2003-03-26 Thread Raible, Matt
7;t work (details at http://tinyurl.com/87q7), but I never use it, so I don't mind at all. Matt > -Original Message- > From: Richard Dunn [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 26, 2003 12:59 PM > To: Tomcat Users List > Subject: Re: Admin is incomplete >

Tomcat 4.1.24 and Coyote JK2 Connector

2003-03-24 Thread Raible, Matt
issue (which I don't think it is b/c it's an INFO), how do I turn this log message off? Mar 24, 2003 10:42:40 AM org.apache.jk.common.ChannelSocket processConnection INFO: connection timeout reached Do I just set the connectionTimeout to -1?

RE: Custom JDBCRealm

2003-03-21 Thread Raible, Matt
If you extend a Tomcat class and create your own authenticator - you'll have to add tomcat jars to your project. HTH, Matt > -Original Message----- > From: Raible, Matt > Sent: Friday, March 21, 2003 4:12 PM > To: 'Tomcat Users List' > Subject: RE: Custom

RE: Custom JDBCRealm

2003-03-21 Thread Raible, Matt
TED] > Sent: Friday, March 21, 2003 3:06 PM > To: Tomcat Users List > Subject: Re: Custom JDBCRealm > > > may be this is dumb question. So do you run two filters? one > for authticate and > to check authorization and other to load the customo objects?? > > Thanks M

RE: Custom JDBCRealm

2003-03-21 Thread Raible, Matt
Why not just add a filter that has the same as your protected resource. I do this, and if there's not a user object in the session, I populate it from a database. Example at http://tinyurl.com/7xb1 HTH, Matt > -Original Message- > From: awc [mailto:[EMAIL PROTECTED] >

compiling from source: error on jasper...

2003-03-19 Thread Matt . Gregory
r the impression that jasper was now integrated into the tomcat source. I looked at the build.xml and it looks like there is a line for jasper in there. I took it out and everything seemed to build ok. Should this ant directive still be in there? (from error, build.xml line 68) Matt Gr

Best way to capture Stack Trace when Tomcat Failes complete?

2003-03-18 Thread Matt Fury
to capture that information to a log file since its low-level? -Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Help: Anyone have experience with JNI and Servlets?

2003-03-16 Thread Matt Fury
is true but it sounds like a viable solution. -Matt --- Mufaddal Khumri <[EMAIL PROTECTED]> wrote: > What error or exception shows up ? Can you paste > the logs from the log > file ? Not knowing what exception shows up its > difficult to understand what > the problem might be

Help: Anyone have experience with JNI and Servlets?

2003-03-15 Thread Matt Fury
et a standalone app to work fine. Please help!! Thanks. -Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Public keys in reply and keystore don't match???

2003-03-15 Thread Matt Fury
The biggest issue I had was making sure the Aliases are EXACTLY the same. Also make sure the certs are imported in the correct order. --- Mark Liu <[EMAIL PROTECTED]> wrote: > I want to run Tomcat SSL with a certificate issued > by > a certification authority I write. > > I am getting this excep

Re: Public keys in reply and keystore don't match???

2003-03-15 Thread Matt Fury
The biggest issue I had was making sure the Aliases are EXACTLY the same. Also make sure the certs are imported in the correct order. --- Mark Liu <[EMAIL PROTECTED]> wrote: > I want to run Tomcat SSL with a certificate issued > by > a certification authority I write. > > I am getting this excep

Re: net stop tomcat service?

2003-03-15 Thread Matt Fury
Most of the time your Tomcat installation installs as "Apache Tomcat 4.x". If you have multiple services running, just right click and check "Properties". This will tell you what path you service is related to. -Matt --- Thomas Trepper <[EMAIL PROTECTED]> wrote: >

Help: Anyone have experience with JNI and Servlets?

2003-03-15 Thread Matt Fury
et a standalone app to work fine. Please help!! Thanks. -Matt - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: configuring j_security_check in Tomcat

2003-03-13 Thread Raible, Matt
You have to configure form-based authentication and try to access a protected resource for this to work. Matt > -Original Message- > From: Lanto Randriamiharisoa > [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2003 1:34 AM > To: [EMAIL PROTECTED] > Su

Re: How do I start with a servlet?

2003-03-09 Thread Warden, Matt
On Mar 9, Manolis Mavrikis had something to say about Re: How do I start... >Jim, > > Create a SetupServlet in your servlets package and use something similar as >the below part of my web.xml > > you can even pass some parameters with the param-value > > and if I remebmer right you put the l

Re: Tomcat w/ Apache integration question

2003-03-07 Thread Matt Fury
Another question: Do I need to specify "http://servername"; before each image to explicitly tell Apache to load the images in a JSP? --- Matt Fury <[EMAIL PROTECTED]> wrote: > Hi all! > > I am a bit confused and forgive me if I am not > seeing > things straigh

Re: Installing Thawte test certificate in Tomcat 4.1.18

2003-03-06 Thread Matt Fury
I had this issue with InstantSSL... ask for that specific type. Come to find out for me anyway, the ALIAS has to be exact for the reply and that's where I was screwing up. -Matt --- Einar M. Råberg Rosenvinge <[EMAIL PROTECTED]> wrote: > On Fri, Feb 28, 2003 at 10:59:42 +0100, Ein

RE: remember password HOW-TO?

2003-03-05 Thread Raible, Matt
if you're using Tomcat, this is awesome and has sped up my development time considerably as I never have to login anymore! Matt -Original Message- From: Will Hartung To: Tomcat Users List Sent: 3/5/2003 6:56 PM Subject: Re: remember password HOW-TO? > From: "Raible, Matt"

RE: remember password HOW-TO?

2003-03-05 Thread Raible, Matt
eir username and password. So it's "optional" remember me functionality. So, IMO - this is a way to implement remember me with container managed authentication. It's working like a charm for me in 2 production apps. Of course, they both are running on Tomcat, but it *should* work o

RE: remember password HOW-TO?

2003-03-05 Thread Raible, Matt
ibledesigns.com/downloads/security-example-1.0.zip (10MB) HTH, Matt > -Original Message- > From: Will Hartung [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 05, 2003 3:06 PM > To: Tomcat Users List > Subject: Re: remember password HOW-TO? > > > > From:

Tomcat w/ Apache integration question

2003-03-05 Thread Matt Fury
Tomcat will take care of the code inside? 99% of my website is JSP/Servlet/Tags but the pages consist of a lot of images to load. Would it be beneficial for me to integrate Apache? Otherwise I would consider using Apache for just images and create an image server or something. -Matt

strange problem with starting up servlets on tomcat

2003-03-05 Thread matt dilley
-startup values, or maybe the amount of servlets allowed to run at startup. can anybody help me with this? if you wish, I could include an example snippet of the problem servlet code - will that be of use? regards Matt Dilley -

RE: [ANN] Tomcat 5.0.1 Alpha released - where's JSTL

2003-03-04 Thread Raible, Matt
I attempted to migrate my application to 5.0.1 today for kicks. I know that has been replaced by ${...}, but what about - how do I use this with JSP 2.0? Isn't it the same as using JSTL? Thanks, Matt > -Original Message- > From: Remy Maucherat [mailto:[EMAIL PROTEC

RE: HTTP Status 500 Error

2003-02-27 Thread Raible, Matt
web.xml - an example: 500 /error.jsp?code=500 > -Original Message- > From: Ravindra K. Bhat [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 27, 2003 1:24 PM > To: Tomcat Users List > Subject: HTTP Status 500 Error > > > Hello > > how do I replace HTTP Sta

RE: realm getRole() method ?

2003-02-27 Thread Raible, Matt
request.isUserInRole(rolename) ?? > -Original Message- > From: laurent marot [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 27, 2003 9:02 AM > To: Tomcat Users List > Subject: realm getRole() method ? > > > hi all, > > using realm authentication is there a method to get > remoteU

RE: Authentication and Roles - case sensitivity

2003-02-25 Thread Raible, Matt
ssing this from my own experience on 4.1.18. However, since request.isUserInRole() IS case sensitive, how can I do matching in a NON case sensitive way. Too bad there isn't a request.isUserInRoleIgnoreCase() ;-) Thanks for any tips. Matt -

RE: properties files

2003-02-25 Thread Warden, Matt
On Feb 25, Arnaud HERITIER had something to say about RE: properties files >You need to put your property files in WEB-INF/classes or in a jar in >WEB-INF/lib This will lock you into the current Tomcat incarnation, though. The WAR format does not say anything about exploding the archive and/or al

RE: Connection Pooling

2003-02-25 Thread Warden, Matt
On Feb 25, Malcolm Green had something to say about RE: Connection Pooling >I have DBCP connection pooling working as follows using Tomcat 4.1.12: > >Under the element for your application (this can either be in the >server.xml file or a separate xml file in the webapps dir) I have the >followin

RE: Tomcat and Microsoft SQL Server 2000 JDBC Driver issue

2003-02-25 Thread Warden, Matt
On Feb 24, Michael Ni had something to say about RE: Tomcat and Microsoft... > >ive copied to my >C:\Tomcat 4.1\webapps\ROOT\WEB-INF\lib >C:\Tomcat 4.1\common\lib >and it still doesn't work. > >has anyone actually got their scripts to query from SQL Server 2000 using >the Microsoft SQL Server 200

Re: Bouncing Tomcat (for new classes)

2003-02-25 Thread Warden, Matt
On Feb 23, Tim Funk had something to say about Re: Bouncing Tomcat (for new... >You probably had tomcat configured in the past to look for these changes >in .class files and automatically restart the web application. For some >reason - its now turned off. (I don't like that feature anyways). Ev

Authentication and Roles - case sensitivity

2003-02-25 Thread Raible, Matt
InRole('ADMINISTRATOR'): true The reason I ask this is b/c I'm developing a menu application that filters on roles and hides/shows menus based on a role name. What should I do to mimic Tomcat's behavior? Should I do an toUpperCase on the rolename and database role? What

RE: LDAP Authentication

2003-02-25 Thread Raible, Matt
Here's what I have in my context to make it work: ldap://drevil:389"; userPassword="userPassword" userPattern="uid={0},ou=people,dc=raibledesigns,dc=com" roleBase="ou=groups,dc=raibledesigns,dc=com" roleName="cn" roleSearch="(uniqueMember={0})

RE: Servlet Problems Uprgrading from Tomcat 3.2.x to Tomcat 4.1.18

2003-02-24 Thread Matt Frame
Sorry, I found another person had asked this same question and my problem was the same. I had a space in the directory structure for the Tomcat installation. Matt -Original Message- From: Matt Frame [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 2:33 PM To: 'Tomcat

Servlet Problems Uprgrading from Tomcat 3.2.x to Tomcat 4.1.18

2003-02-24 Thread Matt Frame
into getting this problem resolved. Thanks, Matt

RE: OT: Is it ok to close connection in finalize() ?

2003-02-22 Thread Warden, Matt
On Feb 20, Mike Jackson had something to say about RE: OT: Is it ok to... >> finalize() is indeed guaranteed to run upon garbage collection, which in >> turn is guaranteed to happen. However, garbage collection can >> happen at any >> time, so the connection may not be closed immediately. If thi

RE: How do i get the URL ... ?

2003-02-21 Thread Raible, Matt
request.getRequestURL() if you're using Servlet 2.3. > -Original Message- > From: Mufaddal Khumri [mailto:[EMAIL PROTECTED] > Sent: Friday, February 21, 2003 2:21 AM > To: Tomcat List > Subject: How do i get the URL ... ? > > > Hi, > > Lets say I have a Welcome.jsp page. How can i get t

Re: Help! Anyone successfully install a purchased certificate?

2003-02-21 Thread Matt Fury
Richard, Thanks so much for your reply! I'm trying one last time with InstantSSL. We'll find out soon and I'll let everyone know whether you can go with InstantSSL or not! :-) -Matt --- "Richard S. Huntrods" <[EMAIL PROTECTED]> wrote: > *** I am re-send

RE: Form based security and "Remember Me"

2003-02-21 Thread Raible, Matt
er without displaying login page String route = "j_security_check?j_username=" + username + "&j_password=" + StringUtil.decodeString(password); if (log.isDebugEnabled()) { log.debug("I remember you '" + username

Re: Help! Anyone successfully install a purchased certificate?

2003-02-20 Thread Matt Fury
They do have Apache instructions. But I guess I better request that soon before the warranty runs out. LOL They have instructions for how to do create and install it with generic Java based servers but it hasn't been specific enough with Tomcat. -Matt --- Ian Hunter <[EMAIL PROTECTED

Help! Anyone successfully install a purchased certificate?

2003-02-20 Thread Matt Fury
-generated one works fine but when I try to import the purchased cert, when a user hits the page it just thinks its still a self-generated one. Any ideas? I've started with a clean keystore and no luck. -Matt - To un

RE: ant deploy task?

2003-02-20 Thread Raible, Matt
> > for the tasks defined in catalina-ant.jar. Does anyone know > where they are? > http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/sample/build.xml - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

RE: HELP! NT Services / Catalina_Opts

2003-02-19 Thread Matt Fury
hen Tomcat reaches about 103M used it just dies. No user can connect to the site. The site is done in a combo of JSTL, Servlets, and JSP's w/ mySQL connection pooling through JNDI. Any ideas anyone?? -Matt --- Christopher Watson <[EMAIL PROTECTED]> wrote: > The NT/2000 service i

RE: Tomcat Hosting Services?

2003-02-18 Thread Raible, Matt
Servlets.com has user-submitted reviews on their ISP Reviews page: http://www.servlets.com/isps/servlet/ISPViewAll I use www.kgbinternet.com and it's worked great for me, cheap too! Matt > -Original Message- > From: Steven J. Owens [mailto:[EMAIL PROTECTED]] > Sent: Tue

Getting SSL to work on Win2k/Tomcat/Apache

2003-02-14 Thread Warden, Matt
Tomcat Users: First, the setup: Windows 2000 Server Apache 2.0.44 Tomcat 4.1.18 Now, the problem: I know that there is no supported method for Apache2 on Windows to use SSL (right?). However, I would still like to stick with Apache for non-Servlet/JSP requests for

RE: MySql connection pool difficulties

2003-02-13 Thread Raible, Matt
driverClassName org.gjt.mm.mysql.Driver > -Original Message- > From: Tom O'Neil [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 13, 2003 2:25 PM > To: [EMAIL PROTECTED] > Subject: MySql connection pool difficulties > > > After scouring the

RE: Log4J and tomcat

2003-02-13 Thread Raible, Matt
I've never used a log4j.xml file, just a log4j.properties file. If your log4.xml file is in WEB-INF/classes and log4j.jar in WEB-INF/lib - I wouldn't know how to help you. I'd venture a guess that it has something to do with your logging configuration in your .xml fi

RE: Form based security

2003-02-13 Thread Raible, Matt
re. If you're using form-based authentication - Struts will play nicely with it. HTH, Matt > -Original Message- > From: Sloan Seaman [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 13, 2003 8:52 AM > To: Tomcat Users List > Subject: Re: Form based security >

RE: startup script

2003-02-13 Thread Raible, Matt
Here's how I've done it: http://tinyurl.com/5s4x HTH, Matt > -Original Message- > From: Jon Roberts [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 13, 2003 8:55 AM > To: Tomcat Users > Subject: startup script > > > Does anybody have an /e

RE: Form based security

2003-02-13 Thread Raible, Matt
Here's how I solved your issue: http://tinyurl.com/5s4e HTH, Matt > -Original Message- > From: Sloan Seaman [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 13, 2003 8:32 AM > To: Tomcat Users List > Subject: Re: Form based security > > > Ok, I f

Very newbie question, Bootstrap: Class loader creation threw exception

2003-02-12 Thread Matt
at org.apache.catalina.startup.ClassLoaderFactory.createClassLoader(Comp iled Code) at org.apache.catalina.startup.Bootstrap.main(Compiled Code) I am running Windows XP SP1. (I know, I should be using linux). Any help would be appreciated. Thanks Matt Carl

Re: Valve Access Log Pattern - combined

2003-02-07 Thread Matt Fury
It started working. That was odd. I am so glad this feature is avaiable. There are people out there that think Tomcat doesn't do proper log files. Webalizer handles these great!! Thanks for the help. -Matt --- Matt Fury <[EMAIL PROTECTED]> wrote: > Has anyone gotten "com

Valve Access Log Pattern - combined

2003-02-07 Thread Matt Fury
Has anyone gotten "combined" to work as a pattern. According to the docs, combined is supposed to add Referrer and User Agent? Am I reading this wrong? The logs didn't show anything different. And I believe the User Agent was in there to begin with but I really want the Referrer. Any thoughts? Tha

RE: how to block

2003-02-06 Thread Warden, Matt
On Feb 6, Shapira, Yoav had something to say about RE: how to block >Hi, >Google is your friend: >http://forums.devshed.com/archive/1/2000/08/2/1298 If you use this as your sole solution, I'll turn off Javascript and nail your server simply for principle. Ok, not really. If you use a client-si

RE: SendMailServlet - problem, debugging tips

2003-02-06 Thread Raible, Matt
Eclipse has a nice tomcat plugin that you can set breakpoints in servlets... works awesome for me. > -Original Message- > From: chris schild [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 06, 2003 5:38 PM > To: tomcat > Subject: SendMailServlet - problem, debugging tips > > > Woul

RE: BUG...? java.sql.SQLException: Cannot load JDBC driverclass 'nul l'

2003-02-06 Thread Raible, Matt
Yes. When it was in webapps/cct with a path of "", it appeared that Tomcat was trying to load it twice. Once I configured 2 cct.xml files in webapps, one with path="/cct" and one with path="", the problem went away. Matt > -Original Message- &g

RE: BUG...? java.sql.SQLException: Cannot load JDBC driverclass 'nul l'

2003-02-06 Thread Raible, Matt
bapps/ROOT folder. HTH, Matt > -Original Message- > From: Turner, John [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 06, 2003 9:54 AM > To: 'Tomcat Users List' > Subject: RE: BUG...? java.sql.SQLException: Cannot load JDBC driver > class 'nul l&#x

RE: [BUG?] Can't set my app as root app without errors

2003-02-04 Thread Raible, Matt
Moving my app to ROOT and changing my context's path to point to ROOT vs. appname fixed the problem. I believe this is a bug, so I'll enter it in bugzilla. Thanks, matt > -Original Message- > From: Filip Hanik [mailto:[EMAIL PROTECTED]] > Sent: Friday, January 31

RE: form based authentication problem

2003-02-04 Thread Raible, Matt
If you map the filter to the same url-pattern as your protected resource, it will be called immediately after someone authenticates. HTH, Matt > -Original Message- > From: Ralf Lorenz [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 04, 2003 6:59 AM > To: Tomcat Users Li

<    2   3   4   5   6   7   8   9   10   11   >