RE: my first servlet

2003-02-13 Thread Mike Jackson
at classes should start capitalized (Db2xml) and that subsequent words in the class name should also be capitalized (Db2Xml). I don't have a link to the guidelines, but I'm sure someone else can offer one. --mikej -=- mike jackson [EMAIL PROTECTED] > -Original Message---

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 Use

RE: MY ATTITUDE

2003-02-11 Thread Mike Jackson
have 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 PRO

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] >

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: &

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

2003-02-11 Thread Mike Jackson
ven't (to be completely honest) 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

RE: TOMCAT versus ORACLE

2003-02-11 Thread Mike Jackson
mikej -=- 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 tog

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

2003-02-11 Thread Mike Jackson
blems from 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_web

RE: TOMCAT versus ORACLE

2003-02-11 Thread Mike Jackson
It's part of the binary distribution of poolman, in the poolman-webapp folder. --mikej -=- mike jackson [EMAIL PROTECTED] > -Original Message- > From: Alberto A C A S Magalhães [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 11, 2003 11:01 AM > To: 'Tomcat

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

2003-02-11 Thread Mike Jackson
Should I be using mod_jk with apache 2.x? I thought that mod_jk2 was for apache 2.x mostly, and that mod_jk was geared more towards use with apache 1.3.x. For that matter I've had all sorts of fun getting mod_jk2 to work, but mod_jk is easy... --mikej -=- mike jackson [EMAIL PROT

RE: TOMCAT versus ORACLE

2003-02-11 Thread Mike Jackson
Setup poolman, there's a test jsp page you can use to access the database via http. --mikej -=- mike jackson [EMAIL PROTECTED] > -Original Message- > From: Alberto A C A S Magalhães [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 11, 2003 10:42 AM > To: &

RE: TOMCAT versus ORACLE

2003-02-11 Thread Mike Jackson
ack positive then you have an oracle listener running. Does that do what you need? --mikej -=----- mike jackson [EMAIL PROTECTED] > -Original Message- > From: Alberto A C A S Magalhães [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 11, 2003 10:38 AM > To: Tomcat Users

RE: about singletons (ot)

2003-02-10 Thread Mike Jackson
s through the method prior to our finish. However sucky examples and all making code thread safe is a lot of work. 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 w

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]] > Se

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 L

auto gen config file for jk2

2003-01-31 Thread Mike Jackson
y to do it for jk2... --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 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: Turne

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] > -

building native connectors

2003-01-30 Thread Mike Jackson
hem to -fPIC, but it doesn't seem to help any. 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: 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 PROTECT

RE: about singletons (ot)

2003-01-28 Thread Mike Jackson
an synchronized 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] > -

RE: INSECURE to rely on sendRedirect (??)

2003-01-24 Thread Mike Jackson
rly intense background checks. So my balance is more towards 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 Lis

RE: INSECURE to rely on sendRedirect (??)

2003-01-24 Thread Mike Jackson
Since my system 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 &g

RE: INSECURE to rely on sendRedirect (??)

2003-01-24 Thread Mike Jackson
d, I'm 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 som

RE: requestdispatcher

2003-01-24 Thread Mike Jackson
ute should be available in the page 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]] > Sen

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

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 PROT

RE: servlets that forward to other servlets

2003-01-23 Thread Mike Jackson
ork isn't so important. Also, if you want to look at design from the perspective 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

RE: Checking if Tomcat is up

2003-01-13 Thread Mike Jackson
echo "Tomcat 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

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@;g

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 -=

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 pro

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 User

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, 2

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

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
/mj/poolman-2.1-b1.tar.gz --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 o

RE: DBCP Woes!

2002-10-29 Thread Mike Jackson
x27;s just a guess. If you want to try out poolman I have the .tar.gz's for both the last 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 jacks

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@;y

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---

RE: Tomcat stop when exit telnet session

2002-10-04 Thread Mike Jackson
Try "nohup tomcat4 run > startup.log 2>&1 &". 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 -=-

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

2002-09-30 Thread Mike Jackson
the current Sun 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 Cru

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: M

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

2002-09-30 Thread Mike Jackson
sure that you have 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: [EM

RE: Java Process hanging

2002-09-23 Thread Mike Jackson
can be a lot of work, 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 Mess

RE: Broken Pipe Errors

2002-09-23 Thread Mike Jackson
front end. 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 H

RE: Tomcat Email - JavaMail Advice.

2002-09-23 Thread Mike Jackson
e you 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 A

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 Me

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

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

2002-08-30 Thread Mike Jackson
r interface I haven't had 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 >

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

RE: Log out Screen

2002-08-29 Thread Mike Jackson
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 &

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 PROT

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 PR

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- > F

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 > Subj

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: ST

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]] >

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

RE: OUT OF MEMORY ERROR

2002-08-26 Thread Mike Jackson
e. I use Oracle's XSQL Servlet, seems to work 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 &g

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,

RE: Tomcat Crashes

2002-08-20 Thread Mike Jackson
me similar 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 ru

RE: OFF-TOPIC: Pointers to CallableStatement docs?

2002-08-20 Thread Mike Jackson
; deleted = true; cstmt.close(); 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

RE: ?? Tomcat and System.out ??

2002-08-19 Thread Mike Jackson
;s JDBC pooling caused me some 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

RE: Design question

2002-08-19 Thread Mike Jackson
't) then you could pass around a serialized java object, assuming it's 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]] > S

RE: Design question

2002-08-19 Thread Mike Jackson
aton, if your user can present 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]] > Sen

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] > Su

RE: Design question

2002-08-19 Thread Mike Jackson
used) 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 try

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

2002-08-19 Thread Mike Jackson
ns in the pool (user 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:

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

2002-08-19 Thread Mike Jackson
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: M

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- >

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) true --mikej -=- mike jackson [EMAIL PROTECTED] > -Original Message- > From: Luminous Heart [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 19, 2002 8:50 AM > To: Tomcat Users List &

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

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:[EMAI

RE: servlet-jdbc-SQL server

2002-08-19 Thread Mike Jackson
happens. Or it might help to find 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 >

RE: Persistent Connection

2002-08-16 Thread Mike Jackson
d that you do so. The default time period is about 4 minutes as I recall. You can 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 PROTEC

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

RE: JDBC MySQL again

2002-08-12 Thread Mike Jackson
c:msql://www.myserver.com: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 &

RE: Servlet to JDBC connection

2002-08-09 Thread Mike Jackson
slash after 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 PROTEC

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

RE: Trying to work with JDBC

2002-08-08 Thread Mike Jackson
ot get anywhere. As for your Java Beans and JSPs, you might have better luck after you fix the url 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- &

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 Lis

RE: Oracle 8.1.7 JDBC classes

2002-08-02 Thread Mike Jackson
You might 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:[E

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:

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 PROTECT

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

2002-07-30 Thread Mike Jackson
ine to your httpd.conf in your apache 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

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, Ju

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) > Subjec

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 > &

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 [

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 O

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 [

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

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

RE: Hardening Tomcat 3.2.4

2002-07-25 Thread Mike Jackson
re right, blocking access 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:

RE: Problem

2002-07-25 Thread Mike Jackson
e sure they're 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 ou

RE: Routing With tomcat

2002-07-25 Thread Mike Jackson
ork (ie the internet) can 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 PR

RE: Routing With tomcat

2002-07-25 Thread Mike Jackson
That's the simpliest 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 W

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 T

RE: Hardening Tomcat 3.2.4

2002-07-25 Thread Mike Jackson
isco's IDS 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:

RE: Routing With tomcat

2002-07-25 Thread Mike Jackson
. That is unless the two 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 Thank

<    1   2   3   4   >