RE: Beta 1 update

2002-03-18 Thread Immanuel, Gidado-Yisa
Just trying to get an idea of the proposed (minimum) version of the various commons packages needed to build struts 1.1. Here's what I've got so far: COMPONENTVERSION/CVS-TAG NEEDED TO BUILD commons-beanutils1.3 struts-core commons-digester

RE: Beta 1 update

2002-03-18 Thread Immanuel, Gidado-Yisa
I was primarily concerned with the Struts 1.1-final, and not the nightlies (though I did send my message before I read your response to James). Also, I was a little bit curious as I had not heard about any planned releases for pool/dcbp/validator/services on commons-dev list (though I don't

RE: struts 1.1 doc (UserGuide: 2.6 accessing relational databases)

2002-03-05 Thread Immanuel, Gidado-Yisa
has notes or revised documentation to share regarding using the new features, that would be equally great. -Ted. Immanuel, Gidado-Yisa wrote: Since the method ActionServlet.findDataSources() has been deprecated, it would be great if the doc for the 1.1 release could show

Notes on building Struts from scratch (CVS Main)

2002-03-05 Thread Immanuel, Gidado-Yisa
I was trying to build struts from source (nightlies and CVS-MAIN), and found it a little less than straight forward. I did not see any help in the archives...So this text documents my trials to succesfully build struts from scratch...it's here for the record. Also, if there is a much simpler

RE: Notes on building Struts from scratch (CVS Main)

2002-03-05 Thread Immanuel, Gidado-Yisa
on commons-dev before, so I'm not certainly not baiting that discussion. Anyway, as I recall, JJAR should take care of the automating getting the right version of a dependent-library. Thanks for hearing me out, Gidado -Original Message- From: Immanuel, Gidado-Yisa [mailto:[EMAIL

struts 1.1 doc (UserGuide: 2.6 accessing relational databases)

2002-03-04 Thread Immanuel, Gidado-Yisa
Since the method ActionServlet.findDataSources() has been deprecated, it would be great if the doc for the 1.1 release could show the recommended method of doing this (not that it's difficult to figure out). - Gidado -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Prefix mapping versus Extension mapping

2002-03-04 Thread Immanuel, Gidado-Yisa
CURRENT STATE OF THE ART Currently, if I use prefix mapping like this: servlet-mapping servlet-namecontroller/servlet-name url-pattern/projects/*/url-pattern /servlet-mapping Then when I go to http://localhost/CONTEXT/projects/View the url is broken down into: context path:

Limits of custom-tags in JSP

2001-11-14 Thread Immanuel, Gidado-Yisa
I ran into this problem a couple weeks ago, and I just thought I would relay it to the group. We were in the process of putting a dynamically generated report together (quick and dirty) using struts. Here's a little bit of information about the platform we were running on: Platform:

RE: Struts Code Generators

2001-07-27 Thread Immanuel, Gidado-Yisa
As we write, there is a discussion of Torque/texen going on in Jakarta-commons. The thread started with a proposal (DataModel) which is existing code that has functionality similar to Torque. see: http://www.mail-archive.com/jakarta-commons%40jakarta.apache.org/msg02659.ht ml - Gidado

RE: Struts 1.1 To-Do - RowSets

2001-07-11 Thread Immanuel, Gidado-Yisa
Hi Craig, NOTE: if you decide to go this way, I'd prefer that the work be done on the commons version of these classes. I want to migrate Struts 1.1 to these (as soon as I go create releases over there). Sorry to bug you (I know you've been busy with Tomcat, Struts, JavaOne [what

TODO 1.1 - XML Digester

2001-06-25 Thread Immanuel, Gidado-Yisa
The todo list shows for: XML Digester [org.apache.struts.digester] the following task: Refactor Dependencies. Refactor import dependencies, here and within the utilities package, with the goal of being able to use the Digester package in standalone applications without having to

Object Models and patterns in Struts

2001-06-15 Thread Immanuel, Gidado-Yisa
This is a quick note of some things I've been thinking with regards patterns for web app development. It's divided into four sections: 1. My understanding of Struts-MVC 2. Content Object Models 3. Patterns 4. Questions MY UNDERSTANDING OF STRUTS-MVC -- Just

double checked-locking

2001-05-24 Thread Immanuel, Gidado-Yisa
I noticed an instance where double checked-locking (DCL) is used in Struts: org.apache.struts.action.ActionServlet lines 1561 - 1586 According to the article below: http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html But after further inspection, I think that what goes

Clarification on behavior of bean:include

2001-05-03 Thread Immanuel, Gidado-Yisa
Consider the following JSP Pages Main.jsp %@ taglib uri=bean prefix=bean % bean:define id=poweredbyTitle value=h2Economic Report By County/h2 toScope=request / jsp:include page=PoweredBy.jsp flush=true/ PoweredBy.jsp - %@ taglib