RE: R: JSTL Question

2005-08-09 Thread Mike Jackson
to setup rules for what types of page requests are allowed which has the effect of giving you a content filtering firewall in front of the web server. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Tom Spence [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 09

RE: development environment

2005-04-22 Thread Mike Jackson
1600x1200 --mikej -=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: book for servlet programming

2005-03-17 Thread Mike Jackson
things, but it's a good solid starter book in my opinion. And if you don't need it anymore it works good for crushing small objects. :) --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: brian [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 4:25 PM

filters

2005-02-15 Thread Mike Jackson
be trying to do this? --mikej -=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Getting the classpath

2005-01-20 Thread Mike Jackson
How can I get the current classpath at runtime as seen by any class in a particular context? I know I can run System.getProperty( java.class.path ), but that seems to just show me the classpath at startup of tomcat rather than for objects within the webapp. --mikej -=- mike jackson [EMAIL

RE: Getting the classpath

2005-01-20 Thread Mike Jackson
Crude works for me. I'm just trying to figure out why jython can't see the classes that should be in my WEB-INF/classes folder. Or for that matter to make sure that folder is in the classpath. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Tim Funk [mailto

RE: [OT] a website run on Tomcat and powered by Struts

2005-01-19 Thread Mike Jackson
You have an extra title/title at the top of the page for some reason. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: t t [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 19, 2005 6:59 AM To: Tomcat Users List Subject: [OT] a website run on Tomcat

RE: java.lang.OutOfMemoryError Tomcat4.1.30

2005-01-06 Thread Mike Jackson
the ### should be the amount of memory you want to allocate. Generally for production servers I typically allow tomcat at least 256 megs of ram using the option -Xmx256M. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: kjiang [mailto:[EMAIL PROTECTED] Sent

RE: Need Consultant $$ [RE: Oracle 9i client connection to 8i database]

2005-01-05 Thread Mike Jackson
Try the type 4 driver and make sure that you're not NAT'ing the addresses anywhere. Oracle doesn't like NATs, you'll need a sqlnet proxy in order for something like that to work. I've used Cisco PIX firewalls which have a sqlnet proxy built in. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Tomcat on PDA

2004-11-08 Thread Mike Jackson
to run tomcat, but you should be able to run your own custom built http server with enough playing around. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, November 08, 2004 10:41 AM To: [EMAIL

RE:

2004-07-20 Thread Mike Jackson
What are these BMP files coming from this guy? --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Craigmcc [mailto:[EMAIL PROTECTED] Sent: Monday, July 19, 2004 11:33 PM To: Tomcat-user Subject: Re

RE:

2004-07-20 Thread Mike Jackson
There was one a couple of days ago that was key:# but I don't remember what the number was. Still the emails are strange, but don't appear to be a virus that I know about. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Joel [mailto:[EMAIL PROTECTED

RE: Apache 1.3 not loading Mod_Jk.so

2004-07-16 Thread Mike Jackson
Did you move the mod_jk.so file into $APACHE_HOME/libexec? Did the compile work properly? Are you sure that the mod_jk.so is really the apache module and not something else (there's a way to determine this but I can't remember how)? --mikej -=- mike jackson [EMAIL PROTECTED

RE: Clob Problem

2004-07-12 Thread Mike Jackson
Oracle? If so you have a limit of like 4k if you're using 8i or less. You can get it to do more but you have to use oracle driver specific code rather than just straight JDBC. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Craig Christophersen [mailto:[EMAIL

RE: serving static content

2004-07-09 Thread Mike Jackson
it in the manager. Or it might be that tomcat, for whatever reason, isn't starting the context. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Matthew Hixson [mailto:[EMAIL PROTECTED] Sent: Friday, July 09, 2004 2:48 PM To: Tomcat Users List Subject: Re: serving

RE: I've officially decided that JSTL is one of the worst things to ever happen to mankind

2004-07-08 Thread Mike Jackson
You know you could just not write any jsps or servlets and do everything in filters. That's my personal preference. :) --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Woodchuck [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 11:52 AM To: Tomcat Users

RE: Apache miss handling jsp files

2004-07-06 Thread Mike Jackson
. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: James Pohl [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 2:42 PM To: [EMAIL PROTECTED] Subject: Apache miss handling jsp files I have tomcat 4 installed on a RedHat based server. I have aliases set up

RE: when does Tomcat spawn children and/or fork ?

2004-07-06 Thread Mike Jackson
the extra tomcat goes away and I'm back down to one. It could be that you've got something simliar going on in the webapp(s) that you're running. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jim Cox [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 06, 2004 2:58 PM

RE: Getting url which submitted form

2004-06-24 Thread Mike Jackson
Put a hidden field in the form with and identifier that you can use to determine which form it was that submitted it. I'd also suggest another hidden field to store a transaction id field so you can detect if it's a re-submittal of previously submitted information. --mikej -=- mike jackson

RE: Where is Digester?

2004-06-10 Thread Mike Jackson
commons-digester-1.5.tar.gz --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Barnet Wagman [mailto:[EMAIL PROTECTED] Sent: Thursday, June 10, 2004 10:07 AM To: [EMAIL PROTECTED] Subject: Where is Digester? Could some tell me which jar file contains org

RE: Where is Digester?

2004-06-10 Thread Mike Jackson
I didn't read that fully, the file is in ${tomcat_home}/server/lib or at least it should be. But it's still commons-digester.jar (I was wrong in the other message, that was the archive of it). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Barnet Wagman [mailto

struts validator

2004-04-13 Thread mike jackson
I'm using masks to validate some fields using the validator in struts. But my masks are getting extremely complex trying to deal with both lower case and upper case possibilities. Is there a way to specify that the mask should be evaluated as case insensitive? --mikej -=-- mike jackson

RE: struts validator

2004-04-13 Thread mike jackson
Yes there is, it works quite nicely I don't really want to re-write it. I just want to know if there's a property I can set on the mask or something to be case insensitive. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: electroteque [mailto:[EMAIL PROTECTED

RE: Protected message

2004-03-31 Thread mike jackson
? --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 2:06 PM To: [EMAIL PROTECTED] Subject: Protected message

RE: The purpose of WEB-INF\classes ?

2004-03-01 Thread mike jackson
in the classes folder where you can just go and edit them. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of George Hester Sent: Monday, March 01, 2004 5:46 PM To: [EMAIL PROTECTED] Subject: The purpose of WEB-INF\classes

RE: [Fwd: Catalina suspends for no reason?!?]

2004-02-04 Thread mike jackson
Orangevale is fine, my phone is either 916 987 3600 x0 or 916 212 2019. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Josh Rehman [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 04, 2004 1:36 PM To: Tomcat Users List Subject: Re: [Fwd: Catalina

RE: [Fwd: Catalina suspends for no reason?!?]

2004-02-04 Thread mike jackson
Oops, please ignore... --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: mike jackson [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 04, 2004 1:45 PM To: 'Tomcat Users List' Subject: RE: [Fwd: Catalina suspends for no reason?!?] Orangevale is fine

Recall: [Fwd: Catalina suspends for no reason?!?]

2004-02-04 Thread mike jackson
The sender would like to recall the message, [Fwd: Catalina suspends for no reason?!?]. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Benefits of Apache Server

2003-12-16 Thread mike jackson
Two things come to mind: CGI-BIN support that's easy to setup (I've never gotten them working in tomcat) Faster serving of static pages Perl and PHP support (again this can be done other ways, but it's easier this way IMHO) --mikej -=-- mike jackson [EMAIL PROTECTED

RE: wierd error.....

2003-11-04 Thread mike jackson
Gah, now we get spam on the mailing list. How lame. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Tracy Saward [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 2:50 PM To: 'Tomcat Users List' Subject: RE: wierd error. Hi, We

RE: GIF

2003-10-31 Thread mike jackson
It's Unisys' patent on LZW that was the problem, or at least that was my understanding. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Pike [mailto:[EMAIL PROTECTED] Sent: Friday, October 31, 2003 9:09 AM To: Tomcat Users List Subject: OT: GIF Hi

RE: JDBC/classes12.jar

2003-10-23 Thread mike jackson
Just use the current version of the driver, the oracle drivers all seem to be backwards compatable. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Steve Harris [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 9:52 AM To: [EMAIL PROTECTED

RE: Tomcat mysteriously stops responding...

2003-10-22 Thread mike jackson
, but the way to get it depends on the database so I can't help you there. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Sonny Sukumar [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 3:25 PM To: [EMAIL PROTECTED] Subject: Tomcat mysteriously stops

RE: tomcat 3.1.3 - how to define java params?

2003-10-22 Thread mike jackson
a space in it. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Volker [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 3:28 PM To: Tomcat Users List Subject: Re: tomcat 3.1.3 - how to define java params? Larry Isaacs schrieb: In Tomcat 4.1.x

RE: Bugs and weakness when Tomcat works a NT Service (tcservcfg)

2003-10-21 Thread mike jackson
the error says that it's the line with the result set. I've had a couple of times where the line number from the error didn't exactly match up with the line that it should have been. I usually find that it's helpful to put in debug output when I'm seriously stumped. --mikej -=-- mike jackson

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread mike jackson
Why in you area? You might have an easier time finding someone to work remotely. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Ruben Gamez [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 11:33 AM To: [EMAIL PROTECTED] Subject: Java/JSP/Servlet

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread mike jackson
Hmm, I could see where people would have difficulty. Since the answers are there's 5 methods and nothing (servlet is an interface). --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Ruben Gamez [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 12:33 PM

RE: Java/JSP/Servlet Programmer [off topic]

2003-10-17 Thread mike jackson
You might have to call rs.next() first before the rs.last(). I know that prior to getting a ResultSetMetaData object you have to call the rs.next(). Could be the rs.last() requires the same thing (in case there's no records returned). But that's just a guess. --mikej -=-- mike jackson

RE: Unable to compile class for JSP?

2003-10-17 Thread mike jackson
Looks to me like it can't find the JSP file that it's trying to compile. Perhaps something is miss-configured? Or the file is an empty file? --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Richardson, Robert [mailto:[EMAIL PROTECTED] Sent: Friday, October

RE: Java/JSP/Servlet Programmer [off topic]

2003-10-17 Thread mike jackson
I didn't think you could do that with stored procedures. They usually require an exec/begin/end to operate. You could probably do that in a stored procedure however (and have it return the row count). --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Shapira

RE: Java/JSP/Servlet Programmer

2003-10-17 Thread mike jackson
. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Ruben Gamez [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 1:17 PM To: Tomcat Users List Subject: RE: Java/JSP/Servlet Programmer Does anyone else think that what I'm asking for is so difficult

RE: Unable to compile class for JSP?

2003-10-17 Thread mike jackson
You're running tomcat with the jre then, you need to run it via the jdk. You might also take this time to upgrade to the latest jdk. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Richardson, Robert [mailto:[EMAIL PROTECTED] Sent: Friday, October 17, 2003 1

RE: Struts Configuration

2003-10-10 Thread mike jackson
There's a decent tool available called struts studio. Google for it and it'll help you do the configuration. There's also some plugins for eclipse, easy struts comes to mind. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Issam Katan [mailto:[EMAIL

portals

2003-09-23 Thread mike jackson
Can anyone suggest a good portal framework? I'm looking to migrate all of my applications to run within a portal, but I can't decide on one... --mikej -=-- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL

RE: E-Mail to CompuServe Customer Service

2003-08-22 Thread mike jackson
whose isp is comcast.net. Both of these machines appear to be infected with sobig. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Mike Curwen [mailto:[EMAIL PROTECTED] Sent: Friday, August 22, 2003 9:33 AM To: 'Tomcat Users List' Subject: RE: E-Mail

RE: Using Tomcat and JBoss together

2003-07-31 Thread mike jackson
-=-- mike jackson [EMAIL PROTECTED] -Original Message- From: P. Dwayne Miller [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 9:39 AM To: [EMAIL PROTECTED] Subject: Using Tomcat and JBoss together New to the world of Java... I'm confused as to why someone would want to run Tomcat

RE: Using Tomcat and JBoss together

2003-07-31 Thread mike jackson
to use apache because you can run jboss/tomcat as a non-root user. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: epyonne [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 12:35 PM To: Tomcat Users List Subject: Re: Using Tomcat and JBoss together

RE: Threading Question

2003-07-31 Thread mike jackson
You could do something like that, or you could just have the servlet pass that into the supporting code/beans. It'd be a lot cleaner and clearer design wise to just pass the information, either encapsulated into a new object or just the values you need. --mikej -=-- mike jackson [EMAIL

RE: OT Unsubscribing

2003-07-08 Thread mike jackson
Yes, committed for life. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 08, 2003 9:36 PM To: 'Tomcat Users List' Subject: OT Unsubscribing This is mostly off topic, I have really

RE: JDBC Pooling Clarification

2003-06-27 Thread mike jackson
). Also, you're probably going to want one that'll tell you what's going on in the pool. Personally I use poolman, which is missing the native statements issue, but its easy to work around it. Your mileage may vary, batteries not include, some assembly required. --mikej -=-- mike jackson [EMAIL

RE: running tomcat offline

2003-06-27 Thread mike jackson
You should be able to use tomcat via localhost. If that doesn't work try the address of 127.0.0.1. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: P.Ruijters [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 1:03 PM To: [EMAIL PROTECTED] Subject

RE: Alternatives to DBCP

2003-06-23 Thread mike jackson
Poolman is really good. It's not in development, but other than not being able to get native statements back (you can, but you have to get the native connection and then create the statement from there) it's really, really great. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original

RE: Need Help on JDBC Connection

2003-06-04 Thread mike jackson
a guess. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Joe [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 7:01 PM To: 'Tomcat Users List' Subject: Need Help on JDBC Connection Hi all, does anyone knows that's the case of this error: This happened

RE: [OT] Oracle Connection Problem Due To Dynamic Port Numbers

2003-05-30 Thread mike jackson
Not always, but generally. Some DBAs may change the port to something else, but 1521 is the default. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Brad Rhoads [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 12:01 PM To: Tomcat Users List Subject

RE: [OT] Oracle Connection Problem Due To Dynamic Port Numbers

2003-05-29 Thread mike jackson
then I'm not sure that proxies work anyway). I'd see if you can connect using the standard Oracle tools, if you can't get that setup then you're not going to get JDBC to work. --mikej -=-- mike jackson [EMAIL PROTECTED] -Original Message- From: Brad Rhoads [mailto:[EMAIL PROTECTED

RE: Going Live

2003-04-03 Thread mike jackson
the files and settings required for the app into one file. The container will extract that and build the file system structures required. There's much less chance for error. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL PROTECTED

RE: Going Live

2003-04-03 Thread mike jackson
is with that protocol, opening and closing sockets as it talks to the JVM ends up with tons of sockets in a close wait state. On Unixware this is a problem. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 8

RE: JNDI connection pooling maximum connections exceeded - Tracking?

2003-04-03 Thread mike jackson
connections have been lost or closed due to expiring their time to live. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 03, 2003 12:07 PM To: Tomcat Users List Subject: JNDI connection pooling

RE: JDBC-ODBC bridge error

2003-04-01 Thread mike jackson
. And they'll probably act differently as well. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 2:13 PM To: 'Tomcat Users List' Subject: RE: JDBC-ODBC bridge error Thanks guys

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
elaborate need here, it's not going to be really easy to point you in a direction unless we have a better picture of what is going on. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 3:34 PM

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
That's kind a where I'm going. I know I could build a system to do this, regardless of the complexity. However that said, I don't know that I want to spend the hours it'll take to understand the problem and work out a good and workable solution. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
the object route you probably need to have a set of interfaces that all different card handlers need to implement, and possibly a super class of some sort. Anyway, enjoy working on it. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Sandra Patricia Hunter [mailto:[EMAIL

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
am going to play with string manipulation stuff and see where that gets me. Sandra Patricia Hunter Systems Development and Web Design -Original Message- From: mike jackson [mailto:[EMAIL PROTECTED] Sent: April 1, 2003 4:12 PM To: 'Tomcat Users List' Subject: RE: Getting pretty far

RE: Getting pretty far off topic here

2003-04-01 Thread mike jackson
Patricia Hunter Systems Development and Web Design -Original Message- From: mike jackson [mailto:[EMAIL PROTECTED] Sent: April 1, 2003 4:38 PM To: 'Tomcat Users List' Subject: RE: Getting pretty far off topic here It's that last little bit that's the hard part. If you can I'd put

RE: connection pooling saga

2003-03-31 Thread mike jackson
that it might be going away in one of the next few releases. But if you have to use Access all you should have to do is change the JDBC URL. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: JS [mailto:[EMAIL PROTECTED] Sent: Monday, March 31, 2003 4:06 PM To: [EMAIL PROTECTED

Filter setup problem

2003-03-19 Thread mike jackson
. Does anyone have any idea why? --mikej -=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Filter setup problem

2003-03-19 Thread mike jackson
Nevermind I found it. Stupidness strikes again. --mikej -Original Message- From: mike jackson [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 10:24 AM To: 'Tomcat Users List' Subject: Filter setup problem I'm having a problem with the initial parameter options with filters

RE: Get object from session before it expires.

2003-03-17 Thread mike jackson
don't remove the object yourself you ought to be mostly ok. With tomcat 3.x I have the issue that sometimes I have to kill -9 tomcat (not often) which doesn't trigger the value unbound event, but it's mostly ok. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From

RE: Do you run Tomcat with SSL?

2003-03-13 Thread mike jackson
) I've ended up setting up apache to run as the front end. But that's just me. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Mark Liu [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2003 6:44 PM To: Tomcat Users List Subject: Do you run Tomcat with SSL? I am

OT: RE: Please sign emergency petition to the U.N.

2003-03-10 Thread Mike Jackson
Who are you and why are you sending me this. I do not agree with this petition. I support war with Iraq, whatever it takes. But that's just my option. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Wilhelm Colln [mailto:[EMAIL PROTECTED] Sent: Monday, March

RE: Please sign emergency petition to the U.N. [OOOT!]

2003-03-10 Thread Mike Jackson
Sorry, I don't seem to see tomcat instructions anywhere on the site. What's the url? --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jon Roberts [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 10:13 AM To: Tomcat Users List Subject: Re: Please sign

strangeness

2003-03-10 Thread Mike Jackson
/classes folder, still a 404. I've checked to be sure I'm not missing a jar file or something from the old install, which I don't appear to be. I checked the startup options from the 3.3.1a version, nothing. Does anyone have an idea where to look next? --mikej -=- mike jackson [EMAIL PROTECTED

RE: strangeness

2003-03-10 Thread Mike Jackson
I did that, but it isn't be required if you specify the entire package/class name. The mapping from class to servlet by name doesn't work either. I probably should have included that in the original post. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Filip

RE: strangeness

2003-03-10 Thread Mike Jackson
I've got the servlet/ in there, but I don't have a servlet-mapping for this servlet. I only have one page that calls it, and it's via request dispatcher, so the user doesn't see it. Are you saying that I can't do this anymore? --mikej -=- mike jackson [EMAIL PROTECTED] -Original

RE: strangeness

2003-03-10 Thread Mike Jackson
, unless you change the setting in the global web.xml of tomcat. -Original Message- From: Mike Jackson [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 3:02 PM To: Tomcat Users List Subject: RE: strangeness I've got the servlet/ in there, but I don't have a servlet-mapping

RE: strangeness

2003-03-10 Thread Mike Jackson
BTW, my webapp is tad, so the urls look like /tad/servlet/MyServlet. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Tam, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 3:29 PM To: 'Tomcat Users List' Subject: RE: strangeness You just can't

RE: strangeness

2003-03-10 Thread Mike Jackson
for the assistance (too all of you). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Tam, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 3:50 PM To: 'Tomcat Users List' Subject: RE: strangeness two things you can do: 1) enable the the servlet

RE: Pre-authorize a link?

2003-03-07 Thread Mike Jackson
Custom tag? That's how I do about 50% of my security. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Doug Redd [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 3:09 PM To: Tomcat Users List Subject: Pre-authorize a link? Is there any way

RE: Apache-Sym Link NOT Allowed ???????

2003-03-06 Thread Mike Jackson
I could be mistaken, but I don't think you need the + in front of the permissions that you're trying to setup. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Manu Kits [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 9:48 AM To: [EMAIL PROTECTED

RE: response.sendRedirect( .. )

2003-03-05 Thread Mike Jackson
I have 3 machines that I support with broken browsers that don't follow redirects immediately. In fact if the page includes any content, any at all, the ignore the redirect. I'm not 100% sure, but I even thing they ignore meta tag redirects. --mikej -=- mike jackson [EMAIL PROTECTED

RE: remember password HOW-TO?

2003-03-05 Thread Mike Jackson
, you need to probably use a cookie (persistant cookie, not a non-persistant one). --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: David Reed [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 2:10 PM To: Tomcat Users List Subject: Re: remember password

RE: Trying to Install JAVA 4.1 to run Webgate Anywhere

2003-03-05 Thread Mike Jackson
You're running a version of the jre it looks like, you need the jdk. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 2:52 PM To: [EMAIL PROTECTED] Subject: Trying to Install JAVA 4.1

RE: Still a problem with tomcat-apache integration

2003-03-05 Thread Mike Jackson
-=- mike jackson [EMAIL PROTECTED] -Original Message- From: Simone Chiaretta [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 3:26 PM To: Tomcat User List Subject: Still a problem with tomcat-apache integration Dear All, please don't shoot me, but I've a problem making tomcat

RE: Still a problem with tomcat-apache integration

2003-03-05 Thread Mike Jackson
Take a look at your mod_jk.log and see if there's anything in there that points anywhere, the next step after that would probably be to post your workers.properties and mod_jk.conf files. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Simone Chiaretta [mailto

RE: Still a problem with tomcat-apache integration

2003-03-05 Thread Mike Jackson
Hmm, that looks ok so far. BTW, I don't read Italian, is there a version of that rc land sailer page in English? --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Simone Chiaretta [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 4:06 PM To: Tomcat

RE: Tomcat error

2003-03-04 Thread Mike Jackson
Since you're using the legacy apj13 code you need to comment out the jmx stuff from the server.xml file. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Adam Denenberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 9:32 AM To: Tomcat Users List

RE: forwarding from Tomcat to Apache

2003-03-04 Thread Mike Jackson
Drop the paridon.homedns.org, assuming login.html is the base htdocs directory you ought to be fine. The second solution would be to add http://; in front of the paridon.homedns.org. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Todd Paridon [mailto:[EMAIL

RE: Oracle JDBC, what do do?

2003-03-04 Thread Mike Jackson
-=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 12:53 PM To: [EMAIL PROTECTED] Subject: RE: Oracle JDBC, what do do? Got it. Thanks very much. Bao-Ha Dam Bui [EMAIL PROTECTED] St. Jude

RE: Oracle JDBC, what do do?

2003-03-04 Thread Mike Jackson
an // exceptional condition. // *Action: Report as a bug - the first argument is the internal error number --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 2:54 PM To: [EMAIL PROTECTED

RE: JDBC connectivityfor ORACLE !!!

2003-03-03 Thread Mike Jackson
XP is different. Usually under windows the install is alot smoother than under the flavors of unix I have available. All I can really say is good luck, can't help you further. After you get it installed I might be able to offer further advice. --mikej -=- mike jackson [EMAIL PROTECTED

RE: Mime-Type

2003-03-03 Thread Mike Jackson
% count on them. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Hostmaster of the day [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 8:25 AM To: [EMAIL PROTECTED] Subject: RE: Mime-Type Ladies and Gentleman, .jsp (e.g. index.jsp) is indeed a MIME

RE: Simple Question

2003-03-03 Thread Mike Jackson
The web.xml is only read when the server is restarted. The browser has nothing to do with it. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Swapneel Dange [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 8:51 AM To: [EMAIL PROTECTED] Subject: Re

RE: Simple Question

2003-03-03 Thread Mike Jackson
much again for any help. VD --mikej -=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Mime-Type

2003-03-03 Thread Mike Jackson
on the same short sightedness, at least with version 4.1.12. /petPeeveAlert And yes, JkMount /*.jsp ajp13 is not a mime-type, its a mod_jk setup directive. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Hostmaster of the day [mailto:[EMAIL PROTECTED] Sent

RE: Mime-Type

2003-03-03 Thread Mike Jackson
that. :) --mikej -=- mike jackson [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat as Linux Service

2003-03-03 Thread Mike Jackson
nohup $TOMCAT_HOME/bin/startup.sh --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:11 AM To: Tomcat Subject: Tomcat as Linux Service Tomcat List, Does anyone know

RE: Tomcat as Linux Service

2003-03-03 Thread Mike Jackson
, chmod 0755 the file, and then put symbolic links in the run levels you want it to run at. If you want it to be started then make the link S99file, to stop it's K00file. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Jeremy Whitlock [mailto:[EMAIL PROTECTED] Sent

RE: Apache 1.3.27 + mod_jk 1.2.2 + tomcat 4..1.18

2003-03-03 Thread Mike Jackson
What platform? I'm on unixware... --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Adam Denenberg [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 11:02 AM To: Tomcat Users List Subject: Apache 1.3.27 + mod_jk 1.2.2 + tomcat 4..1.18 Anyone have

RE: Apache 1.3.27 + mod_jk 1.2.2 + tomcat 4..1.18

2003-03-03 Thread Mike Jackson
worker.inprocess.stdout=$(workers.tomcat_home)$(ps)inprocess.stdout worker.inprocess.stderr=$(workers.tomcat_home)$(ps)inprocess.stderr worker.inprocess.sysprops=tomcat.home=$(workers.tomcat_home) --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Adam Denenberg [mailto

RE: Tomcat Manager

2003-03-03 Thread Mike Jackson
If you changed it so that tomcat responses to port 80, then you'll have to change the manager port as well. It's just another webapplication to tomcat after all. --mikej -=- mike jackson [EMAIL PROTECTED] -Original Message- From: Brewer, Michael [mailto:[EMAIL PROTECTED] Sent

  1   2   3   4   >