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 have

tag.

2009-04-30 Thread Edward Song
Thanks in advance for reading, I have a register.jsp page.  Here is a short snippet. <%-- other unrelated fields here --%>         The action is simply a method that sets a List of states and forwards it to a jsp to be rendered. The action mappings are not defined through the struts.xml,

Re: Convention Plugin and Action Chaining

2009-03-10 Thread Edward Song
quot;get"). > > musachy > > On Tue, Mar 10, 2009 at 1:42 PM, Edward Song > wrote: > > Thanks Musachy for your prompt response. > > > > Makes total sense. > > > > However, I now tried the following based on your reply > > > > GetActi

Re: Convention Plugin and Action Chaining

2009-03-10 Thread Edward Song
; wrote: > > Yes, you can chain actions if they are in the same package: > > > > > http://cwiki.apache.org/WW/convention-plugin.html#ConventionPlugin-Chaining > > > > musachy > > > > On Tue, Mar 10, 2009 at 11:52 AM, Edward Song > > wrote: > >>

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 (/administ

Re: Struts Themes Problem - help

2009-03-05 Thread Edward Song
or additional commands, e-mail: user-h...@struts.apache.org > > > > > > > -- > Jim Kiley > Technical Consultant | Summa > [p] 412.258.3346 [m] 412.445.1729 > http://www.summa-tech.com > -- Regards, Edward Song Java Web Developer 631-396-5000 x306

RE: DispatchAction nonexisting method

2008-03-06 Thread Edward Song
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 -Origin

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 n

RE: Struts 1.3.8 Plugins initializing twice

2008-01-03 Thread Edward Song
. 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: Struts 1.3.8 Pl

RE: Struts 1.3.8 Plugins initializing twice

2008-01-03 Thread Edward Song
ig); beanConfig.processExtends(moduleConfig); } So 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 twic

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 then the ActionServlet is not initialized

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 have

RE: Action name vs. attribute

2007-01-04 Thread Edward Song
me vs. 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 b

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 variety

RE: Retrieving DynaValidatorForm values with JSTL

2006-11-30 Thread Edward Song
Wendy you're right! Thanks. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 2:51 PM To: Struts Users Mailing List Subject: Re: Retrieving DynaValidatorForm values with JSTL On 11/30/06, Edward Song <[EMAIL PROTECTED]> wrot

RE: Retrieving DynaValidatorForm values with JSTL

2006-11-30 Thread Edward Song
those of a conventional JavaBean. So the code becomes Thanks again. Ed -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Thursday, November 30, 2006 2:35 PM To: Struts Users Mailing List Subject: Re: Retrieving DynaValidatorForm values with JSTL On 11/30/06, Edward So

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 : The form's name is SubscriptionProcessForm and the value to be retrieved from the form is country. Obviously I'm looking to