Re: value bean

2006-09-29 Thread Eddie Bush
Good morning, Tom! Thinking back to how and why we have a form bean, you'll recall that it's wise for us to use String properties in our form beans. This is so that we can avoid type conversions in capturing user input. This ensures that we don't lose any information that the user has

Re: How to set size of submit button

2006-06-18 Thread Eddie Bush
Generally, what I will do to accomplish this is to use CSS. You can either use incline styles in the style attribute, or you could specify a style class with the styleClass attribute. It would necessarily take a more contrived solution if you weren't able to arrive at a fixed width for all

Re: How to set size of submit button

2006-06-18 Thread Eddie Bush
Frank, I don't think you could extract the width from the control's style unless you'd set it. I'd have to agree with you on that one. Isn't there a property on the control (width?) you could determine the width from? Maybe I answered too quick and should have done some research first. I

Re: Locale Aware Form Objects?

2005-08-14 Thread Eddie Bush
Hi Joe, I'm not sure I understand your question, but ... Here's what I do: I use form beans to tote data around. My labels, OTOH, are externalized and use bundles to achieve i18n, and this is all fairly transparent on the page. Here's what I think you want to do: If I understand you

Re: Security in Struts

2005-05-30 Thread Eddie Bush
Adam, Nothing put me off CMA :-) I think it's fantastic, if it fits your ticket. Unfortunately, in the environment I currently build apps for, CMA is not feasible. Sometimes you get your druthers - sometimes you look at the standard and decide how you can have your druthers, even if others

Re: I'm confused

2005-05-30 Thread Eddie Bush
. If that doesn't help, try elaborating more on what you mean. Just for clarification, you don't have access ot the session on the client side (since session data is stored on the server), so you can't set values in the session before the form submits. HTH, Eddie Bush - Original Message

Re: editing rows

2005-05-28 Thread Eddie Bush
Hi Martin, The important link here is the key for your row (row.id). Establish a way to pass that to your edit page, via a hidden field, for example, and that's really it. Recall (Struts 101) that we preface all pages (JSPs) with actions. ... so your action can take the ID value that was

Re: Shopping Cart

2005-05-28 Thread Eddie Bush
to view it. If you put thought into how you construct your queries, and have proper indices created, the user experience shouldn't suffer much. Hope that helps! Eddie Bush - Original Message - From: Michael Jouravlev [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org

Re: problem with logic redirect tag and tiles

2005-05-28 Thread Eddie Bush
Dave, It's about more than that. You can send some amount of data - couldn't tell you how much. The important thing is that the response has not been committed. It sounds to me as if Pauls' response has been committed (due to sufficient output having been sent). Essentially, you want to

Re: Security in Struts

2005-05-28 Thread Eddie Bush
to learn how to use SecurityFilter. That may not be the case for you. Hope that helps! Eddie Bush - Original Message - From: tarek.nabil [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Sent: Wednesday, May 25, 2005 5:12 AM Subject: Security in Struts Hi

Re: DynaActionForm and the 'pull' model

2005-05-28 Thread Eddie Bush
, the action classes are the place this coordination takes place. Doing things this way buys you a lot that is hard for me to convey in words. I'd strongly recommend using this approach though as it'll be far easier on you down the road. Regards, Eddie Bush - Original Message - From

Re: html:cancel question

2005-04-11 Thread Eddie Bush
cancel to work properly? -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Logging Question

2005-01-31 Thread Eddie Bush
is an issue if you are using FileAppender. -- Eddie Bush Thank you for removing unnecessary dialog when posting a response! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Catalog naming

2005-01-30 Thread Eddie Bush
) is less about the unimportant ones (me) and more about the important ones (you)? Is that the point? If not, what is? -- Eddie Bush Thank you for removing unnecessary dialog when posting a response! - To unsubscribe, e-mail

Re: [OT] Logging Question

2005-01-30 Thread Eddie Bush
to is(n't) compliant with it though? I'd wager it has something to do with how it loads classes ... Thanks all! Frank W. Zammetti -- Eddie Bush Thank you for removing unnecessary dialog when posting a response

Re: Struts, XHTML, DOCTYPES, and EL (several newbie questions)

2005-01-29 Thread Eddie Bush
NetBeans, so I don't recall. NetBeans knows about the tag attributes because of the TLD files. You can get better descriptions of the tags' attributes from the struts-documentation.war app (you might just install it in your container so you'll have it for reference). Good Luck! -- Eddie Bush

Re: JSTL vs logic:present

2005-01-29 Thread Eddie Bush
=${org.foo.ATTRIBUTE != null} but it didn't work. Neither did ${!empty org.foo.ATTRIBUTE}. Erik -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL vs logic:present

2005-01-29 Thread Eddie Bush
(), etc. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: XDoclet

2005-01-29 Thread Eddie Bush
files? -- Eddie Bush Thank you for removing unnecessary dialog when posting a response! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: JSTL vs logic:present

2005-01-29 Thread Eddie Bush
=bayernitem=chapters -- Wendy Smoak -- Eddie Bush Thank you for removing unnecessary dialog when posting a response! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] a java question

2005-01-28 Thread Eddie Bush
to add flexibility. Good Luck! -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Advise How to set alternative raow background color

2005-01-28 Thread Eddie Bush
... /c:otherwise td.../td /tr /c:choose /c:forEach Y'all would do well to use the JSTL where you can. The documentation for the Struts taglibs even says that. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL

Re: [OT] a java question

2005-01-28 Thread Eddie Bush
Smooth, Frank :-) -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: PlugIn and the base URL

2005-01-28 Thread Eddie Bush
trying to help. I am sure because I have gone through all the problems in one way or another related to this many times. Wasn't Martin the originator of this thread? Maybe you are talking about a sub-thread issue? Jack -- Eddie Bush

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
objects. Get a connection, use it, close it, and keep the open time to a minimum. Using a DataSource, you can open and close connections for almost no cost (in terms of time). In addition, unit testing that kind of architecture is a major PITA because of the setup required. Larry -- Eddie

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
. Thanks ;-) -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
, if frequently required, can be resource-intensive and may impact application performance. This is especially true if the clients and the services are located in different tiers -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
you could either post them and/or email me about what you've found out about it, I'd appreciate it. Thanks, Yaakov. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: New session on submit?

2005-01-28 Thread Eddie Bush
to the servlet container. Joe -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
. Standards aren't always best practice approaches, but getting DataSource instances from JNDI is a best practice. ... although I do like the idea of caching the DataSource instance, as mentioned earlier, in a private member of some class in your persistence layer. -- Eddie Bush

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
to the DataSource. I was simply saying that you should do it only once, not every time you need it. Yaakov. -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED] Sent: Friday, January 28, 2005 3:32 PM To: Struts Users Mailing List Subject: Re: Database Connection Workflow Question

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
PROTECTED] To: Eddie Bush [EMAIL PROTECTED] There were simple responses that could have been less than 10 lines but in fact were well over 300 lines. You did not object at all. An example will follow my signature. I submit that this is where you might put your efforts, rather than in trying to cut

Re: Database Connection Workflow Question

2005-01-28 Thread Eddie Bush
http://jakarta.apache.org/site/mail.html Most everyone was likely routed through this when they found the list to sign-up. Note the section entitled keep your email short and to the point. Also Ask Smart Questions is good. I should have thought to mention that before. -- Eddie Bush On Fri

Re: html:options

2005-01-28 Thread Eddie Bush
On Fri, 28 Jan 2005 16:53:16 -0800 (PST), Norris Shelton [EMAIL PROTECTED] wrote: javax.servlet.jsp.JspException: Cannot find bean under name -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: html:options

2005-01-28 Thread Eddie Bush
Jan 2005 16:53:16 -0800 (PST), Norris Shelton [EMAIL PROTECTED] wrote: javax.servlet.jsp.JspException: Cannot find bean under name -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: html:options

2005-01-28 Thread Eddie Bush
Sorry for the double post. G-Mail hiccuped. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: html:options

2005-01-28 Thread Eddie Bush
. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [OT] Re: constants interface

2005-01-23 Thread Eddie Bush
constants :-) Again ... no holy wars, please ;-) -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [ANNOUNCEMENT] New Struts subproject: Shale

2005-01-23 Thread Eddie Bush
The PMC makes such decisions, but takes the community into account when making the decision. -- Eddie Bush On Sun, 23 Jan 2005 13:13:15 -0800, Dakota Jack [EMAIL PROTECTED] wrote: At the risk of being flamed, might I ask if this debate, vote, whatever was public or limited to the PMC

Re: [OT] Re: constants interface

2005-01-23 Thread Eddie Bush
. Once you expose it to the public, that is not your choice. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Simple way to configure an action?

2005-01-23 Thread Eddie Bush
, singleton, factory, ... ), depending on what you're really trying to do. On Sun, 23 Jan 2005 22:42:20 +0100, Fredrik Jonson [EMAIL PROTECTED] wrote: Hello, I've only just started using struts, so I need some input on how to approach struts designs... snip / -- Eddie Bush

Re: support for *.do files

2005-01-23 Thread Eddie Bush
but this component is already installed in the server. And the Admin person is asking to give mime types for *.do Can some one throw some light on me please? What should I do to make *.do work in Apache HTTP Server? Any idea on Handlers would be helpful. Thanks Uma -- Eddie Bush

Re: support for *.do files

2005-01-23 Thread Eddie Bush
JkMount is what I was talking about. Looks like there is now a JkAutoAlias you can use to auto-map all applications, if you want them mapped in whole. To do them in part (have Tomcat serve dynamic content and Apache serve static content), it looks like you'll still want JkMount and JkUnmount.

Re: JDBC Driver

2005-01-21 Thread Eddie Bush
. After all, what have We The People of This Great Nation learned from the likes of Preston Thomas Tucker? Why, that's simple! The first product that gains acceptance among the masses is ALWAYS the best product and shall be questioned nevermore! --The Open Source Warlord Eddie Bush wrote: I

Re: [OT] Re: Session Strategy (here's a filter)

2005-01-21 Thread Eddie Bush
that the list of lists might grow as the product evolves . . . Erik Eddie Bush [EMAIL PROTECTED] 01/20/2005 11:59 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List user@struts.apache.org, Dakota Jack [EMAIL PROTECTED] cc

Re: Filter for Expired Sessions

2005-01-21 Thread Eddie Bush
. Frankly, the list policemen cause more difficulties on this list than they solve in my opinion. This, however, was close to the Keystone Cops. Ridiculous! Jack -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: commons-logging

2005-01-21 Thread Eddie Bush
is this the correct way to do it, because as of this implentation ActionForm does not seem to catch NumberFormatException (I use SQLQuery as a number for now...) thanks, Alex -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: JDBC Driver

2005-01-20 Thread Eddie Bush
. 2 good choices. I too do not use O/R at all. It just helps you leverage code that is tested and working. .V Eddie Bush wrote: ... actually, some of us. Why? Because our standards (rather, the standards of the company we work for) say that we're not using some hot-diggity O/R

Re: Session Strategy (here's a filter)

2005-01-20 Thread Eddie Bush
of code: Dakota Jack [EMAIL PROTECTED] 01/20/2005 11:07 AM I was looking for a filter that detected sessions that had expired and rerouted the request to a login or other appropriate page. Jack -- Eddie Bush

Re: Filter for Expired Sessions

2005-01-20 Thread Eddie Bush
it, send it to them and not the list! ... On Thu, 20 Jan 2005 09:56:14 -0800, Dakota Jack [EMAIL PROTECTED] wrote: I thought it would be best to put this where it would be easy to find for searchers. -- Eddie Bush

Re: How to limit the result?

2005-01-18 Thread Eddie Bush
. === - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush

Re: JDBC Driver

2005-01-18 Thread Eddie Bush
My blog http://www.sandrasf.com/adminBlog - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush

Re: Stuts forwarding does not work

2005-01-17 Thread Eddie Bush
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: How to detect empty array list / databean on JSP?

2005-01-16 Thread Eddie Bush
-mail: [EMAIL PROTECTED] -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Opinions needed - My plan for directing navigation afters session timeouts and update actions?

2005-01-14 Thread Eddie Bush
address records can be corrected. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush

Re: Stuts forwarding does not work

2005-01-14 Thread Eddie Bush
Please limit your stack traces! Each line into the trace becomes less and less meaningful ... unless you're trying to debug the application server/servlet container. I don't think that's your goal ... -- Eddie Bush

JSF Initialization

2005-01-13 Thread Eddie Bush
! -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: 2005

2004-12-31 Thread Eddie Bush
- From: Andrew Hill [EMAIL PROTECTED] To: strutsuser user@struts.apache.org Sent: Friday, December 31, 2004 10:09 AM Subject: 2005 And a happy new year to you all! -Andrew 2005-01-01 00:07 -- Eddie Bush

Re: Map-backed ActionForm and diff input types

2004-12-31 Thread Eddie Bush
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Required help to name a worksheet in xls

2004-12-26 Thread Eddie Bush
://jakarta.apache.org/poi/ They make it easy to do stuff like this. On Thu, 23 Dec 2004 12:43:17 +0530, Shiva Narayana [EMAIL PROTECTED] wrote: Hey this is new to me plz send me how u r creating the excel sheet.. I ll appreciate for it Regards -- Eddie Bush

Re: Struts Form Validation Question

2004-12-22 Thread Eddie Bush
PROTECTED] [EMAIL PROTECTED] wrote: Thanks for your help Eddie! Regex worked perfect. I had given up hope on getting right regex. Thanks Again! - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 20, 2004 12

Re: Inheritance of DynaActionForms

2004-12-22 Thread Eddie Bush
the creation of extra java classes ? Primarily, the advantage I see is that you don't have to code multiple sets of classes (1 for data transfer - 1 to use in your code that has all the real types). Thanks, Vijay. -- Eddie Bush

Re: html:file value

2004-12-21 Thread Eddie Bush
not use, copy, disclose, or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. Thank you for your cooperation. -- Eddie Bush

Re: Can we inherit form bean definitions

2004-12-21 Thread Eddie Bush
DynaActionClass. Can I inherit form bean definitions created using DynaActionForm? I want that I create one form-bean definition for common fields and use this form-bean definition in definition of form bean for other forms. Amit Gupta -- Eddie Bush

Re: about html:form tag

2004-12-20 Thread Eddie Bush
(using tags) ? I have doubt in setting the value form:checkbox name=advcForm property=advcId value=?/ plz get me a solution. -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Struts Form Validation Question

2004-12-20 Thread Eddie Bush
little bit so user is not confused. But I would like to show only one message irrespective of where the validation failed. Any Ideas ? Thanks for help! Rajesh Shah -- Eddie Bush - To unsubscribe, e-mail: [EMAIL

Re: JNDI with tiles controller

2004-12-20 Thread Eddie Bush
, - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Error Messages via redirect

2004-12-19 Thread Eddie Bush
via redirect? Regards, Ben -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Struts Form Validation Question

2004-12-19 Thread Eddie Bush
failed. Any Ideas ? Thanks for help! Rajesh Shah - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Eddie Bush

Re: test - my ISP is forcing me in order to track down the issue

2004-12-18 Thread Eddie Bush
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- -- Eddie Bush - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: test

2004-12-14 Thread Eddie Bush
Any word on when they might open that to GA? I'm curious to get a peek at it ... Eddie - Original Message - From: James Mitchell [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 1:30 PM Subject: Re: test If you

Re: Localize a dropdown select list

2004-12-14 Thread Eddie Bush
Bryan, Here's some thoughts: - Leverage the Java language's inherent ability to internationalize things. - Leverage commons-resources to internationalize things. - Use a database to internationalize things. They aren't necessarily mutually-exclusive options, although there's little

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-13 Thread Eddie Bush
Uma, That's being generated by the RequestProcessor. That means your ActionServlet instance loaded and is probably setup right. Do you have an action in your struts-config with a path of /test1? I'm betting you don't. You probably want to be using /testme.do, since that's what you've got

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-13 Thread Eddie Bush
Tomcat expects applications to be inside of the webapps directory. The base path for your app would be: $TOMCAT_HOME/webapps/myapp/ For simplicity, let's call this $APP_HOME Within that directory, you'd reference pages as relative to your context (like /somePage.jsp) in your struts-config

Re: Cannot find ActionMappings or ActionFormBeans collection

2004-12-12 Thread Eddie Bush
In order to have a request properly setup, you need to be going through the controller. To go through the controller, you need to be viewing an action instead of a JSP page. Try invoking an action that uses the template and see if the problem persists. You can't expect Struts to set things

Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-12-03 Thread Eddie Bush
in Eclipse! - Original Message - From: Eddie Bush [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, November 29, 2004 6:34 AM Subject: Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5 WTP = Web Tools Platform I've seen the Sysdedo plugin, but I was trying to keep my

Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-12-03 Thread Eddie Bush
, David -Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED] Sent: Friday, December 03, 2004 10:05 PM To: Struts Users Mailing List Subject: Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5 FWIW ... seems like having my Tomcat installation burried under Program Files etc was the culprit. I

Re: Automatic logging

2004-12-01 Thread Eddie Bush
and good luck ;-) Eddie Bush Thanks and Regards, Kinjal Sonpal In the real world, the right thing never happens in the right place at the right time. It is the task of journalists and historians to rectify this error. --Mark Twain --- avast! Antivirus

Re: Struts training

2004-11-30 Thread Eddie Bush
quote You will be introduced to Struts, the primary MVC framework for building Java Web Applications. /quot Doesn't sound like they go into it very deeply. It may be a very good class for a person that hasn't done any web development using Java technologies though. quot You should have

[OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-11-29 Thread Eddie Bush
Has anyone successfully setup IBM WTP with Tomcat 5 under Eclipse 3.01? Every time I go to fire the server off it fails and says there was a problem in thread main. I can launch Tomcat just fine from the command prompt or as a service :-| My guess is that it's doing something wrong in trying

Re: [OT] Eclips 3.01 + IBM WTP + Tomcat 5

2004-11-29 Thread Eddie Bush
Message- From: Eddie Bush [mailto:[EMAIL PROTECTED] ==== Has anyone successfully setup IBM WTP with Tomcat 5 under Eclipse 3.01? Every time I go to fire the server off it fails and says there was a problem in thread main. I can launch Tomcat just fine from the command prompt

Re: Validator outside Struts

2004-11-29 Thread Eddie Bush
Commons-Validator :-) You've got the wrong list, my friend. Try: http://jakarta.apache.org/commons/validator/ They have their very own user list (well, their very own shared user list!) ;-) http://jakarta.apache.org/site/mail2.html#Commons It's possible you might get some leads here, but I'd

Re: Automatic logging

2004-11-29 Thread Eddie Bush
:-) Look at commons-logging. It is a little more work up-front to learn how to work it, but you can do System.err type, and you could always plug Log4J into it (without changing your code) later if you feel the need ... or the JDK1.4 logger. It's pretty handy! Good Luck! Eddie Bush

Re: WAR based project layout vs Sun J2SE blueprint layout

2004-11-29 Thread Eddie Bush
Do people really deploy things to production like this? We generally just publish an EAR or WAR file to the server and keep the source in a versioning system. It seems like pretty wasteful space on a production server to have an application plus all the files that make up the application.

Re: WAR based project layout vs Sun J2SE blueprint layout

2004-11-29 Thread Eddie Bush
Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com Eddie Bush wrote: Do people really deploy things to production like this? We generally just publish an EAR or WAR file to the server and keep the source in a versioning system. It seems like pretty wasteful space

Re: WAR based project layout vs Sun J2SE blueprint layout

2004-11-29 Thread Eddie Bush
Our development servers are essentially our own workstations :-) Our development/test box we may only deploy to via a web interface. It's not so terribly convenient considering it's not typically necessary to publish things unless there's been significant advancement. Oh there's some times

Re: WAR based project layout vs Sun J2SE blueprint layout

2004-11-29 Thread Eddie Bush
that the designers work isnt lost and make sure its under source control properly. At the moment this is my major headache, as the designers are not great with technical things and mostly they use Dreamweaver exclusively. Thanks, Corey On Mon, 29 Nov 2004 20:31:02 -0600, Eddie Bush [EMAIL PROTECTED

Re: Setup Action without a form

2004-11-28 Thread Eddie Bush
You've got two choices that I see: 1 - Route requests into the controller 2 - Write a filter You say this is your welcome page. Is this your index? Generally, my index files contain nothing but a redirect to a global forward named index that sends the user to an action named /index.

Re: Virtual Host Struts Action Form

2004-11-24 Thread Eddie Bush
it this weekend. Happy Thanksgiving! Eddie Bush - Original Message - From: Steven Leija [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, November 24, 2004 11:45 PM Subject: Virtual Host Struts Action Form Hello All, I'm currenting running a virtual host

Re: Struts and Role specific Action Forwarding

2004-11-22 Thread Eddie Bush
... might be a bit simplistic, but could you perhaps name your forwards after your roles and just have your action handle things that way? ... if the model is the same ... Then, you wouldn't have to touch the Action class unless your model needed tweaking. Another thing you could condier is

Re: JerichoFaces ?

2004-11-21 Thread Eddie Bush
I think Joe makes a good point. Shale is what we have as a possible direction ... and it's being fleshed out. Jerico, better or worse, I don't think is. At this point, we're probably better to put our code where our mouths are, if we don't like the direction things are headed. flashback You

Re: Installation Getting Started Question

2004-11-21 Thread Eddie Bush
into Tomcat's webapps folder, fire up Tomcat, and play around with it :-) Feel free to examine the User Guide. There's tons of stuff around that's meant to make learning Struts easier. Good Luck! Eddie Bush - Original Message - From: Scott Purcell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: talking about paradigms

2004-11-16 Thread Eddie Bush
There are obvious benefits to using XSLT as cited earlier (taking one input to multiple outputs - ie. different clients). I personally think that debugging the transformations is a major pain. My primary exposure to this has been through a a couple of ASP/COM apps at work. To me, the pages

Re: talking about paradigms

2004-11-16 Thread Eddie Bush
, Eddie Bush [EMAIL PROTECTED] wrote: There are obvious benefits to using XSLT as cited earlier (taking one input to multiple outputs - ie. different clients). I personally think that debugging the transformations is a major pain. My primary exposure to this has been through a a couple of ASP/COM

Re: talking about paradigms

2004-11-15 Thread Eddie Bush
Leon, Being a developer is like ... being a Jedi Knight. You seek the good and thrive on it, but are forever tempted by the dark side. Eventually, you give in to it and learn why it's evil and then go back to the light. That is, unless you're so enthralled by the dark side that you become

Re: talking about paradigms

2004-11-15 Thread Eddie Bush
AMEN TO THAT. What a PITA ... UGH I don't like that! PAIN! Try to debug that mess! - Original Message - From: Bill Siggelkow [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 15, 2004 8:43 AM Subject: Re: talking about paradigms Sorry, I haven't been following this

Re: Authentication and Authorization

2004-11-05 Thread Eddie Bush
There used to be (haven't checked on it for a while) a project called Security Filter that was a security database implementation you could package with your application. I believe it was a SourceForge project. One of the projects I'm currently architecting has need for specialized security -

Re: PageFlow

2004-11-04 Thread Eddie Bush
Perhaps you meant to be looking at : http://struts.sourceforge.net/struts-flow/ I guess Google likes me more than it does you :-) - Original Message - From: Ben [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, November 04, 2004 6:24 AM Subject: Re:

Re: Need an alternative to bean:define

2004-11-04 Thread Eddie Bush
-Original Message- From: Eddie Bush [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 5:17 PM To: Struts Users Mailing List Subject: Re: Need an alternative to bean:define I would question anyone who told me I had to use something that is going away in the future (most of Struts

Re: Need an alternative to bean:define

2004-11-03 Thread Eddie Bush
I would question anyone who told me I had to use something that is going away in the future (most of Struts' taglibs), instead of using a standard technology (the JSTL). Are they fully-aware of the decision they're making? Are you running within a container that supports Servlet Specification

  1   2   >