Re: has struts reached the saturation

2006-03-15 Thread Nick Heudecker
Then again, I'm probably the easiest guy to sell a car too... be straight with me from the start, and even if your story (read; price) isn't as good as the salesman who isn't as straight, you probably made the sale :) I've got a loads of stuff to sell you. I don't know how well it works,

Re: [OT] Anyone else mess around with Wicket?

2006-01-21 Thread Nick Heudecker
I figure I'm obligated to respond, since my comments were cited in the original email. :) I have to disagree with complaints about Wicket's complexity, but only because I've been using it to build a product for the last few months. Without heavy usage, I don't think I'd have the same positive

Re: more on wicket

2006-01-16 Thread Nick Heudecker
...which are currently configured by what, XML? Doesn't this remove some of the zero-conf advantages? And, there's going to have to be a way to configure it in 1.2 somehow also. I guess almost zero configuration isn't as catchy? :-) There is configuration, but it's minor and contained in

Re: more on wicket

2006-01-16 Thread Nick Heudecker
The rawInput variable is set in the FormComponent when the validation starts. If validation succeeds, rawInput is set to an internal constant and processing continues. If validation fails, the rawInput for each FormComponent is still available and is rendered on the input page. As far as adding

Re: [OT] If you hate positioning with css raise your hand... actually some help:)

2006-01-03 Thread Nick Heudecker
Have you tried the table, table-row and table-cell display properties? But if that works, I'd just go back to tables.

DispatchAction parameter getting dropped by IE

2005-12-01 Thread Nick Heudecker
Occasionally, one my my users will receive the following error message: javax.servlet.ServletException: Request[/foo] does not contain handler parameter named 'p'. This may be caused by whitespace in the label text. There isn't any whitespace in the label text, and this only occurs with IE.

Re: DispatchAction parameter getting dropped by IE

2005-12-01 Thread Nick Heudecker
Now I'm thinking this has something to do with the charset not getting set in IE. Users are copying and pasting content from Word into textareas and getting this error. Is it possible Tomcat can't parse the incoming form data and nothing gets passed to the Action? On 12/1/05, Nick Heudecker

Re: DispatchAction parameter getting dropped by IE

2005-12-01 Thread Nick Heudecker
be an impossibility. If you figure it out, let me know, I'd be very thankful! :) -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com AIM: fzammetti Yahoo: fzammetti MSN: [EMAIL PROTECTED] On Thu, December 1, 2005 12:45 pm, Nick Heudecker said

Re: STRUTS AND JAVADOC.

2005-11-04 Thread Nick Heudecker
I didn't know people were still using Strutsdoc. I should probably start maintaining it again. On 11/4/05, Collin VanDyck [EMAIL PROTECTED] wrote: Hi Soren, You can javadoc your Struts Java types, although I'm not sure of a way to get your Struts configurations in normal JavaDoc. You

Re: [OT] How fast can you code?

2005-09-30 Thread Nick Heudecker
Too bad I won't be there. I'd win using just cat and sed to write code. ;) On 9/30/05, James Mitchell [EMAIL PROTECTED] wrote: For those who might have missed it (especially if you live in or near Atlanta, GA): There is a coding competition being held on Wed (next week)...check it out!

Re: Hibernate data at startup

2005-09-29 Thread Nick Heudecker
You have a few options. To initialize Spring, you can either use the Struts plugin or the web app context listener. Once that's done you can either use a startup servlet or a Struts plugin to load the data and put it into the servlet context. That way it only needs to be loaded once and is shared

Re: Error: java.lang.ClassCastException: org.apache.struts.taglib .htm l.MessagesTei

2005-08-15 Thread Nick Heudecker
This error is caused by a jsp-api.jar in your application. On 8/15/05, Laurie Harper [EMAIL PROTECTED] wrote: You said you were using Struts 1.2.7. I'm guessing those 1.1 TLDs are declaring the TEI class Tomcat's failing to load in the old location. Try using the TLDs (and other configuration

Re: Struts and Hibernate lazy

2005-08-09 Thread Nick Heudecker
The most common way to solve this problem is to use the Open Session In View pattern, which leaves the Hibernate session open until the JSP has finished rendering. Typically accomplished with a filter, there is also a Struts plugin to help with this pattern. Google for Open Session In View and

Re: XSL:FO orJasper Reports

2005-08-08 Thread Nick Heudecker
I would go with JasperReports. Make sure to also download iReport, which is a great time-saver. On 8 Aug 2005 07:58:16 -, d d [EMAIL PROTECTED] wrote: I am generating reports from Oracle DB in my struts application, I am confused whether to use XSL:FO or Jasper Reports to generate

Re: XSL:FO orJasper Reports

2005-08-08 Thread Nick Heudecker
See if this helps: http://jasperreports.sourceforge.net/tutorial/index.html#parameters On 8/8/05, Rafael Taboada [EMAIL PROTECTED] wrote: Talking about JasperReports and iReports... I'm trying to generate my reports using iReports in order to make my .jrxml. I'm trying to make my SQL query

Re: Good Java host

2005-07-31 Thread Nick Heudecker
I use eapps.com and have been very happy with them. On 7/31/05, Martin Gainty [EMAIL PROTECTED] wrote: James- Steer clear of RCN I hosted with them and found out later they are a TV Cable company that got into Internet hosting as a 'side business' Plus RCN tech support is pretty much

Re: [STRUTS 2X]: Ideas

2005-07-31 Thread Nick Heudecker
I think there are a lot of people out there who feel as you do, but backwards-compatibility has always been a major theme for those While backwards compatibility is nice, I would rather see a better framework for the 2.x release. My personal opinion is that version compatibility should be

ClassCastException

2005-07-25 Thread Nick Heudecker
I'm using Tomcat 5.5, JDK 1.5, Struts 1.2.7 and Tiles. I'm getting the following exception when I navigate to a Tiles page, I'm getting the following: java.lang.ClassCastException: org.apache.struts.taglib.tiles.UseAttributeTei at

Re: [OT] UML class diagrams

2005-07-11 Thread Nick Heudecker
ArgoUML will do it. On 7/11/05, David Whipple [EMAIL PROTECTED] wrote: Anyone have any suggestions for an opensource/freeware tool for reverse engineering java code to class diagrams? Thanks, Dave - To unsubscribe,

Re: Printing Bills

2005-07-06 Thread Nick Heudecker
I would either use JasperReports to create a simple report definition, or use IText to create the PDF. When we tried to use FOP, we had to embed the fonts which resulted in HUGE PDFs. On 7/6/05, Martin Gainty [EMAIL PROTECTED] wrote: Rafael Now I understand.. You can use Crystal Reports to

Re: Sending dynamic parameters to a forward

2005-06-14 Thread Nick Heudecker
Here's something I'm using to accomplish this: http://www.systemmobile.com/wp/?p=114 It's pretty simple, but can be refit to be fairly complex. On 6/14/05, Frank W. Zammetti [EMAIL PROTECTED] wrote: Sorry, my bad... it's not setURL, it's setPath. It's actually a method of ForwardConfig, which

Re: Cannot find bean error in any scope

2005-05-10 Thread Nick Heudecker
or as you say change the message resources default - or even make it always null=false? I prefer this suggestion. Speaking only for myself, null=false is the most sensible default. - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: PDF Streamed To Client

2005-04-26 Thread Nick Heudecker
Brian: This is pretty simple. Just get the output stream from the response object and stream the file down. Return null from the Action's execute method: private void returnFile(File f, OutputStream out) throws IOException { FileInputStream fis = null; try { fis

Re: Dispatch Action Whitespace In Label Text and Missing Parameters

2005-04-26 Thread Nick Heudecker
, IE strips out spaces and newlines. Maybe it related somehow. Maybe your value actually DOES contain spaces, and IE sometime strips them out, but sometimes don't (hm, why?). Michael. On 4/19/05, Nick Heudecker [EMAIL PROTECTED] wrote: I've run into a strange problem with DispatchAction

Re: PDF Streamed To Client

2005-04-26 Thread Nick Heudecker
-Original Message- From: Nick Heudecker [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 26, 2005 1:47 PM To: Struts Users Mailing List Subject: Re: PDF Streamed To Client Brian: This is pretty simple. Just get the output stream from the response object and stream the file down

Re: [OT] xdoclet actionforms

2005-04-21 Thread Nick Heudecker
The validator tags must be on the setter methods, not the getters. On 4/21/05, Nils Liebelt [EMAIL PROTECTED] wrote: Hi, I am using the webdoclet module to generate my struts-config.xml. It works very nice for my action classes. But for some reason I doesn't parse the tags in my Form

Dispatch Action Whitespace In Label Text and Missing Parameters

2005-04-19 Thread Nick Heudecker
I've run into a strange problem with DispatchAction occasionally failing to find the parameter used to lookup the method to process the request. I get the following familiar error: Request[myAction] does not contain handler parameter named 'method'. This may be caused by whitespace in the label

Re: [OT]question about open source data base selection

2005-04-11 Thread Nick Heudecker
Refer to the End users section in the following document: http://dev.mysql.com/tech-resources/articles/mysql-network-and-you.html On Apr 11, 2005 1:55 PM, Fogleson, Allen [EMAIL PROTECTED] wrote: Dave, I'm confused here. What do you mean by link to it? If I simply use the connector-J

Re: PDFs with IE - a fix

2005-02-28 Thread Nick Heudecker
Damn. That's had me stumped for months. I forced the client to upgrade to Firefox. :) On Mon, 28 Feb 2005 10:21:28 -0700, Larry Meadors [EMAIL PROTECTED] wrote: Sorry for the cross-post, but if anyone is having issues serving up pdfs to IE users over ssl, here is a fix for the browser:

Re: ActionForm vs. DynaActionForm

2005-02-21 Thread Nick Heudecker
XDoclet works great with DynaForms. Here's a link to a doc I wrote about it: http://www.systemmobile.com/articles/XDocletDynaForms.html On Mon, 21 Feb 2005 12:09:14 -0500, Benedict, Paul C [EMAIL PROTECTED] wrote: Any other takers? If any Struts committers have opinions, please share them.

Re: Struts In Action - Still up to date?

2005-02-18 Thread Nick Heudecker
Yes, the index will be expanded and updated as well, including all of the newly added reference material. On Fri, 18 Feb 2005 10:00:58 -0800, Shey Rab Pawo [EMAIL PROTECTED] wrote: I don't know how others feel, but if you could talk the editors into a more expanded index, that would be really

Re: Off Topic Post Air Time vs. Struts Answers

2004-09-14 Thread Nick Heudecker
Terry: I agree with you that struts-user is mostly noise, although you phrased it much better than I did. I know it's frustrating to have your question go unanswered, but I really don't think it's intentional. There is so much cruft on this list, with the same questions asked repeatedly, that

Re: html:cancel usage

2004-09-07 Thread Nick Heudecker
I believe the validation still happens because the validation step occurs before the appropriate method in the action class in determined. I got around this by turning off automatic validation. On Tue, 07 Sep 2004 16:59:48 +, andy wix [EMAIL PROTECTED] wrote: Hi, When using the

Re: site shutdown best practice?

2004-09-07 Thread Nick Heudecker
You could set a property in the context scope that flags the 'maintenance page' or something. To detect the flag, you could use a filter to redirect the user to the maintenance page, or have your base Action class look for the flag and react accordingly. Ideally, you'd do this from some form of

[ANNOUNCE] XDoclet Struts DynaForm 1.2.2 SNAPSHOT

2004-08-17 Thread Nick Heudecker
-module-1.2.2-SNAPSHOT.jar The full text of the README may be found here at: http://www.systemmobile.com/code/xdoclet-dynaform-README.txt An example may be found at: http://www.systemmobile.com/code/Person.java -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http

Re: Réf. : Re: ActionForm vs Hibernate POJO

2004-08-03 Thread Nick Heudecker
who's combined FormDef and Hibernate and was pleased with the results. Hubert -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http://www.systemmobile.com - To unsubscribe, e-mail: [EMAIL PROTECTED

[ANNOUNCE] StrutsDoc 0.5 Released

2004-07-28 Thread Nick Heudecker
an example here: http://www.systemmobile.com/strutsdoc/example/ Feedback, especially on problems and feature requests, is always welcome. -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http://www.systemmobile.com

Re: [OT] Cvs windows

2004-07-27 Thread Nick Heudecker
and i'd greatly appreciate the benefit of anyone's experience who works like this. Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Nick Heudecker System Mobile, Inc. Email

Re: [OT] RTF PDF export options

2004-07-19 Thread Nick Heudecker
. wrote: Any suggestions for converting html to RTF and PDF inside an action class and then sending the RTF or PDF back to the client? Open source tools, code snippets, tips tricks, etc. ?? Thanks a bunch. Brian Barnett -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Phone

Re: Simplifying struts-config.xml

2004-07-08 Thread Nick Heudecker
Look into the wildcard plugin. http://www.twdata.org/struts-wildcard/ Michael McGrady wrote: Is there a way to do the following using less real-estate in struts-config.xml? If not, there should be: action path='/admin_help' type='com.crackwillow.struts.action.ForwardAction'

Re: Unit Testing with MockStrutsTestCase -- non-string request parameters

2004-06-18 Thread Nick Heudecker
] For additional commands, e-mail: [EMAIL PROTECTED] -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http://www.systemmobile.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Unit Testing with MockStrutsTestCase -- non-string request parameters

2004-06-18 Thread Nick Heudecker
to implement this, but my client wants to keep everything in mock objects rather than use an in-container approach. Is there a way to test import using MockStrutsTestCase, or do you need to use Cactus? Thanks, George -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http

Re: help message resources

2004-06-18 Thread Nick Heudecker
] For additional commands, e-mail: [EMAIL PROTECTED] -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http://www.systemmobile.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Enumerating sessions

2004-06-15 Thread Nick Heudecker
-url.com/go/onm00200361ave/direct/01/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http://www.systemmobile.com

Re: [OT] A first look at Spring vs Struts

2004-06-14 Thread Nick Heudecker
custom things in Struts, and this is where I think Struts falls a little short compared to frameworks like Spring since it is less flexible. -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http://www.systemmobile.com

Re: How to display error msgs in a pop up window

2004-06-02 Thread Nick Heudecker
. _ Check out the coupons and bargains on MSN Offers! http://youroffers.msn.com - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Nick Heudecker

Re: Struts and Hibernate

2004-04-07 Thread Nick Heudecker
which was the result of poor judgment Bill Putnam - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http

Re: Struts and Hibernate

2004-04-07 Thread Nick Heudecker
both native and identity without succes. -- _ Mario St-Gelais www.gestionti.com Good judgment comes from experience- usually experience which was the result of poor judgment Bill Putnam -- Nick Heudecker System Mobile, Inc. Email: [EMAIL PROTECTED] Web: http