RE: Struts 2 Annotation Tutorial (additional info)

2011-09-30 Thread Steve
Hello Lukasz, I'm using JBoss 5.1 via Eclipse and JBoss Tools. When I switched to Tomcat 6 and changed my logger's package it started to work. Makes you wonder what's up with JBoss? Thank you for your assistance. Steve -Original Message- From: Lukasz Lenart [mailto:lukasz.len...@goog

Re: Unit Test Struts2 Action - Custom type converters not being run?

2011-09-30 Thread Dave Newton
On Fri, Sep 30, 2011 at 11:21 AM, Carl Ballantyne wrote: > I had a User-conversion.properties file in the same package as the > User.java > file. However when the project was being built with maven it was not > copying > over the .properties files from the src/main/java folder. I opted to put it >

Re: Unit Test Struts2 Action - Custom type converters not being run?

2011-09-30 Thread Carl Ballantyne
In end the I figured out the problem. Thought I would post what the issue was in case anyone googles the same problem later. Basically the conversion properties file was not present. So no converter was being picked up. Simple but the properties file was sometimes present. A bit beyond the scope

Re: To create new session without invalidating existing one

2011-09-30 Thread Dave Newton
On Fri, Sep 30, 2011 at 7:46 AM, Ganesh wrote: > Is there any way to retireve the form data using request.getParameter(); If > the ID is part of hidden variable then it is returning null. Any ways to > retrieve data without using Form object. > If it's part of the form, and you're setting it, but

Re: To create new session without invalidating existing one

2011-09-30 Thread Ganesh
Thanks for all your suggesstions I am using Struts 1.x and i am planning to have session id. I need to set it as part of URL / set as a hidden variable in all JSP. Based on the ID, I will store a map of ID with Account objects in the session. Is there any way to retireve the form data using r

Re: To create new session without invalidating existing one

2011-09-30 Thread roger
You may want to take a look at the Scope plugin. This won't give you a new session, but it does provide an implementation of conversation scope which may suffice. Regards -- View this message in context: http://struts.1045723.n5.nabble.com/To-create-new-session-without-invalidating-existing-one-