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

2003-02-22 Thread Jacob Hookom
GC'ing is done in parallel now... as far as I know, it won't halt all threads... it's not as bad with the new JVM's. | -Original Message- | From: Warden, Matt [mailto:[EMAIL PROTECTED] | Sent: Saturday, February 22, 2003 3:02 AM | To: Tomcat Users List | Subject: RE: OT: Is it ok to close

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

2003-02-20 Thread Jacob Hookom
You shouldn't put anything in your finalize() method, it's a bad practice because it can cause issues with the jvm's gc. In your case, you should implement connection and treat the connection just like normal with JDBC access. In your own connection, keep a reference to your connection cache and

RE: JVM Question

2003-02-14 Thread Jacob Hookom
I'm wondering also, I posted the same question a few months ago. I did some testing on my own and found Sun's 1.4 to be slightly faster, but that was only with a few concurrent users. I would imagine JRocket would provide better performance with a few hundred users. -Jacob | -Original

RE: Pro WAR (was Re: Fw: Fight war)

2003-02-13 Thread Jacob Hookom
Genius. | -Original Message- | From: Will Hartung [mailto:[EMAIL PROTECTED]] | Sent: Thursday, February 13, 2003 12:57 PM | To: Tomcat Users List | Subject: Pro WAR (was Re: Fw: Fight war) | | From: Kemp Randy-W18971 [EMAIL PROTECTED] | Sent: Thursday, February 13, 2003 9:55 AM |

RE: NEW POST: How do I view this jsp???

2003-02-13 Thread Jacob Hookom
You only have the footer attached. You also need to describe HOW the date is showing up. I can't help you if you just say it doesn't show up right. Regards, Jacob -Original Message- From: Steve Burrus [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 4:58 PM To: [EMAIL

RE: my first servlet

2003-02-12 Thread Jacob Hookom
Check your logs to see if your servlet is even initialized | -Original Message- | From: Jose Moreira [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, February 12, 2003 5:00 AM | To: Tomcat Users List | Subject: my first servlet | | hello, i created my first servlet called db2xml but when i

RE: Tomcat Performance Measuring

2003-02-12 Thread Jacob Hookom
There is an article at javaworld on filters that accomplish this, otherwise head over to opensymphony.com to download the filter itself. -Bocaj | -Original Message- | From: p niemandt [mailto:[EMAIL PROTECTED]] | Sent: Thursday, February 13, 2003 12:11 AM | To: Tomcat Users List |

RE: preview of webapp of Tomcat Performance book

2003-02-11 Thread Jacob Hookom
Yes, very much so. | -Original Message- | From: Peter Lin [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, February 11, 2003 7:59 AM | To: Tomcat Users List | Subject: preview of webapp of Tomcat Performance book | | | I plan on releasing the webapp and utilities for | Tomcat Performance

RE: Need help w. another jsp!

2003-02-10 Thread Jacob Hookom
% switch(color) { case RED : { % font color=RED%=data %/font % } default : { % font color=BLACK%=data %/font % } } % There is a better way to do this though with scriptlets (if you must embed java code). % final String[] colors = new String[] {

RE: Realm url-pattern problems

2003-02-05 Thread Jacob Hookom
/*.htm should just be *.htm | -Original Message- | From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, February 05, 2003 6:20 AM | To: [EMAIL PROTECTED] | Subject: Realm url-pattern problems | | Hi, I am working on an application using Realm. | I'm trying to use /*.htm

RE: MySQL control center

2003-02-05 Thread Jacob Hookom
I just started using it, the one thing to point out is that their user management doesn't work properly. Whenever you update security settings for a user, then their password is resaved in a non hashed format causing your password to become invalid if you previously set one. -Bocaj |

RE: Why won't anyone help me out??

2003-02-04 Thread Jacob Hookom
Steve, have you ever looked at coldfusion? www.macromedia.com/coldfusion | -Original Message- | From: Steve Burrus [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, February 04, 2003 3:36 PM | To: [EMAIL PROTECTED] | Subject: Why won't anyone help me out?? | | | Well, seeing how no one, so

RE: Why won't anyone help me out??

2003-02-04 Thread Jacob Hookom
at markups like ColdFusion. Best Regards, Jacob Hookom PS, any further questions/comments can be sent to me directly :-) | -Original Message- | From: Steve Burrus [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, February 04, 2003 4:25 PM | To: Tomcat Users List | Subject: RE: Why won't anyone

RE: pageContext error ???

2003-02-04 Thread Jacob Hookom
You might want to check your page declaration if you have your isErrorPage or errorPage declarations setup incorrectly. It might be trying to throw an exception to a page that does not exist or cannot be found. -Jacob Hookom | -Original Message- | From: jsp [mailto:[EMAIL PROTECTED

RE: [Tomcat 4.1] Caching JSP Output via Filter PLZ HELP!!

2003-01-27 Thread Jacob Hookom
/tomcat-user@jakarta.apache.org/msg82477.html | | and read the associated links about a similar problem (filter works for | static content, not for dynamic). | | Charlie | | | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Saturday, January 25, 2003 12:21 PM

RE: [Tomcat 4.1] Caching JSP Output via Filter PLZ HELP!!

2003-01-25 Thread Jacob Hookom
I can see in my Log4j output that indeed the getWriter() method was called on my HttpServletResponseWrapper. Best Regards, Jacob Hookom -Original Message- From: li pan [mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 11:01 PM To: [EMAIL PROTECTED] Subject: RE: [Tomcat 4.1

[Tomcat 4.1] Caching JSP Output via Filter PLZ HELP!!

2003-01-24 Thread Jacob Hookom
I'm running Tomcat 4.1.18 I've just about about finished a Filter that wraps the response and allows caching to take place by storing the response in a ByteArrayOutputStream. Currently, I have my Filter deployed in the Examples Application bound to /jsp/*. It will cache HTML files just

HttpServletResponse Caching

2003-01-23 Thread Jacob Hookom
I'm going to cache the response from a resource via a filter (WrappedHttpServletResponse). Currently I'm storing both the header information and the outputstream as a byte array. Should I be making accommodations for storing/rewriting header information, or is this something that automatically

[OT] RE: Game server - two player board game

2003-01-19 Thread Jacob Hookom
You might want to look that the wildtangent driver. It's not necessarily made for multiplayer games, but we wrote an implementation in there that worked with a servlet. www.wildtangent.com -Original Message- From: Rasputin [mailto:[EMAIL PROTECTED]] Sent: Sunday, January 19, 2003 9:01

RE: CPU and Tomcat 4.1 problems

2003-01-19 Thread Jacob Hookom
I had lots of problems with the Struts Iterate tags causing memory leaks when I stress tested pages. I ended up replacing them with JSTL tags and it went away. Struts 1.1b3 probably has the issue resolved (if it was the case). Jacob -Original Message- From: [EMAIL PROTECTED]

RE: Game server - two player board game

2003-01-18 Thread Jacob Hookom
Usually, when speed is at stake, you would want to represent the board as a 2D array. For example you can write tic-tac-toe w/ AI in only a page of code. If you are talking about applet-servlet communication or pseudo object RMI, then you might want to pick up Java Developers Guide to Servlets

RE: Servlet channing

2003-01-16 Thread Jacob Hookom
Instead of chaining servlets, why not look at filters, whose specific purpose is to work on a chain. There is even some talk of switching struts over from a servlet to a filter in a later release. Jacob | -Original Message- | From: Reynir Hübner [mailto:[EMAIL PROTECTED]] | Sent:

RE: Servlet channing

2003-01-16 Thread Jacob Hookom
application does similar things, in similar ways except less | propriatary. | | | -reynir Jacob Hookom -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Apache1.3.27 - tomcat4.1.12 - Mysql 3.23.43 ERROR

2003-01-15 Thread Jacob Hookom
Why don't you run some tests from your IDE, tomcat aside and see if it does the same thing. Meaning, setup DBCP in a Main, and run tests to try to simulate the application's activity. I highly doubt it has anything to do with Tomcat, or this list for that matter. | -Original Message- |

RE: Authentication and Filters

2003-01-10 Thread Jacob Hookom
Authentication aside, does the servlet container work such that an include or RD operation has the option of passing through the filter? If so, as of which release? Best Regards, Jacob | -Original Message- | From: Tim Funk [mailto:[EMAIL PROTECTED]] | Sent: Friday, January 10, 2003 6:30

RE: How do I...

2003-01-10 Thread Jacob Hookom
Refer to your server.xml and look at the examples setup towards the middle where it declares the logger and file pattern. | -Original Message- | From: Luc Foisy [mailto:[EMAIL PROTECTED]] | Sent: Friday, January 10, 2003 11:09 AM | To: Tomcat User List (E-mail) | Subject: How do I... | |

RE: How do I...

2003-01-10 Thread Jacob Hookom
To properly handle logging, you might want to check out log4j.org or commons-logging. It's one of the first things I setup for a project, it makes debugging extremely smooth. | -Original Message- | From: Paul Yunusov [mailto:[EMAIL PROTECTED]] | Sent: Friday, January 10, 2003 12:35 PM |

Java NIO and IIs/IE ACK/NAK Requests

2003-01-07 Thread Jacob Hookom
Two things I'm wondering about: First, is there any push to include the new NIO libraries or are they already included in the new Tomcat releases; if so, there has been some debate as to the actual benefit of them on UNIX based systems pertaining to performance over standard IO. Secondly, I

RE: Java NIO and IIs/IE ACK/NAK Requests

2003-01-07 Thread Jacob Hookom
To: Tomcat Users List Subject: Re: Java NIO and IIs/IE ACK/NAK Requests On Wed, 8 Jan 2003, Jacob Hookom wrote: Date: Wed, 8 Jan 2003 00:38:22 -0600 From: Jacob Hookom [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Java NIO and IIs/IE ACK/NAK

RE: Tomcat 4.1.18 has problem castor??

2003-01-06 Thread Jacob Hookom
I remember reading that one of the distributions of Castor had the same issue you are describing with parsing. My recommendation is to upgrade to Castor 4.1 and see if that fixes your issue, it did for me. Jacob -Original Message- From: Ali Kaplan [mailto:[EMAIL PROTECTED]] Sent:

RE: Question - Form Validation

2002-12-29 Thread Jacob Hookom
Why not browse the Jakarta Validator libs? They are integrated into Struts. -Original Message- From: Turner, John [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 28, 2002 11:59 PM To: ''Tomcat Users List ' ' Subject: RE: Question - Form Validation Hi - I was researching this

RE: New HOWTO - Windows XP

2002-12-27 Thread Jacob Hookom
Your howto's are greatly appreciated. I used your site the first time I setup my redhat server. I'm sure it would be of great benefit to the list as a whole if your site was linked in the footer of the mailing list ;-) Highest Regards, Jacob Hookom -Original Message- From: Turner, John

RE: in search of more efficient design

2002-12-19 Thread Jacob Hookom
One word... struts -Original Message- From: ilasno [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 1:29 PM To: [EMAIL PROTECTED] Subject: in search of more efficient design PREAMBLE - I apologize if this is off-topic. I have been on this search for a month, and have

RE: in search of more efficient design

2002-12-19 Thread Jacob Hookom
-4860 ext. 258 / Fax 202-463-4863 -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 19, 2002 3:07 PM To: 'Tomcat Users List' Subject: RE: in search of more efficient design One word... struts -Original Message- From: ilasno [mailto

Re: SUCCESSFUL Tomcat Install!

2002-11-17 Thread Jacob Hookom
The best newbie-book i have read for starting with JSP's, Servlets, and Taglibs is: Java Developer's Guide to Servlets and JSP by Bill Brogden under Sybex publishing It's the book that everyone still borrows from me to read as a starting point. Now, I mainly use Jason Hunter's O'Reilly book

Re: Deploying a custom realm.

2002-11-13 Thread Jacob Hookom
http://www.mail-archive.com/tomcat-user;jakarta.apache.org/msg64942.html - Original Message - From: Scott Dierbeck [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 13, 2002 1:51 PM Subject: Deploying a custom realm. We have implemented our own propriatary security API

Re: Current performance comparisons of PHP vs. JSP anywhere?

2002-11-10 Thread Jacob Hookom
The only thing I remember off hand was that for multi-user web servers that have major loads, the memory growth wasn't linear with JSP as opposed to PHP. I can't remember the article link, but I do remember that it came to the conclusion that larger sites with dynamic content should use Java.

[Realm] MBeanException

2002-09-05 Thread Jacob Hookom
Hello, I've created a Realm that extends RealmBase, but now I'm getting an exception at startup from the ServerLifecycleListener. I'm running W2K, 4.1.9 and JDK 1.4 My class DomRealm extends RealmBase and both the start and stop are overridden, but do call super.start() and super.end(). The

RE: [Realm] MBeanException

2002-09-05 Thread Jacob Hookom
| | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Friday, 6 September 2002 12:39PM | To: Tomcat Users List | Subject: [Realm] MBeanException | | | Hello, | | I've created a Realm that extends RealmBase, but now I'm getting an | exception at startup from

RE: [Realm] MBeanException

2002-09-05 Thread Jacob Hookom
don't really get JMX, it just seams like an archaic version of BeanUtils? Jacob Hookom Comprehensive Computer Science Student University of Wisconsin, Eau Claire | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Thursday, September 05, 2002 10:39 PM | To: 'Tomcat

RE: specify session timeout

2002-09-03 Thread Jacob Hookom
Read the documentation-- odd concept ;-) http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/manager.html (The page also mentions setting the time out in your app's web.xml) Or, there's Jakob Nielsen's favorite method of navigation:

[OT] DTD Validation -- Server.xml

2002-08-30 Thread Jacob Hookom
be ignored by: A: The DTD Validation B: The Digester itself during parsing Best Regards, Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.381

RE: [OT] DTD Validation -- Server.xml

2002-08-30 Thread Jacob Hookom
| To: Tomcat Users List | Subject: Re: [OT] DTD Validation -- Server.xml | | | | On Fri, 30 Aug 2002, Jacob Hookom wrote: | | Date: Fri, 30 Aug 2002 14:20:40 -0500 | From: Jacob Hookom [EMAIL PROTECTED] | Reply-To: Tomcat Users List [EMAIL PROTECTED] | To: Tomcat Users List [EMAIL PROTECTED

RE: STILL need help w. Tomcat installation!!

2002-08-28 Thread Jacob Hookom
Are you sure you aren't running Amiga Shell and not DOS? | -Original Message- | From: STEVE R BURRUS [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, August 28, 2002 12:04 PM | To: [EMAIL PROTECTED] | Subject: STILL need help w. Tomcat installation!! | | I STILL find myself in some degree

RE: STILL need help w. Tomcat installation!!

2002-08-28 Thread Jacob Hookom
Steve, I replied to you on this 3 weeks ago, along with everyone else: My step by step for XP: http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg62993.html http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg63404.html

RE: Setting up connection pooling via JNDI

2002-08-28 Thread Jacob Hookom
It is, check out the common lib in your tomcat install you will see the libraries in there. | -Original Message- | From: neal [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, August 28, 2002 11:00 PM | To: Tomcat Users List | Subject: Setting up connection pooling via JNDI | | I did a

Java FTP and Tomcat

2002-08-27 Thread Jacob Hookom
Does anyone know if there is a FTP connector(?) for Tomcat? If not, is it something that's doable with Tomcat? Regards -Jacob --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.381 / Virus Database: 214 - Release Date: 8/2/2002

RE: Realm Security Implementation Question [OT]

2002-08-25 Thread Jacob Hookom
| -Original Message- | From: Will Hartung [mailto:[EMAIL PROTECTED]] | Sent: Thursday, August 22, 2002 6:14 PM | To: Tomcat Users List | Subject: Re: Realm Security Implementation Question [OT] | | From: Jacob Hookom [EMAIL PROTECTED] | Sent: Thursday, August 22, 2002 11:19 AM

RE: Realm Security Implementation Question [OT]

2002-08-21 Thread Jacob Hookom
Thanks, I'm looking farther down the road since our application could also require roles to be pulled from an XML, the more I read about JAAS, the more I think it's the way to go. Our deployed larger applications have roles setup in the DB under separate tables, but with each additional small

RE: Realm Security Implementation Question [OT]

2002-08-21 Thread Jacob Hookom
Comments below | -Original Message- | From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, August 21, 2002 11:04 PM | To: Tomcat Users List | Subject: Re: Realm Security Implementation Question [OT] | | On most reasonable databases, you can create views that organize

Realm Authentication Across Multiple Servers

2002-08-19 Thread Jacob Hookom
The application we are working on is laid out on the network like so (* means many): Apache2 jk2_mod Tomcat4 Web Site Servers* internal network mapping Tomcat4 File Servers* Basically the application acts much like sourceforge or another download site, but I would like to carry authentication

RE: Design question

2002-08-19 Thread Jacob Hookom
I'm trying to accomplish the same thing-- How do you authenticate on Server A, then have that principal carry over to Servers B and C for download authorization? Thanks! -Jacob | -Original Message- | From: Luminous Heart [mailto:[EMAIL PROTECTED]] | Sent: Monday, August 19, 2002 12:06

RE: Design question

2002-08-19 Thread Jacob Hookom
for the token to be 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 trying

RE: anyone recieve this email?

2002-08-18 Thread Jacob Hookom
Respond | -Original Message- | From: neal [mailto:[EMAIL PROTECTED]] | Sent: Sunday, August 18, 2002 2:09 PM | To: Tomcat Users List | Subject: anyone recieve this email? | | Can anyone hear me? Is anyone recieving this email? Please respond. | | | -- | To unsubscribe, e-mail:

RE: Need help w. Tomcat Installation

2002-08-18 Thread Jacob Hookom
| -Original Message- | From: STEVE R BURRUS [mailto:[EMAIL PROTECTED]] | Sent: Sunday, August 18, 2002 3:55 PM | To: [EMAIL PROTECTED] | Subject: Need help w. Tomcat Installation | | Hello all, this is steve burrus.I am an admitted Tomcat newbie user, | and I | find | myself in need

RE: performance problem

2002-08-15 Thread Jacob Hookom
It looks like you are using custom tags, and usually with XML transformations, they are quite processor heavy. You might want to look at the new Jaxen benchmarks with Dom4j: www.jaxen.org -Jacob | -Original Message- | From: Alessandro Di Maria [mailto:[EMAIL PROTECTED]] | Sent:

RE: Enterprise Java Beans (EJB)

2002-08-15 Thread Jacob Hookom
| -Original Message- | From: V. Cekvenich [mailto:[EMAIL PROTECTED]] | Sent: Thursday, August 15, 2002 10:28 AM | To: Tomcat Users List | Subject: Re: Enterprise Java Beans (EJB) | | No | Here is what: | Bean (formBean in Struts for example) delegate to DAO for CRUD | (Insert,Read,

RE: apache+tomcat?

2002-08-13 Thread Jacob Hookom
| -Original Message- | From: Lee Zhao [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, August 13, 2002 6:30 PM | To: Tomcat Users List | Subject: apache+tomcat? | | Can someone please explain why one needs or wants to use apache in | addition to tomcat? Tomcat is great at serving up

RE: Can this be done...?

2002-08-13 Thread Jacob Hookom
You might want to look at installing JSTL under the Taglibs Standard It provides simple xslt transformation by selecting a file as a source and a file as the xsl document, the download includes deployable wars that demonstrate this functionality. -Jake | -Original Message- | From: Tod

RE: Can this be done...?

2002-08-13 Thread Jacob Hookom
a simple jsp with JSTL that takes in the XML and the XSL document as parameters. Regards, Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire | -Original Message- | From: Tod Thomas [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, August 13, 2002 8:55 PM

RE: [Q] Realms, Principals, et al...

2002-08-12 Thread Jacob Hookom
| Just as a simple example, consider the concept of group that many | security environments define. Either of the following mappings would be | perfectly legal from the perspective of a servlet container (or a J2EE app | server): | | * Group == Role (since Tomcat 3.x and 4.0 do not have any

RE: [Q] Realms, Principals, et al...

2002-08-12 Thread Jacob Hookom
| -Original Message- | From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] | Sent: Monday, August 12, 2002 9:27 PM | To: Tomcat Users List | Subject: RE: [Q] Realms, Principals, et al... | | | | On Mon, 12 Aug 2002, Jacob Hookom wrote: | | Date: Mon, 12 Aug 2002 21:02:15 -0500

RE: [Q] Realms, Principals, et al...

2002-08-12 Thread Jacob Hookom
Again, you are the man. Thanks for the quick responses, Jake | Loading all the roles into GenericPrincipal is just the way that the | existing Realm implementations do it. Nothing stops you from using a | Principal implementation that doesn't contain the roles, and make your | Realm.hasRole()

RE: Shared Drives

2002-08-11 Thread Jacob Hookom
| To: 'Tomcat Users List' | Subject: RE: Shared Drives | | Have you tried mapping the drive as administrator? | | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Sunday, August 11, 2002 2:17 AM | To: Tomcat Users List | Subject: Shared Drives | | | I had

RE: Problems with url-pattern*

2002-08-10 Thread Jacob Hookom
| -Original Message- | From: Alexander Wallace [mailto:[EMAIL PROTECTED]] | Sent: Saturday, August 10, 2002 7:56 AM | To: Tomcat Users List | Subject: Re: Problems with url-pattern* | | Ok, but what I mean by access rights are a set of very custom | permissions (existing in a database

Shared Drives

2002-08-10 Thread Jacob Hookom
I need to look at editing my policy file? Best Regards, Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.380 / Virus Database: 213 - Release Date

RE: Accessing Mapped Drives

2002-08-09 Thread Jacob Hookom
The file | dialog could not see mapped drives. I only saw it on Win 98. Windows | 2000 worked fine. What OS are you running? | | David | | Jacob Hookom wrote: | | What permissions do I need to setup for Tomcat to be able to access | shared network drives on win2k? I'm able to access shares through

Accessing Mapped Drives

2002-08-08 Thread Jacob Hookom
would be much obliged :-) Regards, Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.380 / Virus Database: 213 - Release Date: 7/24/2002

RE: howto avoid overuse of session object?

2002-08-02 Thread Jacob Hookom
I agree, stick to the session itself for purposes of scaling later, just be smart about the objects you put in there, IE, use singletons and factories for instances, etc. There's no need to write your own session handler. Jacob Hookom Comprehensive Computer Science University of Wisconsin

Request Dispatcher

2002-08-01 Thread Jacob Hookom
If I grab a request dispatcher, can I append extra parameters to be used at the destination? Original request: /app/RDServlet?id=3446 RequestDispatcher rd = _context.getRequestDispatcher(/jsp/handler.jsp?ar=html); rd.forward(); Is this legit to do? Jacob Hookom Comprehensive Computer Science

RE: Request Dispatcher

2002-08-01 Thread Jacob Hookom
I wrote some test cases and figured out that you cannot append parameters, but you can change their properties, so if you do: /xmlwrapper/newsTest.html?contentType=44id=59550 I can regexp and forward /content/news.jsp?contentType=htmlid=59550 Jacob Hookom Comprehensive Computer Science

RE: Xalan performance within Tomcat

2002-07-24 Thread Jacob Hookom
I just posted the source for a TEST with filtering; it basically acts like cocoon, but doesn't fall into cocoon's big-brother implementation http://www.swanked.net/xml/axalon/ It's being served off of my cable modem, so excuse speeds Jacob Hookom Comprehensive Computer Science University

RE: Xalan performance within Tomcat

2002-07-23 Thread Jacob Hookom
What are you exactly doing to do the transformations? There seems to be about a dozen ways you could go about it setting up the Templates and the transformation Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Ralph Einfeldt

RE: Help with chaining servlets via filters

2002-07-23 Thread Jacob Hookom
http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters.html Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:47 AM To: Tomcat Users List

Filter order of operation

2002-07-23 Thread Jacob Hookom
I know that a single request can come through multiple Filters in a chain, I'm wondering if there's any reliable way to ensure precedence in the chain of operation? Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire --- Outgoing mail is certified Virus Free

RE: Filter order of operation

2002-07-23 Thread Jacob Hookom
Cheers, I did a search previously on sun's site but everything seemed to only skim the surface. Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 1:13

RE: Xalan performance within Tomcat

2002-07-23 Thread Jacob Hookom
in the code, email me directly. Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 12:55 AM To: Tomcat Users List Subject: AW: Xalan performance within Tomcat

RE: Changes to File System

2002-07-22 Thread Jacob Hookom
Thanks! -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 10:29 AM To: Tomcat Users List Subject: Re: Changes to File System On Mon, 22 Jul 2002, Jacob Hookom wrote: Date: Mon, 22 Jul 2002 03:03:41 -0500 From: Jacob Hookom [EMAIL

RE: Xalan performance within Tomcat

2002-07-22 Thread Jacob Hookom
Have you tried translets? Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire -Original Message- From: Will Hartung [mailto:[EMAIL PROTECTED]] Sent: Monday, July 22, 2002 12:21 PM To: Tomcat Users List Subject: Re: Xalan performance within Tomcat From

Getting Filter url-pattern

2002-07-22 Thread Jacob Hookom
Is it possible to get the url-pattern of the Filter during the init(FilterConfig)? Jacob Hookom Comprehensive Computer Science University of Wisconsin, Eau Claire --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.375 / Virus

RE: load-on-startup in web.xml

2002-07-17 Thread Jacob Hookom
-config.xml/param-value /init-param init-param param-namedebug/param-name param-value2/param-value /init-param init-param param-namedetail/param-name param-value0/param-value /init-param load-on-startup2/load-on-startup /servlet Jacob Hookom CS Student University

RE: DataSource Access - Design Question

2002-07-15 Thread Jacob Hookom
had zero issues. //example factory configured by properties file DataSourceFactory dsf = DataSourceFactory.getInstance(servlet.getServletContext()); DataSource ds = dsf.getDataSource(hrdb); Jacob Hookom CS Student University of Wisconsin, Eau Claire === http

RE: jdk1.4 vs jdk1.2

2002-07-14 Thread Jacob Hookom
make to your system itself, be sure to dump your working directory for tomcat. Jacob Hookom CS Student University of Wisconsin, Eau Claire === http://www.swanked.net you're not hip enough yet -Original Message- From: Luminous Heart [mailto:[EMAIL PROTECTED

[HELP!!] Tomcat 4.13 PageContextImpl.popBody() Exception

2002-07-13 Thread Jacob Hookom
there's the nested implementation now, is this something I should be extending or working from instead of the findAncestor? Maybe I'm completely off the source of the problem. I did read that tags are stored in a map essentially with a toPop Boolean value. If so, what dictates this value? Jacob Hookom

RE: how to make tomcat faster [jasper error]

2002-07-13 Thread Jacob Hookom
REALLY appreciate it! Jacob Hookom CS Student University of Wisconsin, Eau Claire === http://www.swanked.net you're not hip enough yet -Original Message- From: Reynir Hübner [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 9:05 AM To: Tomcat Users List

[FIXED] RE: how to make tomcat faster [jasper error]

2002-07-13 Thread Jacob Hookom
I had to dump my working directory... thanks though for the speed tips. Jacob Hookom CS Student University of Wisconsin, Eau Claire === http://www.swanked.net you're not hip enough yet -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent

RE: mail server

2002-07-12 Thread Jacob Hookom
JAMES! -Original Message- From: Jonathan Zhang [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 6:06 PM To: Tomcat Users List Subject: mail server hi, does any know a free and excellent mail server? --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system

RE: How to hide a download file

2002-07-11 Thread Jacob Hookom
I'm going to have to inevitably add it to my site soon, I was going to approach it the same way, but with a servlet isn't it possible to pipe a file by setting the response mime type and streaming it out as a PDF or EXE. Of course IE does it's own thing no matter the mime type. -Original

RE: log4j:ERROR No appenders could be found for category (org.apache.commons.digester.Digester).

2002-07-09 Thread Jacob Hookom
I ran into this problem when I updated to struts 1.1b1 since it already includes log4j implementations and my project had separately included the log4j.jar in my app's lib directory, it was causing problems. As soon as I removed the extra log4j.jar, then things ran fine without errors. I don't

RE: URGET - NEED HELP

2002-06-30 Thread Jacob Hookom
Do you have any firewall software running like black ice? Software like that will give you the same results as you described. -Original Message- From: Vlad [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 11:55 AM To: Tomcat Users List Subject: URGET - NEED HELP I can't seem to

Design Question: Static vs. Dynamic

2002-06-24 Thread Jacob Hookom
Hello All, I've been constructing a site for a corporate intranet using, of course, JSP and Struts Actions. The functionality of the site is basically a wrapper for a Database whereby each table of information has the Insert/Modify/Delete operation available through JSPs. I can expect 30-50

RE: Tomcat 4 performance issues - Trying Tomcat 4.1.3 Beta

2002-06-23 Thread Jacob Hookom
I have found performance problems with the new Coyote connector, it runs fine initially, but after about 2 hours of simple operation, it hangs on page requests at 4-6 seconds while at the same time, I can hit the standard HTTP connector on a different port, and requests are handled as expected

Tyrex Driver Renamed

2002-06-21 Thread Jacob Hookom
Hello, I just downloaded Tomcat 4.0.2 and I installed the Tyrex driver and properly configured my Server.xml. The problem is that Tomcat is looking for tyrex.jdbc.xa.EnabledDataSource (java.lang.NoClassDefFoundError), but the 1.0 release of Tyrex (the only one available at their site) has

RE: User LogIn/LogOut

2002-05-17 Thread Jacob Hookom
You could put an object in the session and in its finalize, it calls a static method on another object that is the 'logger' in this case, sending the user's UID. -Original Message- From: RamNivas [mailto:[EMAIL PROTECTED]] Sent: Friday, May 17, 2002 5:35 AM To: [EMAIL PROTECTED]

RE: PAUL ...customize error page ini Servlet

2002-05-17 Thread Jacob Hookom
Since you want to only setup your error pages once in the XML, on the servlet you can do (I believe) HttpServletResponse.sendError( int ); HttpServletResponse.sendError( HttpServletResponse.SC_FORBIDDEN ); And it will automatically forward to the appropriate pre-configured 404, 405, etc error

RE: Jsp window opener

2002-05-16 Thread Jacob Hookom
Here's a snippet from one of my apps script language=JavaScript1.2 function selectFile( p ) { window.opener.document.%= request.getParameter(textboxPath) %.value = p; window.close(); } /script -Original Message- From: Aline [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 16, 2002 8:31

Heap Size for Tomcat

2002-05-16 Thread Jacob Hookom
Hello All, I was wondering where I can modify the initial heap size settings for tomcat to use. Or more primarily, where the command line is that tomcat uses to initialize its VM. Thanks, Jake Hookom --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system

RE: Heap Size for Tomcat

2002-05-16 Thread Jacob Hookom
vm, such as mx128m or -D property=something . Jacob Hookom [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] du cc: Subject: Heap