RE: Servlet testing tools

2003-09-15 Thread Hookom, Jacob
Cactus project from Jakarta, and then there's HTML Unit that might appeal to you more. -Original Message- From: Darryl L. Pierce [mailto:[EMAIL PROTECTED] Sent: Monday, September 15, 2003 8:29 AM To: Tomcat Users List Subject: Servlet testing tools I'm looking for a tool to use for

META-INF - JNDI Datasource resolution

2003-09-10 Thread Hookom, Jacob
Currently, we are having some issues with hot deploying wars from ant tasks and relying on our context being specified in the META-INF folder. We are getting a connection = 'null' when a war is used, but if we expand the war, using the same context, into a folder, then it works fine. From what

RE: Memory leaks?

2003-09-04 Thread Hookom, Jacob
But depending on the DB, it can cause problems from the DB with too many open ResultSets... I had an issue with performance testing where everything but ResultSets were being closed and the Oracle DB started throwing errors after about 500 queries. Better safe than sorry. -Original

RE: Which is the best way to install an application with connecti on p ooling

2003-09-03 Thread Hookom, Jacob
I'm trying to accomplish a similar thing with an AS/400 db over JNDI. I have my context setup in my meta-inf and from stack traces; I see that DBCP is the one launching the error, so I know that the context binding is loading successfully. The problem is that DBCP is throwing and exception that

War Development w/ JNDI Datasources

2003-08-18 Thread Hookom, Jacob
Hi All, We are currently developing an application and using CVS to manage our source code. Our goal is to be able to pull down the project off of CVS and with a single Ant target, get the application up and running on a local install of Tomcat. The problem that has risen is that our

RE: I have a problem!!!

2003-08-18 Thread Hookom, Jacob
There are a couple of books out there from Macromedia on application development with Flash MX. Most of the integration that can occur with J2EE is via RPC with SOAP/Web Services. It's VERY new and so I would recommend finding a book from Macromedia on it. -Jacob -Original Message-

RE: UserDatabase implementations

2003-08-18 Thread Hookom, Jacob
The documentation on Tomcat's web site describes how to do this: http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html In my experience, the authentication provided here is very simple where the only assumption is that there is a username (principal) and that username has a list of

Unit Testing

2003-08-14 Thread Hookom, Jacob
We are looking to do unit testing of our DAO components that currently leverage DataSource lookup via Java Naming. Are there UnitTests already out there that would give me that JNDI environment to test our code in? I know Cactus provides testing of Servlets, etc, but does that also provide me

RE: MY ATTITUDE

2003-02-11 Thread Hookom, Jacob John
Don't wallow in the mud with pigs, you will get dirty and the pigs will like it -Lorrie Ardion -Original Message- From: Steve Burrus [mailto:[EMAIL PROTECTED]] Sent: Tue 2/11/2003 8:53 PM To: Tomcat Users List Cc: Subject: Re: MY

RE: Can someone tell me please.........

2003-02-07 Thread Hookom, Jacob John
get and set on what? try getAttribute() setAttribute() -Original Message- From: Steve Burrus [mailto:[EMAIL PROTECTED]] Sent: Fri 2/7/2003 2:38 PM To: [EMAIL PROTECTED] Cc: Subject: Can someone tell me please.

RE: Loading XML Files - Best Pracitices

2003-01-05 Thread Hookom, Jacob John
I've used it on a few projects-- XSLT Dom to Dom transformations are a little buggy yet. Dom4j's web site does offer some links to benchmarks: http://www.dom4j.org/benchmarks/xpath/index.html Dom4j vs. Xalan with XPath Queries http://www-106.ibm.com/developerworks/library/x-injava2/ Dom4j vs.

RE: Loading XML Files - Best Pracitices

2003-01-04 Thread Hookom, Jacob John
I recommend Dom4j, it offers the best overall performance out of the XML libs and it works really well for large files with the ability to prune on read. www.dom4j.org -Original Message- From: Jacob Kjome [mailto:[EMAIL PROTECTED]] Sent: Sat 1/4/2003 1:58 PM

Filters, MVC, ResultSets

2002-10-28 Thread Hookom, Jacob John
Hey All, Everyone says for performance purposes, working directly with the resultset is optimal. But, with MVC, we can't just push the RS to the JSP to display and ignore closing. Is it possible with Filters to do a M-C1-V-C2 where C1 sets resultsets in the request, then pushes the

RE: Filters, MVC, ResultSets

2002-10-28 Thread Hookom, Jacob John
PROTECTED] Cc: Hookom, Jacob John Subject:Re: Filters, MVC, ResultSets I suggest you use vectors and beans (collection of beans) to poblate rs and then close de resultset, and use a class to connect to database (jdbchelper class), i send you an example

Realm Security Implementation Question [OT]

2002-08-21 Thread Hookom, Jacob John
We are trying to figure out a way to handle realm-based security in a multi-application environement where users and their roles are specified in a DB. Users are stored in one table with password and there is a table for each application definining permissions for the user. I have been

RE: filtering -- 2 servlets

2002-07-21 Thread Hookom, Jacob John
you might want to look at implementing Filters to handle redirection that just checked the request and passes the user off. -Original Message- From: Mark Beecroft [mailto:[EMAIL PROTECTED]] Sent: Sun 7/21/2002 7:30 PM To: Tomcat Users List; Jacob Kjome