Re: Multi dimension array from form

2012-11-02 Thread Jeffrey Black
Z, Have a look at the following page: http://struts.apache.org/2.x/docs/html-form-buttons-howto.html I haven't worked through your use-case yet, but it may get you where you want to be. I've used these techniques in my apps. Best, jb On Nov 1, 2012, at 9:47 AM, Zoran Avtarovski

Re: Multi dimension array from form

2012-11-02 Thread Zoran Avtarovski
Thanks Jeffrey, In the end I went with using a string representation of the array '[firstIndex][secondIndex][value]' and then used a tokenizer to recreate the array. It was pretty straight forward in the end. I don't know why but I thought I'd used multi dimensional arrays like that in the past

[Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread John Boyer
Hi: I'm trying to move all of my action configurations out of the struts.xml file into annotations. For the most part it's working fine. Yet, for my actions that have results with no 'name' parameter it doesn't work. For example, the following entry in my XML works perfectly. action

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Jeff Black
Double-check your namespace.  What is the class-name of your action and the package? Jeff From: John Boyer j...@rodaxsoft.com To: Struts Users Mailing List user@struts.apache.org Sent: Friday, November 2, 2012 10:53 AM Subject: [Struts 2] How do I migrate an

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread John Boyer
Hi Jeff: In the struts.xml, the namespace is / and the package is default. package name=default extends=struts-default namespace=/ ... Do I need add this info as annotations to all my action classes? Thanks, John On Nov 2, 2012, at 12:11 PM, Jeff Black jeffrey.bl...@yahoo.com wrote:

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Ken McWilliams
Since you are using annotations I assume you are using the struts2-conventions-plugin? If so, then the package structure after struts2 or action is taken to be the namespace. If this is not the case then you would need to override it. On Fri, Nov 2, 2012 at 1:55 PM, John Boyer j...@rodaxsoft.com

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Jeff Black
John: Give the Convention Plugin documentation a look: http://struts.apache.org/2.3.1/docs/convention-plugin.html Jeff From: Ken McWilliams ken.mcwilli...@gmail.com To: Struts Users Mailing List user@struts.apache.org Sent: Friday, November 2, 2012 3:21

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Jeff Black
Hey there John. Are you using the Convention plugin? What is the classname of your action (e.g., org.blackj.common.action.TestAction.java)? Jeff From: John Boyer j...@rodaxsoft.com To: Struts Users Mailing List user@struts.apache.org; Jeff Black

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread John Boyer
Hi Jeff: Yes, I'm using the plugin. Unfortunately, the documentation isn't really helping or I'm missing some fundamental concept. Again, all my other annotations work fine (INPUT, ERROR, SUCCESS) except for the action described in this reply. To clarify, what I'd love to see is a simple

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Ken McWilliams
I don't understand, your result always has a name. The default is success and the type is by default dispatcher. So when you simply write result/WEB-INF/jsp/myPage. jsp/result those are implied. On Fri, Nov 2, 2012 at 3:27 PM, John Boyer j...@rodaxsoft.com wrote: Hi Jeff: Yes, I'm using the

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Ken McWilliams
Oh and please provide the full class name including package. You must have your action in a package that _ends_ with action or struts2 (or struts I think). Otherwise the package structure which follows that string will be interpreted as part of the package structure. On Fri, Nov 2, 2012 at 3:55

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Jeff Black
John -- My wife accuses me of being dense all the time so forgive me.  I infer from your comments that you are using a pass-through action to your jsp -- correct? If that is true, this works for me just fine:     @Action(value = start,     results = @Result(location =

Re: [Struts 2] How do I migrate an action with no result name to an annotation?

2012-11-02 Thread Ken McWilliams
Oh! With conventions you don't write any annotations! Simply create /WEB-INF/content/my-action.jsp then the action my-action will be found. You should stick to actions with hyphens as that is what conventions expects. You can't replace all of struts.xml with annotations. What Jeff proposes would