RE: Struts Exception Handling

2003-12-01 Thread jacob hookom
(Throwable) to make sure I don't let any exceptions leak to the UI that I don't want to. In the cases of unhandled exceptions, I let the catch(Throwable) log the error, and then throw a SystemException which is handled by an exception handler to show a technical difficulties page. Jacob Hookom

RE: another site using struts

2003-04-05 Thread Jacob Hookom
That's a good comment about URLs. I'm using Struts to develop an informational site, but I'm using filters for URL rewriting to whatever controller I may use. http://www.alistapart.com/stories/urls/index.html A very good read. -Jacob | -Original Message- | From: Steve Raeburn

RE: Page Iteration

2003-04-02 Thread Jacob Hookom
If the data is coming from the DB, you should NOT pull down all the data and slap it in their session for paging. It's a waste of resources, especially if they found what they wanted on the first page. A better solution would be to use DB -specific bounding of the results returned, like MySql's

Composite Action

2003-04-02 Thread Jacob Hookom
either through the PlugIn interface, or from within an Action? Thanks! Jacob Hookom - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: design question about action chaining

2003-04-01 Thread Jacob Hookom
I had come to the conclusion that Struts Actions are moreover 'View Adapter Components' or VAC's (you can quote me on that one!) and should not be relied on for handling business logic or data collection by any means, just as a facsimile for pulling model/controller data into the view. I wrote a

RE: [OT] OJB or Hibernate??

2003-03-31 Thread Jacob Hookom
I'm working on an OJB Example app right now that uses User/Role management, Forum/Posts in 1:N relationships (as a side note, I'm still irked about tiles and it's heavy use of scriptlets). GOAL: Give me the top 5 most recently posted Forums ordered by most recently posted to -- a common thing on

RE: [OT] OJB or Hibernate??

2003-03-30 Thread Jacob Hookom
OJB all the way, you would be surprised at what it can do for complex queries and caching (ex, give me the five most recent forums ordered by their posts' time stamp: Criteria.addOrderBy(posts.created, true)). I can't say enough. Hibernate is on its way to OJB, but OJB just gets better and

[Tiles] putList() Displaying

2003-03-30 Thread Jacob Hookom
if it's a list and iterate over the results to display them-- again, I may have completely missed it in the documentation? Best Regards, Jacob Hookom - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Do Struts increase developer productivity?

2003-03-28 Thread Jacob Hookom
I think you can do the kid in a candy store thing with Struts all too easily. As with any project, make sure you set your goals in a design doc, just because struts can do it, doesn't mean you should do it. I had a project hit a wall because my boss kept asking if I could do this and that, yeah,

RE: Design Doubt

2003-03-26 Thread Jacob Hookom
Dao's like OJB will help you with performance. I wouldn't recommend storing anything in the session like with the display tag, that's way too much wasted memory. -Jacob | -Original Message- | From: Jagadeesan,Sivakumar [mailto:[EMAIL PROTECTED] | Sent: Wednesday, March 26, 2003 5:33 PM

RE: struts: JSP expression not evaluated

2003-03-25 Thread Jacob Hookom
No, you will need to use single quotes for it to work properly. You should also look at the html:link documentation for better ways of handling this instead of using scriptlets (%%). | -Original Message- | From: Timo Nentwig [mailto:[EMAIL PROTECTED] | Sent: Tuesday, March 25, 2003 11:53

RE: [Q] Navigation framework

2003-03-24 Thread Jacob Hookom
What's wrong with an action having multiple action forwards or do a session bean that dictates the flow that the actions can check against for forwarding? -Original Message- From: Chetan Sahasrabudhe [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 11:40 PM To: Struts Users

RE: [Q] Navigation framework

2003-03-24 Thread Jacob Hookom
Users Mailing List | Subject: Re: [Q] Navigation framework | | Consider the scenario where i want to drop a form or add a form in my | wizard. are u suggesting me to modify code for the same ? | | btw, I am not using EJBs itz just a web side project. | | - Original Message - | From: Jacob

RE: user active vs. user role

2003-03-21 Thread Jacob Hookom
What I do for applications is: User fills out form and set their password. The DB has an extra field called status for every table. That status gets set to a 16 character random String that gets sent in an email to their specified address. In that email is a link to: www.site.com/[EMAIL

RE: Caching Drop Down List Box Strategies?

2003-03-13 Thread Jacob Hookom
A few questions in response: Is the data querying time such that it constitutes caching, albeit the frequency that the data changes? When caching is brought up, ask yourself how often is the data accessed as opposed to how often it changes. If you are using up memory in the servlet context for

RE: JSF

2003-03-08 Thread Jacob Hookom
I apologize Craig. I should have ended my statement with ... for me. From the Sun Forums, I can see that others are having the same problem. I was told to stay tuned for a fix with the Digester issue-- without a solid work around. I've tried swapping the packaged jars with JSF with newer

RE: JSF

2003-03-07 Thread Jacob Hookom
No problems downloading, but wait for EA4, EA3 has a major bug in it and won't even initialize on tomcat 4.18+ | -Original Message- | From: Edgar Dollin [mailto:[EMAIL PROTECTED] | Sent: Friday, March 07, 2003 6:40 PM | To: [EMAIL PROTECTED] | Subject: JSF | | Has anyone else had a

RE: CSS stylesheet

2003-03-06 Thread Jacob Hookom
Sometimes you don't have the luxury of deploying your app at the root of domain. | -Original Message- | From: apachep2 [mailto:[EMAIL PROTECTED] | Sent: Thursday, March 06, 2003 1:38 PM | To: 'Struts Users Mailing List' | Subject: RE: CSS stylesheet | | I don't understand why people want

RE: struts IDE

2003-03-06 Thread Jacob Hookom
Yeah, and how does JSF affect Struts? | -Original Message- | From: Chappell, Simon P [mailto:[EMAIL PROTECTED] | Sent: Thursday, March 06, 2003 9:54 AM | To: Struts Users Mailing List | Subject: RE: struts IDE | | So ... how is that 1.1 release coming? ;-) | | Simon | | -Original

RE: [ANNOUNCE] Struts-JavaServer Faces Integration Library -- Early Access Version Now Available

2003-03-06 Thread Jacob Hookom
What about the Digester Bug in EA3? | -Original Message- | From: Craig R. McClanahan [mailto:[EMAIL PROTECTED] | Sent: Thursday, March 06, 2003 10:17 PM | To: [EMAIL PROTECTED]; [EMAIL PROTECTED] | Subject: [ANNOUNCE] Struts-JavaServer Faces Integration Library -- Early | Access Version

RE: [ANNOUNCE] Struts-JavaServer Faces Integration Library -- Early Access Version Now Available

2003-03-06 Thread Jacob Hookom
I was getting logging errors, replaced commons-logging was replaced with an older version-- it got rid of the logging exception. Still getting now the attribute xml exception that I posted about in the JSF forum: http://forum.java.sun.com/thread.jsp?forum=427thread=368179 -Jacob |

RE: [ANNOUNCE] Struts-JavaServer Faces Integration Library -- Early Access Version Now Available

2003-03-06 Thread Jacob Hookom
| | What about the Digester Bug in EA3? | | | You mean the one you get if you try using Faces under JWSDP 1.1? That's | still being investigated (it's something weird in the class loading that | changed between 1.0 and 1.1). | | Craig I'm running 4.18 (Jan 17th), I remember downloading

RE: What is the best struts plugin for Eclipse?

2003-03-03 Thread Jacob Hookom
ANT -Original Message- From: alexj [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 4:11 AM To: Struts Users Mailing List Subject: Re: What is the best struts plugin for Eclipse? easy struts is the best :) -- Alexandre Jaquet - Original Message - From: Alban Soupper

RE: Best place to syncronize within struts.

2003-03-03 Thread Jacob Hookom
Synchronization should take place at the lowest denominator possible. The other thing to do is create a caching filter for your web content that stores the page for 2-5 minutes before it refreshes itself. -Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED] Sent: Monday, March

RE: Is struts-config too verbose?

2003-02-27 Thread Jacob Hookom
Mark Wrote: The problem i see here is, this contact form will always be processed by the same action servlet, and forwarded to the same forward. What If I had several different scenarios that needed to edit/view the contact data, maybe even Different contact data such as User Contact, Customer

Any Known Bugs?

2003-02-21 Thread Jacob Hookom
I'm wondering with the issues that module users are having, if using modules or not, the 1.1bx releases require you to strictly bind the ActionServlet to *.do Many thanks to everyone, Jacob - To unsubscribe, e-mail: [EMAIL

RE: [OT] What's your IQ?

2003-02-20 Thread Jacob Hookom
129 - I'm joining the High IQ Society! | -Original Message- | From: alexj [mailto:[EMAIL PROTECTED]] | Sent: Thursday, February 20, 2003 8:53 AM | To: Struts Users Mailing List | Subject: Re: [OT] What's your IQ? | | -12 | - Original Message - | From: Brandon Goodin [EMAIL

RE: [OT] mailing list question

2003-02-20 Thread Jacob Hookom
John, What you need to do is click on the yellow icon that looks like blocks breaking apart. Once you do that, click on an email from the struts mailing list in your inbox and the rest is self explanatory. -Bocaj | -Original Message- | From: Curley, John [mailto:[EMAIL PROTECTED]] |

[OT] Transaction Script Pattern (Fowler)

2003-02-20 Thread Jacob Hookom
Has anyone implemented the Transaction Script pattern-- possibly with DTOs? If so, can you send me a snippet of code so I can see how you used it with Struts? Thanks, Jacob - To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: tags to deal with hashmaps

2003-02-19 Thread Jacob Hookom
Hello, The same place you downloaded struts has documentation on how to accomplish getting values from hashmaps. http://jakarta.apache.org/struts/doc-1.0.2/struts-logic.html#iterate -Bocaj | -Original Message- | From: asatrasala [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, February 19,

RE: cache the response and cache-example.war

2003-02-18 Thread Jacob Hookom
Look at OSCache from opensymphony.com | -Original Message- | From: Ginger Cheng [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, February 18, 2003 10:52 AM | To: Struts Users Mailing List | Subject: cache the response and cache-example.war | | Hello, | Is there any other way to

RE: Generate XML documents from Beans

2003-02-13 Thread Jacob Hookom
Check out betwixt if you want a simple API for transforming your Business Objects into XML. If you want a method of manipulating XML documents, then I recommend Xalan/Xerces. -Jacob | -Original Message- | From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] | Sent: Thursday, February 13,

RE: blocking unauthorized users

2003-02-13 Thread Jacob Hookom
Do a session scoped variable instead of a parameter. Also, as far as I know, request parameters don't pass over into request attributes, so checking for an attribute on your resource instead of a parameter (which a person can fake) might solve that problem. -Jacob | -Original Message- |

RE: Need Advise: use Struts/XSLT

2003-02-12 Thread Jacob Hookom
You are better off creating a TransformationFilter that will work with 2.3 Servlet Specs (Tomcat 4.1.x). The filter would catch the response, wrap it with an HttpServletResponseWrapper and send it on to your jsp where it would take the data written to the print writer or outputstream and

RE: [OT] RE: a product or code to read email and update database

2003-02-12 Thread Jacob Hookom
You are probably better off doing something web based so stuff gets uploaded to a server and the boss logs in to approve. It would save A LOT of platform problems with different email clients putting junk in the mail message and then making the message unparsable. -Jacob | -Original

RE: Struts 1.1b Memory Leak?

2003-02-10 Thread Jacob Hookom
It might just be jasper with all of the custom tags. Latter Tomcat 4.1 releases greatly increase performance with custom tags. | -Original Message- | From: Rich Snowdon-Smith [mailto:[EMAIL PROTECTED]] | Sent: Monday, February 10, 2003 2:13 PM | To: Struts Users Mailing List | Subject:

RE: General Question

2003-02-10 Thread Jacob Hookom
You may need to elaborate; but I think you might want to double the fields to compare the original against the editable if you want to keep the transaction request based, otherwise you might want to use the Unit of Work or Memento pattern in managing the transaction. Check either Design Patterns

RE: Some questions about struts

2003-02-10 Thread Jacob Hookom
You can have the ActionServlet determine where the source XML is coming from. Then, either forward to a JSP and use JSTL to handle the rendering, or use a transformer and write directly to the OutputStream within the ActionServlet, and return null instead of an ActionForward. -Jacob |

RE: Newbie Question

2003-02-10 Thread Jacob Hookom
ArrayList components = (ArrayList) service .gatherAccessory(Bean.getContainer()); session.setAttribute(someKey, components); -or- request.setAttribute(someKey, components); !-- jsp -- logic:iterate id=item name=someKey scope=session //or request scope

RE: Some questions about struts

2003-02-10 Thread Jacob Hookom
and | populate the servlet context like this ? : |getServletContext().setAttribute(LOCALES_KEY, locales); | | | | | | | Jacob Hookom wrote: | You can have the ActionServlet determine where the source XML is coming | from. Then, either forward to a JSP and use JSTL to handle

RE: Some questions about struts

2003-02-10 Thread Jacob Hookom
Yeah, digester is sooo neat that I use it to brush my teeth at night. -Jacob ;-) | -Original Message- | From: Peng Tuck Kwok [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, February 11, 2003 1:28 AM | To: Struts Users Mailing List | Subject: Re: Some questions about struts | | Craig R.

RE: Newbie Question

2003-02-10 Thread Jacob Hookom
the examples seem to work :-) | | Thanks for your help | Ray Madigan | | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Monday, February 10, 2003 10:24 PM | To: 'Struts Users Mailing List' | Subject: RE: Newbie Question | | | ArrayList components = (ArrayList

RE: [OT] how do people work in project with one server for development

2003-02-06 Thread Jacob Hookom
I use windows' mstsc to access other computers, it's the best (and of course native) solution there is out there for remote computing. ATTT labs has another slim line product that does the same as PCAnyWhere but there's a java applet client for it, of course there's also one available for

RE: [OT] concurrent updates

2003-02-05 Thread Jacob Hookom
Another alternative to time stamping is auto incrementing a field in the row, so when you check out an object, you set a long value in your object, during an update, ask the DB for its current ID and if it's the same or not. -Bocaj | -Original Message- | From: news [mailto:[EMAIL

RE: [OT] Which Object Relational mapping tool?

2003-02-04 Thread Jacob Hookom
the resulting output (the view itself) in most cases. Someone please enlighten me as to why someone would want to use O/R mappers :-) Best Regards, Jacob Hookom | -Original Message- | From: Mark Chaimungkalanont [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, February 04, 2003 10:24 PM | To: [EMAIL

RE: [OT] Which Object Relational mapping tool?

2003-02-04 Thread Jacob Hookom
. Sorry for the OT Jacob | -Original Message- | From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, February 05, 2003 1:10 AM | To: Struts Users Mailing List | Subject: RE: [OT] Which Object Relational mapping tool? | | | | On Tue, 4 Feb 2003, Jacob Hookom wrote

RE: one desing question, Revisited

2003-01-31 Thread Jacob Hookom
I'm going to save you from getting flamed java does not allow multiple inheritance. You can only extend from a single Object. -Jacob | -Original Message- | From: Ashish Kulkarni [mailto:[EMAIL PROTECTED]] | Sent: Friday, January 31, 2003 9:34 AM | To: [EMAIL PROTECTED] | Subject:

RE: one desing question, need help

2003-01-30 Thread Jacob Hookom
Or, you could do a filter that would setup the connection and properties in the request to these actions, then after they are done, return the connection or close it, and essentially clean up whatever you created. Filters Rock! - Area Culligan man | -Original Message- | From:

RE: one desing question, need help

2003-01-30 Thread Jacob Hookom
from where the | connection comes) | | | | | | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Thursday, January 30, 2003 5:42 PM | To: 'Struts Users Mailing List' | Subject: RE: one desing question, need help | | | Or, you could do a filter that would setup

RE: one desing question, need help

2003-01-30 Thread Jacob Hookom
where the | connection comes) | | | | | | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Thursday, January 30, 2003 5:42 PM | To: 'Struts Users Mailing List' | Subject: RE: one desing question, need help | | | Or, you could do a filter that would setup

RE: Filters and Struts

2003-01-27 Thread Jacob Hookom
It is in the 2.4 Servlet Spec, but I'm not fully sure if it's included in 2.3, which is 4.1.x I believe. | -Original Message- | From: David Graham [mailto:[EMAIL PROTECTED]] | Sent: Monday, January 27, 2003 10:35 AM | To: [EMAIL PROTECTED] | Subject: Re: Filters and Struts | | I could be

RE: Filters and Struts

2003-01-27 Thread Jacob Hookom
with Security Filters. -Jacob -Original Message- From: Sterin, Ilya [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 10:54 AM To: 'Jacob Hookom '; ''Struts Users Mailing List' ' Subject: RE: Filters and Struts Hmmm, I'm successfuly using it with 2.3 just filtering jsp pages

RE: Flash+Struts how?

2003-01-27 Thread Jacob Hookom
You will want to look at DOM serialization. We used it on a project here on campus to monitor wireless networking nodes by having our servlets return XML (SEE castor.org or commons betwixt here at Jakarta). There are many tutorials about parsing XML responses from web containers at flashkit.com

[OT] Filters and Struts - Caching Framework

2003-01-27 Thread Jacob Hookom
in starting up the cache libs again, not necessarily with my code, but do something similar to what the AXIS4STRUTS is doing, send me an email please. Best Regards, Jacob Hookom -Original Message- From: Sterin, Ilya [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 12:00 AM

RE: [OT] Friday!

2003-01-26 Thread Jacob Hookom
| -Original Message- | From: news [mailto:[EMAIL PROTECTED]] On Behalf Of V. Cekvenich | Sent: Sunday, January 26, 2003 11:52 AM | To: [EMAIL PROTECTED] | Subject: Re: [OT] Friday! | | Mark Galbreath wrote: | So you're unemployed and need some guidance? Turn up the volume and go | to:

AW: [OT] [Digester] Mapping Children to Parent Object

2003-01-23 Thread Jacob Hookom
are already written for use with digester's logger). Best Regards, Jacob Hookom -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 1:43 PM To: Struts Users Mailing List Subject: [OT] [Digester] Mapping Children to Parent Object This is a best

[OT] [Digester] Mapping Children to Parent Object

2003-01-22 Thread Jacob Hookom
Cache object, but still have that value passed to the parent (CacheController) for mapping purposes. Does anyone have any pointers as to how to best accomplish this without modifying my framework code just for Digester? Best Regards, Jacob Hookom -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: Re[2]: [OT] Eclipse IDE

2003-01-21 Thread Jacob Hookom
There's actually a new article at Javaworld about using Flash with XML/J2EE as a presentation layer. The article is a little underdone though. http://www.javaworld.com/javaworld/jw-01-2003/jw-0117-flash.html -Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Sent:

RE: [OT] Standardised Environments (was RE: [OT] Eclipse IDE)

2003-01-21 Thread Jacob Hookom
I have a question, why does cloning the tables or collection (such as in the Fast*** implementations in the Collections package) constitute fast? -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 1:14 PM To: 'Struts Users Mailing List'

RE: [OT] Eclipse IDE

2003-01-21 Thread Jacob Hookom
My amiga runs NetBeans just fine -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 1:22 PM To: [EMAIL PROTECTED] Subject: Re: [OT] Eclipse IDE Win2k, 1Ghz Pentium 3, 512 MB RAM, Sun JDK 1.4.1 and the menus still don't respond like a native

RE: [OT] Standardised Environments (was RE: [OT] Eclipse IDE)

2003-01-21 Thread Jacob Hookom
(was RE: [OT] Eclipse IDE) No such thing. Collections is a class. -Original Message- From: Jacob Hookom [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 2:23 PM ...(such as in the Fast*** implementations in the Collections package) -- To unsubscribe, e-mail: mailto:[EMAIL

RE: DAO and Struts Best Practice

2003-01-17 Thread Jacob Hookom
a single row instead of a whole table-- leaving you with finer grained entities to work with. http://www.bookpool.com/.x/mc78r21de4/sm/0321127420 Jacob Hookom -Original Message- From: Phase Web and Multimedia [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 10:16 AM To: Struts

RE: DAO and Struts Best Practice

2003-01-17 Thread Jacob Hookom
of by a 3rd party class. -Jacob Hookom -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: DAO and Struts Best Practice

2003-01-17 Thread Jacob Hookom
You might want to look at Castor for XML/JDBC The simplest solution is to write an intermediate layer. Struts calls specialized methods on this layer to handle calls to multiple persistence services, invisible to your struts code. So you can have a method called getAllEmployees() that might

RE: Axis/SOAP proposal for Struts

2003-01-17 Thread Jacob Hookom
I'm so excited that I think I've soiled myself... -Original Message- From: Robert McIntosh [mailto:[EMAIL PROTECTED]] Sent: Friday, January 17, 2003 12:36 PM To: Struts Users Mailing List Subject: Re: Axis/SOAP proposal for Struts I hear ya! I got excited thinking of the possibilities.

RE: The best way for learning struts (stupid question)

2003-01-16 Thread Jacob Hookom
which again, just output the data fetched by the Struts Action. Anyways, I think I went on for a little to long, but I hope you can find some good info in the mess. Jacob Hookom -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Complete tutorial on Digester?

2003-01-16 Thread Jacob Hookom
Strut's source code, Craig or whomever wrote all the configuration/setup procedures with Digester. -Jacob Hookom | | Cheers | | Simon | | Institut fuer | Prozessdatenverarbeitung | und Elektronik, | Forschungszentrum Karlsruhe GmbH, | Postfach 3640, | D-76021 Karlsruhe, | Germany. | | Tel: (+49

RE: complexed structures/objects

2003-01-16 Thread Jacob Hookom
| -Original Message- | From: news [mailto:[EMAIL PROTECTED]] On Behalf Of V. Cekvenich | Sent: Thursday, January 16, 2003 10:34 AM | To: [EMAIL PROTECTED] | Subject: Re: complexed structures/objects | | Check out nested tags for starters. No! JSTL, is the best way to go and quickly

RE: Struts app design for multiple client types

2003-01-16 Thread Jacob Hookom
the returning response and do an XSLT transformation on it and set the appropriate headers. This output can be cached for faster access next time. Jacob Hookom | -Original Message- | From: Kris Schneider [mailto:[EMAIL PROTECTED]] | Sent: Thursday, January 16, 2003 3:13 PM | To: Struts Users

RE: Struts app design for multiple client types

2003-01-16 Thread Jacob Hookom
can take XSL from an XHTML formatted form tag and do an xsl:copy to manipulate or duplicate the xml output. | | Quoting Jacob Hookom [EMAIL PROTECTED]: | | If you are dealing with two platforms, I would say use filters. Request | processes would go like such: | | www.mysite.com/public

RE: Using a Digester to get recursive types from an xml file.

2003-01-15 Thread Jacob Hookom
The newer digester versions allow you to do: */item for the path to allow for recursion. | -Original Message- | From: Simon Kelly [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 6:03 AM | To: Struts Users Mailing List | Subject: Using a Digester to get recursive types from

RE: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Jacob Hookom
What?! Do you have a link?? :-) | -Original Message- | From: Thomas CORNET [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 7:39 AM | To: Struts Users Mailing List | Subject: RE: How to let a user click a column header to sort data in a tab | le u sing struts? | | | Hello

RE: How to let a user click a column header to sort data in a table using struts?

2003-01-15 Thread Jacob Hookom
://edhill.its.uiowa.edu/display-examples-0.8/Wrapper.java.txt Hope this helps Jacob Hookom The Enverio Group http://www.enverio.com | -Original Message- | From: Heligon Sandra [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 7:46 AM | To: 'Struts Users Mailing List' | Subject: RE: How to let

RE: How to let a user click a column header to sort data in a tab le u sing struts?

2003-01-15 Thread Jacob Hookom
BOMBZ!! That's really cool. It works in Mozilla too FYI. -Jacob | -Original Message- | From: Thomas CORNET [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 7:55 AM | To: Struts Users Mailing List | Subject: Re: How to let a user click a column header to sort data in a tab

[OT] RE: Not spam...I swear--

2003-01-15 Thread Jacob Hookom
Yeah, it would be nice to have some job offers for new college graduates from nationally accredited universities with lots of java programming experience especially those who have been developing in struts for over a year now ;-) | -Original Message- | From: Joe Barefoot

RE: How to let a user click a column header to sort data in a table using struts?

2003-01-14 Thread Jacob Hookom
You might want to check out the display tag. Google display tag it comes with many sorting features including grouping | -Original Message- | From: Jason Yam [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, January 15, 2003 12:52 AM | To: Struts Users Mailing List | Subject: How to let a

RE: Add paramaters to a forward dynamically

2003-01-11 Thread Jacob Hookom
I'm surprised that works, I usually add everything to the request as an Attribute, and since I'm usually using JSTL for page renders, it's all the same as far is the page is concerned for variables. Forwarding occurs as normal then without parameter declaration. I thought there was an issue with

RE: XSLT Struts

2003-01-07 Thread Jacob Hookom
Do you just cache the data as a blob in the db and then just push it to the output stream of the response then? I've downloaded the BasicPortal source, but haven't had the time to go through it all yet. -Original Message- From: news [mailto:[EMAIL PROTECTED]] On Behalf Of V. Cekvenich

RE: RE: Struts - XML/XSL

2002-12-30 Thread Jacob Hookom
Has anyone successfully developed an XSLT filter that could be used with MVC frameworks yet? -Original Message- From: Puneet Agarwal [mailto:[EMAIL PROTECTED]] Sent: Monday, December 30, 2002 7:27 AM To: [EMAIL PROTECTED] Subject: Re: RE: Struts - XML/XSL Jeff, This looks good, but this

RE: struts books - review

2002-12-24 Thread Jacob Hookom
Best Buy doesn't carry any books on Struts, you may want to try Borders or Bookpool.com -Original Message- From: Puneet Agarwal [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 24, 2002 7:04 AM To: Struts Users Mailing List Subject: Re: struts books - review David, There are number of

RE: [Book Review] Struts Kick Start

2002-12-20 Thread Jacob Hookom
, the requests for BO's should be handled by the Service layer to allow swapping of persistence logic later without changing the presentation layer. Simon probably has more info, but I think the integration/service layer is the bombz. Truth be told, most any addition of a layer is good ;-) Regards, Jacob

Re: StrutsCX

2002-12-16 Thread Jacob Hookom
Struts CX is currently not threadsafe, it will be fixed in the next release. - Original Message - From: Lenharcik, Juraj [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 16, 2002 5:29 AM Subject: StrutsCX Hi all, does anyone has done something with struts CX? I would be

Re: File Upload Tutorial

2002-11-05 Thread Jacob Hookom
download the struts binary and deploy the struts-upload.war, it will have explanations and source code available. Or, even just unzip the struts-upload.war to look at the source. - Original Message - From: Brandon Chee [EMAIL PROTECTED] To: struts-user [EMAIL PROTECTED] Sent: Tuesday,

Re: [OT] Memory Footprint of DynaX vs. BO

2002-11-02 Thread Jacob Hookom
, 31 Oct 2002, Jacob Hookom wrote: Date: Thu, 31 Oct 2002 22:51:32 -0600 From: Jacob Hookom [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: [OT] Memory Footprint of DynaX vs. BO By implementation, I'm

Re: Using Frames in Struts

2002-11-01 Thread Jacob Hookom
. Can u please elobrate on the point Alok - Original Message - From: Jacob Hookom [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, November 01, 2002 12:24 PM Subject: Re: Using Frames in Struts Are you sure that with frames, you don't have 2 sessions

[MVC] Pull C-V

2002-10-31 Thread Jacob Hookom
I was wondering if there was a way to pull action forwards into the current action much like filter chaining. The execute method would access a bunch of data from the model, then use it within the pulled Action, then close/free up the used Objects. This would require the ability to also send

[OT] Memory Footprint of DynaX vs. BO

2002-10-31 Thread Jacob Hookom
By implementation, I'm assuming that DynaX uses an underlying Map to store properties. I'm wondering how using a Map to store attribute data differs from storing the same data in BO's along the lines of memory consumption? Regards, Jacob Hookom

Re: Using Frames in Struts

2002-10-31 Thread Jacob Hookom
Are you sure that with frames, you don't have 2 sessions running? Usually you have a single page that initiates the session, then forwards to the frames pages. - Original Message - From: Alok Garg [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, November

RE: static pages

2002-10-26 Thread Jacob Hookom
You can setup a filter according to the new Servlet Spec to restrict access to static content via Role management (SEE TOMCAT MANUAL). But as for Struts specifically, I'm not completely sure. | -Original Message- | From: Beast [mailto:beast;setuid.com] | Sent: Saturday, October 26, 2002

RE: Stop auto fill in html:password

2002-10-26 Thread Jacob Hookom
The html:password in the form object or the general IE form auto-filling? | -Original Message- | From: Billy Ng [mailto:kwokng;earthlink.net] | Sent: Saturday, October 26, 2002 5:00 PM | To: Struts Users Mailing List | Subject: Stop auto fill in html:password | | Hi folks, | | IE will

RE: Zero-copy persistence with Struts?

2002-10-25 Thread Jacob Hookom
That's the thing though, granted objects are passed by reference, but, with cached rowset, each call to the db will result in the creation of a new set of container objects to hold all of the fields (container for all rows, a container for each column of that row). The only real resolve to this

RE: Struts XML

2002-10-23 Thread Jacob Hookom
Check out Stxx - http://www.oroad.com/opencode/stxx/ | -Original Message- | From: Wendy Smoak [mailto:Wendy.Smoak;asu.edu] | Sent: Wednesday, October 23, 2002 11:18 AM | To: 'Struts Users Mailing List' | Subject: Struts XML | | | Currently I'm calling a database subroutine (in an

RE: Zero-copy persistence with Struts?

2002-10-23 Thread Jacob Hookom
Why not look at an OJB/Castor implementation? Through Object caching and identity referencing, there are (in near all cases) only a single instance of any object in memory, plus the addition of hands-free lazy loading of collections/relations, OJB is REALLY appealing for web applications. -Jacob

[OT] Working with File System

2002-10-21 Thread Jacob Hookom
Hey All, If we are storing large amounts of files on the server, is it acceptable (performance wise) to be querying directories straight from the file system? I realize Tomcat does this for directory browsing, but I don't know if it will scale well enough that I would need to cache the results?

[FRIDAY] Quote of the Day

2002-10-18 Thread Jacob Hookom
Based on yesterday afternoon's mudslinging I learned long ago, never to wrestle with a pig. You get dirty, and besides, the pig likes it. -George Bernard Shaw -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail:

RE: [OT] Online Tutorial?

2002-10-11 Thread Jacob Hookom
Eclipse lets you use emacs bindings :-) | -Original Message- | From: Brian Hickey [mailto:[EMAIL PROTECTED]] | Sent: Friday, October 11, 2002 8:47 AM | To: Struts Users Mailing List | Subject: Re: [OT] Online Tutorial? | | LOL! | | No no no. EMACS (nee TECO) rules.. :o) | | B | |

[FRIDAY] Quote of the Day

2002-10-11 Thread Jacob Hookom
There are 10 kinds of people in this world, those who understand binary and those who don't -Bubba -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Pre-popluating the select dropdown.

2002-10-08 Thread Jacob Hookom
That's because they usually end in RTFM http://jakarta.apache.org/struts/doc-1.0.2/struts-html.html#options | -Original Message- | From: Kavitha Ranga [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, October 08, 2002 7:50 PM | To: 'Struts Users Mailing List' | Subject: RE: Pre-popluating

RE: Pre-popluating the select dropdown.

2002-10-08 Thread Jacob Hookom
| html:option value=2two/html:option | /html:select | | But the value attribute does not work. | | Any help is highly appreciated. | Kavitha | | -Original Message- | From: Jacob Hookom [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, October 08, 2002 8:59 PM | To: 'Struts Users Mailing List

RE: Persistence Framework Comparison?

2002-10-04 Thread Jacob Hookom
I've always thought of a DAO not as an Adapter pattern as what you are describing, but as an external Table Gateway. BO interfaces and even the implementing classes shouldn't need to know how to persist itself or even what to persist to (XML, DB, IO). That is up to the implementing Gateway. I

  1   2   3   >