RE: mod_jk2 vs. the others (was: mod_webapp random error)

2003-02-11 Thread Mike Jackson
time to time. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 11:13 AM To: 'Tomcat Users List' Subject: RE: mod_jk2 vs. the others (was: mod_webapp random error) JK2 is technically

RE: TOMCAT versus ORACLE

2003-02-11 Thread Mike Jackson
-=- mike jackson [EMAIL PROTECTED] -Original Message- From: Kenny G. Dubuisson, Jr. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 11:13 AM To: Tomcat Users List Subject: Re: TOMCAT versus ORACLE Here is a little servlet I threw together for you. You will have

RE: mod_jk2 vs. the others (was: mod_webapp random error)

2003-02-11 Thread Mike Jackson
) looked. Been too busy with work to play lately. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 11:23 AM To: 'Tomcat Users List' Subject: RE: mod_jk2 vs. the others (was: mod_webapp random

RE: mod_jk2 vs. the others

2003-02-11 Thread Mike Jackson
I run mod_jk on unixware without a problem even. :) But with an older apache 1.3.x and tomcat 3.3.x... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 11:49 AM To: 'Tomcat Users List

RE: java/jsp dynamic data

2003-02-11 Thread Mike Jackson
You could look into doing an applet with rmi back to the server it came from. Or do an EJB message bean, where the message queue is the server that the applet came from (don't know if you can do this, but it's like that you can). --mikej -=- mike jackson [EMAIL PROTECTED] -Original

RE: MY ATTITUDE

2003-02-11 Thread Mike Jackson
nearly everyone else who criticized you), I have nothing further to say to you. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Steve Burrus [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 2:31 PM To: Tomcat Users List; [EMAIL PROTECTED] Subject: RE: MY

RE: Place to look for offtopic java/jsp info

2003-02-11 Thread Mike Jackson
That's a very good site. I like servlets.com as well. Not as useful, but still interesting. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Oscar Carrillo [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 3:48 AM To: Tomcat Users List Subject

RE: about singletons (ot)

2003-02-10 Thread Mike Jackson
. There's some recipes out there for generating thread safe code, but quite frankly I don't remember them any more. But there's some really good books that we mentioned by other people, the addison westley book is good, and the o'reilly threads book is good. --mikej -=- mike jackson [EMAIL

RE: Session lost between HTTPS and HTTP

2003-02-04 Thread Mike Jackson
Hijacking is possible for any man-in-the-middle situation. That's one of the reasons that going https for just the login is a bad idea (tm). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Zabel, Ian [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003

auto gen config file for jk2

2003-01-31 Thread Mike Jackson
-=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: JSP Whitespace

2003-01-31 Thread Mike Jackson
Or you could rewrite it as a servlet, that's the hardest, but the most certain solution. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 11:47 AM To: Tomcat Users List Subject: RE: JSP

building native connectors

2003-01-30 Thread Mike Jackson
. Anyway, I'm hoping someone can point me in the right direction. --mikej -=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: building native connectors

2003-01-30 Thread Mike Jackson
I haven't tried that yet, mostly I'm getting frustrated with a lack of C skills. It's been a long time since I did C. Then again I'm also getting really, really tired of the boss' insistence on using Unixware. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From

RE: building native connectors

2003-01-30 Thread Mike Jackson
I just found that if you change the hard coded KPIC in libtool to fPIC that ant native seems to work fine. I haven't checked the outputed code as of yet. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: about singletons (ot)

2003-01-28 Thread Mike Jackson
methods, but synchronized code blocks) to control threads using that resource. You could probably implement a similiar system if everything were static, but I wouldn't want to try (it's more work than you think). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From

RE: about singletons (ot)

2003-01-28 Thread Mike Jackson
Me too, we learn by doing... :) That's also the reason that I follow the pattern as it is stated now, rather than thinking I can make it a little different. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED]] Sent: Tuesday

RE: requestdispatcher

2003-01-24 Thread Mike Jackson
you've dispatched to. If my little example doesn't help, post a snippet and I'm sure an expert can help... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Felipe Schnack [mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 6:43 AM To: Tomcat Users List

RE: INSECURE to rely on sendRedirect (??)

2003-01-24 Thread Mike Jackson
not clear on how filters work exactly (haven't needed to use them yet), but when you're using the header type redirect you need to make sure that you're not going to send back anything other than the redirect. If you do send something most clients will work properly, but some won't. --mikej -=- mike

RE: INSECURE to rely on sendRedirect (??)

2003-01-24 Thread Mike Jackson
is fast and easy I haven't seen the need to branch out into new things yet. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 10:20 AM To: Tomcat Users List Subject: Re: INSECURE to rely

RE: INSECURE to rely on sendRedirect (??)

2003-01-24 Thread Mike Jackson
the ease of use for the end user. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 10:28 AM To: Tomcat Users List Subject: Re: INSECURE to rely on sendRedirect (??) Mike Jackson wrote

RE: servlets that forward to other servlets

2003-01-23 Thread Mike Jackson
of bad designs, I'd look at the book Bitter Java. You can d/l a pdf of the book at www.theserverside.com --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 10:19 AM To: Tomcat Users List

RE: servlets that forward to other servlets

2003-01-23 Thread Mike Jackson
You get a request dispatcher from the request object and then call the forward or include methods on it. I just tend to short-hand things with the work dispatch (since it's a request dispatcher and I only typically use it for forwards). --mikej -=- mike jackson [EMAIL PROTECTED

RE: servlets that forward to other servlets

2003-01-23 Thread Mike Jackson
Oops, ment to say word not work. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Mike Jackson [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 11:24 AM To: Tomcat Users List Subject: RE: servlets that forward to other servlets You get a request

RE: Checking if Tomcat is up

2003-01-13 Thread Mike Jackson
not responding at `date` | mail pager@somewhere -s possible tomcat problem fi done Some of the syntax may be incorrect, you'd have to fix it if you cared. I'm typing this from memory. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Scott Purcell

RE: Connection pooling BasicDataSource parameters

2002-11-12 Thread Mike Jackson
A do-nothing servlet started a load time that uses a database connection? Kinda silly, but it will take care of the problem. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Sinclair, Alan (CORP, GEAccess) [mailto:alan.sinclair;geaccess.com] Sent: Tuesday

RE: Shutting down and restarting Tomcat

2002-11-07 Thread Mike Jackson
Try putting a delay in, sometimes tomcat doesn't quickly enough exit for you to immediately restart. At least not on my box (which is linux). However if you're using Tomcat4.x you can stop and restart webapps directly, so you may not really need to restart all of tomcat... --mikej -=- mike

RE: Servlet redirection problem

2002-11-01 Thread Mike Jackson
While redirect? You could do the parameters as request attributes and use a dispatcher... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Tam, Michael [mailto:mtam;PFC.Forestry.CA] Sent: Friday, November 01, 2002 4:13 PM To: Tomcat UserList (E-mail) Subject

RE: Servlet redirection problem

2002-11-01 Thread Mike Jackson
Oops, I ment to say Why redirect... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Mike Jackson [mailto:mjackson;cdi-hq.com] Sent: Friday, November 01, 2002 4:24 PM To: Tomcat Users List Subject: RE: Servlet redirection problem While redirect? You could

RE: DBCP Woes!

2002-10-30 Thread Mike Jackson
I'll second that statement. Where I use it via straight jdbc, I've never, and I repeat never, heard about anyone having a negative experience with. Or even ok experiences. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Iain Sanderson [mailto:sande010

RE: DBCP Woes! Ahaa!

2002-10-30 Thread Mike Jackson
If it's the common setup then it's probably 10 connections. If it's by webapp then it ought to be 50 connections. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: neal [mailto:nealcabage;yahoo.com] Sent: Wednesday, October 30, 2002 2:22 AM To: Tomcat Users

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
Poolman works nicely, I have little to no problems with it. Then again I haven't used DBCP. But you'd still have had the exhasted connections problem with poolman. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: neal [mailto:nealcabage;yahoo.com] Sent

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
beta and the last release version. I'd be happy to email them to you if you wish. And I could even through in an example config xml file (points at oracle). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: neal [mailto:nealcabage;yahoo.com] Sent: Tuesday, October

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
--mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: neal [mailto:nealcabage;yahoo.com] Sent: Tuesday, October 29, 2002 4:52 PM To: Tomcat Users List Subject: RE: DBCP Woes! Interesting. Yeah, this error occassionally pops up and ocassionally goes away. When its

RE: DBCP Woes!

2002-10-28 Thread Mike Jackson
I haven't looked at the docs, but does DBCP support timing out checked out connections? Not just the connection itself, but the user's checkout? That's the thing that I really like best about poolman... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Craig R

RE: Tomcat stop when exit telnet session

2002-10-04 Thread Mike Jackson
Try nohup tomcat4 run startup.log 21 . There's something in the way that tomcat starts within the catalina.sh file that seems to confuse things. This is also a problem for me on version 3.3 of tomcat, but I run on Unixware not solaris. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Static content via AJP (specifically mod-jk2)

2002-09-30 Thread Mike Jackson
a mapping for the proper directories so that apache can find the html and other files. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Raoon Kundi [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:02 PM To: [EMAIL PROTECTED] Subject: Static content

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-09-30 Thread Mike Jackson
What jdk are you using? I use suse 8, tomcat 3.3.x, apache 1.3.x, mod_jk, etc with IBM's 1.3 jdk and don't experience anything like that. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002

RE: Can someone PLEASE tell me why tomcat uses so much CPU???

2002-09-30 Thread Mike Jackson
JDK 1.4.x. See if that helps things any. Once the new JDK's are installed it should be a simple matter of changing your JAVA_HOME or in my case changing a symbolic link. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Brandon Cruz [mailto:[EMAIL PROTECTED

RE: Poolman Configuration

2002-09-23 Thread Mike Jackson
Poolman is on sourceforge now. I don't know if any active development is occuring or not, but it runs extremely well for me. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Dennis Muhlestein [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 1:33 PM

RE: Poolman Configuration

2002-09-23 Thread Mike Jackson
Use poolman. Poolman good. If you can wait until next week I can send you a copy of my config file (out of the office until then). And I'll even throw in a sql server example as well (even though I use Oracle primarily). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message

RE: Tomcat Email - JavaMail Advice.

2002-09-23 Thread Mike Jackson
recreating objects needlessly... Regardless, it can't hurt to try. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Alex Wallace [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 10:22 AM To: Tomcat Users List Subject: Tomcat Email - JavaMail Advice. I

RE: Broken Pipe Errors

2002-09-23 Thread Mike Jackson
. Don't know if that'll help, but maybe it will. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Anthony Milbourne [mailto:[EMAIL PROTECTED]] Sent: Monday, September 23, 2002 10:11 AM To: 'Tomcat Users List' Subject: Broken Pipe Errors Hi I have an install of Apache

RE: Java Process hanging

2002-09-23 Thread Mike Jackson
, and probably a lot of debug output. Personally I just ignore the problem and in my own shutdown script I look to see that tomcat really shutdown. If it doesn't kill -9 will get rid of it nicely. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Joel Maisenhelder [mailto:[EMAIL

RE: Database write delay?!?!?!?

2002-08-30 Thread Mike Jackson
to reboot in a couple of monthes, and I don't have the resource problems that I was having. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Josh G [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 4:16 PM To: Tomcat Users List Subject: Re: Database

RE: OOM vs. Out of CPU

2002-08-29 Thread Mike Jackson
Shouldn't it be a java.lang.OutOfCPUException? Sorry, strange mood... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Michael Nicholson [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 9:30 AM To: Tomcat Users List Subject: OT: OOM vs. Out of CPU

RE: Log out Screen

2002-08-29 Thread Mike Jackson
If the session expires aren't they already logged out? You don't have any state for them saved at that point. It'd make more sense (to me at least) to redirect at that point to a login page. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Ravindra K. Bhat

RE: Log out Screen

2002-08-29 Thread Mike Jackson
That works, but I'd use a servlet to manage all page accesses and a request dispatcher so that the user's machine doesn't know that it's been redirected. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Dan Lipofsky [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: Log out Screen

2002-08-29 Thread Mike Jackson
Does it matter when the redirect is done? If the user sits on the page without the session being valid where's the problem with that? You just want to make sure that they are valid when the pages that are secured are being accessed. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Log out Screen

2002-08-29 Thread Mike Jackson
want to make sure that they are valid when the pages that are secured are being accessed. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Srinadh Karumuri [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 29, 2002 10:35 AM To: Tomcat Users List

RE: Database write delay?!?!?!?

2002-08-29 Thread Mike Jackson
Are you using the JDBC-ODBC bridge? If so then I'd not worry about the delayed writes, I'd worry about restarting your app often (daily/weekly), and your database engine for that matter. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Josh McDonald [mailto

RE: connection pooling on tomcat

2002-08-28 Thread Mike Jackson
Poolman has the ability to check the connection prior to using it, and if the connection isn't valid to create new ones to replace the closed ones. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Glenn Nielsen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August

RE: STILL need help w. Tomcat installation!!

2002-08-28 Thread Mike Jackson
System applet strikes me as either NT, 2000, or XP. But I could be wrong. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: micael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 10:43 AM To: Tomcat Users List Subject: Re: STILL need help w

RE: sweeping stale connections - Commons DBCP and Tomcat 4.1.9

2002-08-27 Thread Mike Jackson
Switch to poolman, I've never had this with it. And I've used it with Informix, Oracle, Postgres, Mysql and DB2. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Paul Phillips [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 9:04 PM To: Tomcat Users

RE: OUT OF MEMORY ERROR

2002-08-26 Thread Mike Jackson
great and also seems to be less filling (memory filling that is). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Patrick Codere [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 3:15 PM To: 'Tomcat Users List' Subject: OUT OF MEMORY ERROR Hi everyone

RE: com.orielly.servlet File Upload package

2002-08-21 Thread Mike Jackson
You know Jason's license isn't exactly free-ware. It's free only if you're not commerical. Or at least it was that way. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Raju Lokhande [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 10:10 AM

RE: OFF-TOPIC: Pointers to CallableStatement docs?

2002-08-20 Thread Mike Jackson
(); db.commit(); } The db object is a wrapper that I have around the database connection. Otherwise it should be self-explainitory. Hope this helps some... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent

RE: Tomcat Crashes

2002-08-20 Thread Mike Jackson
problems. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Kingston Sew [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 5:26 AM To: [EMAIL PROTECTED] Subject: Tomcat Crashes Hi I am currently running Tomcat 4.0.4 Server on a Windows 2000 Server

RE: servlet-jdbc-SQL server

2002-08-19 Thread Mike Jackson
it in their documentation (there's a guide oracle vs ms sql in the documentation). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Matt Brennan [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 8:36 AM To: [EMAIL PROTECTED] Subject: servlet-jdbc-SQL server

RE: It would be great IF somebody answered me, ONCE, for change :(

2002-08-19 Thread Mike Jackson
You might want to close your database connection, or at least return it to the pool (I don't see you doing that, it ought to be after you close the prepared statement). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Luminous Heart [mailto:[EMAIL PROTECTED

RE: It would be great IF somebody answered me, ONCE, for change :(

2002-08-19 Thread Mike Jackson
return a null instead of a connection. But that's just a guess. Also, you might was to also turn on logging (debug level) in poolman as well so that you can watch the connections getting checked out and in. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Luminous

RE: It would be great IF somebody answered me, ONCE, for change :(

2002-08-19 Thread Mike Jackson
Add the following and the limit will be a soft limit (it can go above as needed) maximumSofttrue/maximumSoft --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Luminous Heart [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 8:50 AM To: Tomcat Users

RE: OFF-TOPIC: Pointers to CallableStatement docs?

2002-08-19 Thread Mike Jackson
I don't think there is one, it'd be really nice if there was however. There is some good documentation available from Sun, but it doesn't get into real examples (like what you're doing). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto

RE: Craig, PoolMan, latest version WAS the problem.

2002-08-19 Thread Mike Jackson
it. That should also elminate the problem, but you'd have to add some code to handle when it's not there (retry acquiring a connection most likely). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Luminous Heart [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 9:54

RE: It would be great IF somebody answered me, ONCE, for change :(

2002-08-19 Thread Mike Jackson
timeout is more). Seems to work pretty well for me. Much better than that connection pool that I wrote. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Luminous Heart [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 9:58 AM To: Tomcat Users List Subject: RE

RE: Design question

2002-08-19 Thread Mike Jackson
) as a parameter. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 10:09 AM To: 'Tomcat Users List' Subject: RE: Design question I'm trying to accomplish the same thing-- How do you authenticate

RE: pleeeese...

2002-08-19 Thread Mike Jackson
What connection pool are you using? I know poolman to some extent... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Felipe Schnack [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 10:18 AM To: [EMAIL PROTECTED] Subject: plse... Anyone

RE: Design question

2002-08-19 Thread Mike Jackson
the token, and it's valid then they're ok to deal with. This of course has some issues, but it's one way of doing it. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Louis Voo [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 10:26 AM To: Tomcat Users List

RE: Design question

2002-08-19 Thread Mike Jackson
not to big. It'd probably be easier to use a nice short token however. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 10:45 AM To: 'Tomcat Users List' Subject: RE: Design question That's

RE: ?? Tomcat and System.out ??

2002-08-19 Thread Mike Jackson
problems so I use poolman instead. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: neal [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 3:01 PM To: Tomcat Users List Subject: RE: ?? Tomcat and System.out ?? I recently read that Java presumes the JDBC

RE: Persistent Connection

2002-08-16 Thread Mike Jackson
probably also change it under windows, but I wouldn't have a clue how to do that. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Taral Shah [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 2:40 AM To: Tomcat Users List Subject: Persistent Connection

RE: Oracle classes not found

2002-08-15 Thread Mike Jackson
That application doesn't run through tomcat so you'll need to specify the location of the oracle jar (or zip) file in your classpath when you try to compile or run the application. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Kenny G. Dubuisson, Jr. [mailto

RE: JDBC MySQL again

2002-08-12 Thread Mike Jackson
:1114/contact_mgr, username, password ); --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jan Willem Penterman [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 8:15 AM To: [EMAIL PROTECTED] Subject: JDBC MySQL again Hi, I searched

RE: Servlet to JDBC connection

2002-08-09 Thread Mike Jackson
the port is correct. Also, if your database is running on the same machine as the web server then consider using the loopback address instead of the the real ip address of the server. Sometimes that'll be more efficient. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message

RE: Trying to work with JDBC

2002-08-08 Thread Mike Jackson
that you're using to connect to the database. If you don't post a message and get some more help. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Nagpal, Vikas [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 08, 2002 1:22 PM To: '[EMAIL PROTECTED]' Subject

RE: Trying to work with JDBC

2002-08-08 Thread Mike Jackson
He might still need the nlscharset classes to support his character encoding, those are the really big classes, the base jdbc classes are pretty small. And why isn't this guy posting to the list directly? --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Durham

RE: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Mike Jackson
consider upgrading to the 9i version of the jars and see what happens there (I run 9i also, but on another box), this is the current setup that I'm running. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Charles Trader [mailto:[EMAIL PROTECTED]] Sent: Friday

RE: JDBC Connection Pools

2002-08-02 Thread Mike Jackson
It didn't when I started doing things, so I started using poolman (on sourceforge). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Chris Ruegger [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 8:02 AM To: Tomcat Users List Subject: JDBC Connection

RE: Request Dispatcher

2002-08-01 Thread Mike Jackson
I don't think so, at least I've never been able to do it. What I've done is added attributes to the request (see the javadocs for details). Attributes only work with objects, but that's both an advantage and a disadvantage. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message

RE: Tomcat 4 Suse 8

2002-08-01 Thread Mike Jackson
I didn't have any problems, I'm running jdk1.3 from IBM and the only thing I did was to add JAVA_HOME at the top of the catalina.sh file. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Steve Russell [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002

RE: How to enable Tomcat's Apache Auto-config

2002-07-30 Thread Mike Jackson
config, otherwise none of this will do anything for you (it won't be loaded). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: JY - June Young [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 8:49 AM To: [EMAIL PROTECTED] Subject: How to enable Tomcat's

RE: JDBC Pool Manager

2002-07-29 Thread Mike Jackson
poolman... It's available on source forge. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Roger Maltby [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 8:28 AM To: Tomcat User (E-mail) Subject: JDBC Pool Manager I need to have a connection

RE: JDBC Pool Manager

2002-07-29 Thread Mike Jackson
Here's the specific url: http://sourceforge.net/projects/poolman/ --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Roger Maltby [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 8:28 AM To: Tomcat User (E-mail) Subject: JDBC Pool Manager I need

RE: what is warp?

2002-07-29 Thread Mike Jackson
Web Application Remote (Access|Control)+ Protocol, or at least that's what the source docs say. It goes really fast? :) --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Zhenxin Wang [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 2:13 PM To: [EMAIL

RE: Site Security Issue

2002-07-26 Thread Mike Jackson
And if you can afford it for your project get a good highend firewall that inspects the requests prior to allowing them through. And a good IDS system of some sort, preferably one that'll work with your firewall or that will at least send out alerts. --mikej -=- mike jackson [EMAIL

RE: Routing With tomcat

2002-07-25 Thread Mike Jackson
servers co-exist on the same physical machine. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Nicolas Brasseur [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 9:14 AM To: Tomcat Users List Subject: RE: Routing With tomcat Thanks for paying attention to my

RE: Hardening Tomcat 3.2.4

2002-07-25 Thread Mike Jackson
will link up to their PIX firewall to do this, but the PIX is only a stateful port blocking firewall. You'd need another better firewall to be sure of blocking everything in a more secure manner. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto

RE: Hardening Tomcat 3.2.4

2002-07-25 Thread Mike Jackson
Oh, and then you'd of course want to remove all the webapps that you don't use. But that's kinda a no-brainer. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 10:23 AM To: Tomcat Users

RE: Routing With tomcat

2002-07-25 Thread Mike Jackson
and easiest solution and it's what routers are made to do. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Nicolas Brasseur [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 10:24 AM To: Tomcat Users List Subject: RE: Routing With tomcat So, you confirm Tomcat

RE: Routing With tomcat

2002-07-25 Thread Mike Jackson
access web-mail server. Also, I don't know how non-standard 8080 or 8000 would be for web servers, it's not that uncommon on the internet. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 10:43 AM

RE: Problem

2002-07-25 Thread Mike Jackson
there. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Derek Huffman [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 10:44 AM To: [EMAIL PROTECTED] Subject: Problem We are running a site using struts and tomcat with JSP. All of our qa is done using tomcat

RE: Hardening Tomcat 3.2.4

2002-07-25 Thread Mike Jackson
to ports it generally acceptable when you're not dealing with particularily sensitive data. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 11:01 AM To: Tomcat Users List Subject: Re: Hardening

RE: Hardening Tomcat 3.2.4

2002-07-25 Thread Mike Jackson
Whatever web server which is acting as the front end to tomcat is still vulnerable to strange requests (ie code red and the like), that's what the higher end firewalls prevent. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED

RE: Weird errors in iis_redirect.log

2002-07-25 Thread Mike Jackson
There's a filter that you can install in IIS to block those (see microsoft's web site, I don't remember the exact name but it's something like urlfilter). But what you're seeing is people trying to hack your box through known IIS security holes. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Weird errors in iis_redirect.log

2002-07-25 Thread Mike Jackson
Are you sure you're not forwarding everything to tomcat? That would still indicate someone trying to hack you. As to why they're not in the IIS log, I have no clue. I don't use IIS and tomcat, only apache and tomcat. For IIS I typically use jrun. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Weird errors in iis_redirect.log

2002-07-25 Thread Mike Jackson
If you're getting those messages in your tomcat connector log then I'd think you're probably doing some forwarding. Do you have jsp's working? --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: news [mailto:[EMAIL PROTECTED]]On Behalf Of George Hester Sent

RE: How to abort the webapp load/deployment

2002-07-24 Thread Mike Jackson
. If this is greek I can give you a better example. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Extance, Paul [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:13 PM To: '[EMAIL PROTECTED]' Subject: How to abort the webapp load/deployment Hello

RE: Multiple HttpServletRequest objects

2002-07-24 Thread Mike Jackson
. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Rutledge, Aaron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 2:05 PM To: Tomcat Users List (E-mail) Subject: Multiple HttpServletRequest objects Is it possible to have more than one HttpServletRequest

RE: Multiple HttpServletRequest objects

2002-07-24 Thread Mike Jackson
Either hidden fields or you'd just read it in from the session. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Rutledge, Aaron [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 3:02 PM To: Tomcat Users List Subject: RE: Multiple HttpServletRequest

RE: Frame annoyance

2002-07-24 Thread Mike Jackson
I think the answer is javascript. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Rick Fincher [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 3:37 PM To: Tomcat Users List Subject: Frame annoyance Hi, I have a webapp that uses Tomcat login security

RE: determining URL selected prior to redirection for j_security_check?

2002-07-24 Thread Mike Jackson
If you're trying to do security you should remember that the Referer header can be forged with little to no problem. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Durham David Cntr 805CSS/SCBE [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 3:38 PM

<    1   2   3   4   >