RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Jeff Schnitzer
uot;sort-of" :-) > The ActionMapping object is pluggable. Would extending that provide the > support you need in the config to assist with the transformations? I'm looking through the docs and javadocs, and I'm not sure. How do you plug it? And is it free to interpret

RE: Boost Struts with XSLT and XML - JavaWorld.com

2002-02-05 Thread Jeff Schnitzer
n/viewcvs.cgi/mav/maverick/examples/shu nting-jsp/WEB-INF/maverick.xml?rev=1.3&content-type=text/vnd.viewcvs-mar kup Perhaps there merging the two projects is worth investigating? Jeff Schnitzer [EMAIL PROTECTED] Maverick: http://mav.sourceforge.net >-Original Message- >From: Cha

RE: Performance of struts

2001-03-19 Thread Jeff Schnitzer
Struts should suffer the same performance issues as WebWork. There are a handful of benchmarks here: http://sourceforge.net/docman/display_doc.php?docid=2243&group_id=14797# Na96 The relative performance on a tag-heavy benchmark: Tomcat 3.2: ~380 milliseconds JRun 3.0: ~350 milliseconds Resin

RE: Alternative Frameworks

2001-03-13 Thread Jeff Schnitzer
Try WebWork: http://www.sourceforge.net/projects/webwork Very, very similar to Struts but simpler (and easier). Each have their plusses and minuses, IMHO. Jeff >-Original Message- >From: Perez, Bill [mailto:[EMAIL PROTECTED]] >Sent: Tuesday, March 13, 2001 10:54 AM >To: '[EMAIL PROTEC

RE: Minimizing Action class proliferation

2001-03-08 Thread Jeff Schnitzer
I've found very few cases where single inheritance has been a problem: Action -> MyActionBase -> MyAction is a useful pattern. My personal opinion is that you would be doing yourself a favor by breaking your aversion to lots of little files. That's why we have packages :-) Don't fight the fr

RE: Cannot find message resources underkeyorg.apache.struts.action.MESSAGE

2001-03-08 Thread Jeff Schnitzer
x27;s a very long word! :-) ) > >Different users may be running in different locales, so the message >resources need to be stored on a per-user basis. > >-- >Martin Cooper > >- Original Message - >From: "Jeff Schnitzer" <[EMAIL PROTECTED]> >

RE: Minimizing Action class proliferation

2001-03-08 Thread Jeff Schnitzer
>From: DONNIE HALE [mailto:[EMAIL PROTECTED]] > >Thanks for responding. I understand what you're saying re: >keeping the action classes simple. However, it still makes the >whole cycle more tedious than perhaps it needs to be. It's >harder to write "helper" methods, perhaps for bean >manipulat

RE: Cannot find message resources under keyorg.apache.struts.action.MESSAGE

2001-03-04 Thread Jeff Schnitzer
hanks, Jeff Schnitzer [EMAIL PROTECTED] >-Original Message- >From: Martin Cooper [mailto:[EMAIL PROTECTED]] >Sent: Sunday, March 04, 2001 7:21 PM >To: [EMAIL PROTECTED] >Subject: Re: Cannot find message resources under >keyorg.apache.struts.action.MESSAGE > >

RE: Cannot find message resources under key org.apache.struts.action.MESSAGE

2001-03-03 Thread Jeff Schnitzer
The problem is that the Orion classloader does not implement getResourceAsStream(). It's been logged in Orion's bugzilla. There are workarounds posted in the struts-user and orion-interest archives, mostly involving packaging the application in funny ways. Yuck. This was a brief conversation on