SQL Optimization Tools and Procedures

2009-06-19 Thread Edward Song
Here's a Friday discussion. As an application developer, I can write SQL pretty well, but I wouldn't say that I'm an expert. My last project I did run into some design and architecture issues that needed a little bit of reworking and refactoring. To help avoid this, I want to get better and

s:action tag.

2009-04-30 Thread Edward Song
Thanks in advance for reading, I have a register.jsp page.  Here is a short snippet. s:form theme=xhtml action=/user/save validate=true %-- other unrelated fields here --%     s:action name=states namespace=/resources executeResult=true/     s:submit value=Create %{domainModelObjectName}/

Convention Plugin and Action Chaining

2009-03-10 Thread Edward Song
Hi all, This question concerns the Convention Plugin, specifically in regards to Action Chaining. I am using Struts 2.1.6 I have the following package structure. com.company.web.actions.administrators.GetAction (/administrators/get) com.company.web.actions.administrators.SaveAction

Re: Convention Plugin and Action Chaining

2009-03-10 Thread Edward Song
://cwiki.apache.org/WW/convention-plugin.html#ConventionPlugin-Chaining musachy On Tue, Mar 10, 2009 at 11:52 AM, Edward Song edward.s...@nuhorizons.com wrote: Hi all, This question concerns the Convention Plugin, specifically in regards to Action Chaining. I am using Struts 2.1.6

Re: Convention Plugin and Action Chaining

2009-03-10 Thread Edward Song
at 1:42 PM, Edward Song edward.s...@nuhorizons.com wrote: Thanks Musachy for your prompt response. Makes total sense. However, I now tried the following based on your reply GetAction.execute() returns ActionSupport.SUCCESS. forwards to get-success.jsp (renamed get.jsp, so

Re: Struts Themes Problem - help

2009-03-05 Thread Edward Song
-- Regards, Edward Song Java Web Developer 631-396-5000 x306

DispatchAction nonexisting method

2008-03-06 Thread Edward Song
Hi all, First, this is not a Struts 2 question.. And thanks to anyone who reads below. I was wondering how other's handled this problem with the org.apache.struts.actions.DispatchAction in Struts 1.3.9. I have an action that calls a data service that is to be presented to the user in

RE: DispatchAction nonexisting method

2008-03-06 Thread Edward Song
a NoSuchMethodException when the parameter specifies a method that does not exist. http://localhost:8080/myapp/UserOrders.do?export=amethodnamethatdoesnotexist So that's the issue, I'm having. It seems that the unspecified method is not a catch-all, method. Edward Song -Original Message

Struts 1.3.8 Plugins initializing twice

2008-01-03 Thread Edward Song
Hi all, Struts 1.3.8 I have a single struts module and it seems as though my plugins are getting loaded twice. This goes for the validator, tiles, and my own written plugins. I've found out that if in the web.xml I do not specify a value for load-on-startup then the ActionServlet is

RE: Struts 1.3.8 Plugins initializing twice

2008-01-03 Thread Edward Song
it looks as though, the plugin modules, specifically, are not being checked if they have already been processed. I'm not sure why, but probably there is some reason. However, I still do not know why ActionServlet.init() is called twice. Edward Song -Original Message- From: Randy

RE: Struts 1.3.8 Plugins initializing twice

2008-01-03 Thread Edward Song
be called once. For me it executes twice. I'm just trying to find out why this is the case. Edward Song -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Benedict Sent: Thursday, January 03, 2008 1:15 PM To: Struts Users Mailing List Subject: Re

RE: The design of bread crumb trail

2007-05-10 Thread Edward Song
I would use the paging feature in ActionForms A single ActionForm can be used for the wizard style data collection. It also hooks in with the validator, allowing you to specify that for page 1, only page 1 fields will be validated, such as your name and your SSN. Since the ActionForm can

RE: Action name vs. attribute

2007-01-04 Thread Edward Song
. attribute On 1/4/07, Edward Song [EMAIL PROTECTED] wrote: Hi all, STRUTS 1.2 Got a quick question on the Action name and attribute properties name - The name of the form bean associated with this action. This value must be the name attribute from one of the form-bean elements. This attribute

RE: tiles: error

2006-12-04 Thread Edward Song
When I run into that error, I usually look for a spelling error in my tiles definition. -Original Message- From: Asthana, Rahul [mailto:[EMAIL PROTECTED] Sent: Monday, December 04, 2006 11:49 AM To: Struts Users Mailing List Subject: RE: tiles: error This error comes due to a

Retrieving DynaValidatorForm values with JSTL

2006-11-30 Thread Edward Song
Hi all, I have a form stored within the session and am trying to dump some of the Form values in the presentation using JSTL. Specifically something like Country : c:out value=${sessionScope.SubscriptionProcessForm.country}/ The form's name is SubscriptionProcessForm and the value to be

RE: Retrieving DynaValidatorForm values with JSTL

2006-11-30 Thread Edward Song
DynaValidatorForm values with JSTL On 11/30/06, Edward Song [EMAIL PROTECTED] wrote: I have a form stored within the session and am trying to dump some of the Form values in the presentation using JSTL. Specifically something like Country : c:out value

RE: Retrieving DynaValidatorForm values with JSTL

2006-11-30 Thread Edward Song
/06, Edward Song [EMAIL PROTECTED] wrote: In JSP pages using the Struts Taglib, attributes of DynaActionForm objects can be referenced just like ordinary ActionForm objects. Wherever a Struts tag refers to a property, the tags will automatically use the DynaActionForm properties just like