Cannot find bean message in any scope

2006-02-13 Thread Chipo Hamayobe
Hi, I keep getting the error " Cannot find bean message in any scope" in most of my jsp pages. Anybody know whats causing this and how to fix it. It doesn't really say which bean has an invalid message. thanks -- Chipo **

Is Validator 1.2 compatible with Struts 1.1

2006-02-13 Thread Kalra, Ashwani
Hi, I want to use validator 1.2 with struts 1.1. The reason is that Validator 1.2 provides facility for reducing the size of struts-validator.xml file for multiple language and countries. Another question is how do I use non-default locale with struts for printing error messages ___

Re: Spring DelegatingActionProxy and Struts TestCase

2006-02-13 Thread anil_a
Hi Marco No I don't. You know, I just ran it again and test ran without any problem. Why it did broke down earlier? yet to find out. thanks anil public class testGenericProcessListing extends MockStrutsTestCase { public void setUp() throws Exception { super.setUp();

how to persist data in the form created with struts-velocity.

2006-02-13 Thread AKila Radhakrishnan
HI, I am new to struts-velocity projects. I am trying to persist the typed value into the form on clicking the back button of the browser or going back to the the page by clicking the "cancel button" on the current page.I am using velocity for view and using struts framework. How to I d

Re: Problem deploying older versions of my WAR in struts project

2006-02-13 Thread Laurie Harper
Jeff Bischoff wrote: Hello. Let me apologize in advance if this is really a jboss or tomcat problem, but as I am only getting Struts error messages, this seemed the place to ask. I have a fairly simple struts application which I generally deploy to JBoss in a .war file. I have archived these

Re: After refreshing Drop Down value has default data

2006-02-13 Thread Laurie Harper
Daniel Kies wrote: Hello...I have an app where you are on a page that has a drop down with select then some values. After you choose a value the form is submitted. Data is reloaded in the array list used to fill the form. WHen I get back to the page the drop down has the value in it that was pr

Re: Sharing the session between two war

2006-02-13 Thread VIJAISENTHIL, P. K.
Sorry not to mention that I am using OC4J as my app server Thanks in advance Vijai Senthil, P. K. - Original Message - From: "VIJAISENTHIL, P. K." <[EMAIL PROTECTED]> To: Sent: Monday, February 13, 2006 6:03 PM Subject: Sharing the session between two war Hi, I am deploying

Sharing the session between two war

2006-02-13 Thread VIJAISENTHIL, P. K.
Hi, I am deploying an ear file, which has two war files. (means with two different webcontext) I need to share the session values stored in one war file with other. Please let me know how to setup this in config files, if it can done. Thanks and Regards, Vijai Senthi

Re: modules

2006-02-13 Thread Joe Germuska
At 5:17 PM -0500 2/13/06, [EMAIL PROTECTED] wrote: Can someone explain to me the benefits of using modules? I can see how it will help logically compartmentalize different regions of an application so that developers will have a more manageable view of the project, but does it provide anything

RE: Problem deploying older versions of my WAR in struts project

2006-02-13 Thread Tom Ansley
Can you not call the older application under a different context. i.e. if your main application is called from http://www.domain.com/application then maybe you could set the older application to deploy under http://www.domain.com/old_application. Wouldn't that ensure that the two applications are

modules

2006-02-13 Thread [EMAIL PROTECTED]
Can someone explain to me the benefits of using modules? I can see how it will help logically compartmentalize different regions of an application so that developers will have a more manageable view of the project, but does it provide anything a bit more technical? __

Re: JSF Training

2006-02-13 Thread Ted Husted
My friend Marty Hall does some JSF training * http://www.apl.jhu.edu/~hall/ Though, I don't think he has any public classes scheduled for this year. He does mostly onsite training (as do I). -Ted. http://husted.com/ted/blog/ On 2/13/06, Rassmann, Natalie D <[EMAIL PROTECTED]> wrote: > Can anyon

memory usage

2006-02-13 Thread [EMAIL PROTECTED]
Let me know if this is not a very good question. I need to know roughly how much memory a struts application uses. What is the equation? framework objects + application actions and forms + ?? My java classes that represent my business logic won't be in memory until an action executes

Re: After refreshing Drop Down value has default data

2006-02-13 Thread Michael Jouravlev
On 2/13/06, Daniel Kies <[EMAIL PROTECTED]> wrote: > Hello...I have an app where you are on a page that has a drop down with > select then some values. After you choose a value the form is submitted. > Data is reloaded in the array list used to fill the form. WHen I get back > to the page the dro

Re: [shale] clay lost onchange for selectOneMenu

2006-02-13 Thread Gary VanMatre
>From: Ryan Wynn <[EMAIL PROTECTED]> > > On 2/13/06, Craig McClanahan wrote: > > Interestingly, that parallels a corresponding issue with the JSP rendition > > of JSF components in JSF 1.0/1.1 ... if you have a property set in a tag > > attribute, AND you set it in code, which wins? For JSP pag

Re: After refreshing Drop Down value has default data

2006-02-13 Thread Daniel Kies
I changed the action mapping to: So it should be request data, but it keeps the previously selected item in the list after submitting the form and returning to the page. On 2/13/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Is that session form ? > > --

Problem deploying older versions of my WAR in struts project

2006-02-13 Thread Jeff Bischoff
Hello. Let me apologize in advance if this is really a jboss or tomcat problem, but as I am only getting Struts error messages, this seemed the place to ask. I have a fairly simple struts application which I generally deploy to JBoss in a .war file. I have archived these files over the course

Re: [shale] clay lost onchange for selectOneMenu

2006-02-13 Thread Gary VanMatre
>On 2/13/06, Gary VanMatre <[EMAIL PROTECTED]> wrote: >> >> >Today I upgraded to the latest nightly build (2/13) for shale-core and >> >shale-clay. It seems my clay onchange properties are being omitted >> >now. Not sure in which nightly they stopped working. Anyone else >> >having this problem?

Re: [shale] clay lost onchange for selectOneMenu

2006-02-13 Thread Ryan Wynn
On 2/13/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: > Interestingly, that parallels a corresponding issue with the JSP rendition > of JSF components in JSF 1.0/1.1 ... if you have a property set in a tag > attribute, AND you set it in code, which wins? For JSP pages, we went round > and round

Re: After refreshing Drop Down value has default data

2006-02-13 Thread mcmoisei
Is that session form ? -- Original message -- From: Daniel Kies <[EMAIL PROTECTED]> > Yes that is the problem I am having. > > On 2/13/06, Tom Ansley <[EMAIL PROTECTED]> wrote: > > > > Once the form has been submitted can you not set that value on the form > > ba

Re: After refreshing Drop Down value has default data

2006-02-13 Thread Daniel Kies
Yes that is the problem I am having. On 2/13/06, Tom Ansley <[EMAIL PROTECTED]> wrote: > > Once the form has been submitted can you not set that value on the form > back > to the default? > > -Original Message- > From: Daniel Kies [mailto:[EMAIL PROTECTED] > Sent: Monday, February 13, 2006

RE: After refreshing Drop Down value has default data

2006-02-13 Thread Tom Ansley
Once the form has been submitted can you not set that value on the form back to the default? -Original Message- From: Daniel Kies [mailto:[EMAIL PROTECTED] Sent: Monday, February 13, 2006 11:28 AM To: Struts Users Mailing List Subject: After refreshing Drop Down value has default data He

Re: [shale] clay lost onchange for selectOneMenu

2006-02-13 Thread Craig McClanahan
On 2/13/06, Gary VanMatre <[EMAIL PROTECTED]> wrote: > > >Today I upgraded to the latest nightly build (2/13) for shale-core and > >shale-clay. It seems my clay onchange properties are being omitted > >now. Not sure in which nightly they stopped working. Anyone else > >having this problem? > > >

Re: [shale] clay lost onchange for selectOneMenu

2006-02-13 Thread Gary VanMatre
>Today I upgraded to the latest nightly build (2/13) for shale-core and >shale-clay. It seems my clay onchange properties are being omitted >now. Not sure in which nightly they stopped working. Anyone else >having this problem? > >Thanks, >Ryan Gary

Re: JSF Training

2006-02-13 Thread Rick Reumann
At the moment I can't. I would wait before taking one also. Personally right now I have mixed feelings about JSF. I'm not even spending any time learning it at the moment. I'd wait unless you have to learn it. On 2/13/06, Rassmann, Natalie D <[EMAIL PROTECTED]> wrote: > Can anyone suggest a good

[shale] clay lost onchange for selectOneMenu

2006-02-13 Thread Ryan Wynn
Today I upgraded to the latest nightly build (2/13) for shale-core and shale-clay. It seems my clay onchange properties are being omitted now. Not sure in which nightly they stopped working. Anyone else having this problem?

Re: [shale] cannot run unit test framework with java 1.4

2006-02-13 Thread Ryan Wynn
Craig, Sorry, you were right, my eclipse workspace was referencing java 1.4 but for some reason the unit tests were being run under the default eclipse jre which was 1.3. Thanks for the help, Ryan

After refreshing Drop Down value has default data

2006-02-13 Thread Daniel Kies
Hello...I have an app where you are on a page that has a drop down with select then some values. After you choose a value the form is submitted. Data is reloaded in the array list used to fill the form. WHen I get back to the page the drop down has the value in it that was previously selected. So

RE: JSF Training

2006-02-13 Thread Kito D. Mann
Natalie, There are a handful of courses out there from companies like ArcMind (see http://www.jsfcentral.com/resources/courses/). I think Marty Hall has a course as well, and I also do customized training and mentoring. As for the quality, I'll refrain from judgment, as I'm a little biased :-).

Re: Struts In Action

2006-02-13 Thread Frank W. Zammetti
Based on two facts (maybe psuedo-facts I suppose), I would say go ahead and start with that book: (1) WebWork is really pretty similar to Struts in many ways. My suspicion is that most developers will have little trouble slipping right into Struts 2.0, so what you learn now will largely transfer,

Struts In Action

2006-02-13 Thread Hector Carcedo (Bitbased)
Hello you all. Is that ok that I start learning Struts using the actual edition of 'Strust In Action' or should I wait until the new edition with all the new stuff?. Thanks Hector Carcedo.

RE: Spawning a new window from Action.execute

2006-02-13 Thread Tom Ansley
Yes, I use javascript for the exact problem you mention. Here is the code I use for the different possible formats: -Original Message- From: kalpesh modi [mailto:[EMAIL PROTECTED] Sent: Monday, February 13, 2006 9:14 AM To: Struts Users Mailing List Subj

Re: Spawning a new window from Action.execute

2006-02-13 Thread kalpesh modi
You will need to use javascript. Let the javascript function call your action class and open a new window. HTH. - Yahoo! Mail Use Photomail to share photos without annoying attachments.

Spawning a new window from Action.execute

2006-02-13 Thread Jari Fredriksson
Hello, new user here. New with struts, but looks good so far. I have one special need now, though.. Would like to open something in a new window, after getting the data into form bean, and validated it. This may not be a struts specific problem, but in case someone has ideas for it. Specif

Re: filters in web application

2006-02-13 Thread David Delbecq
This all depends on what your filters do. If each filter is creating wrappers, analysing output stream and so on, you could indeed get performances issues. Consider each filter is about 3~4 additional stack level. Also each filter = 1 object + it's configuration datas Basically a filter is if your

filters in web application

2006-02-13 Thread temp temp
In a web application can I use several filters like 20 to 30 filters each of them serving some functionallity usefull for more than one '.do' .Is this a good design or there could be any performance issues when using several filters in a web application. Thanks & regards

RE: With a new project, what technologies should I use?

2006-02-13 Thread Garner, Shawn
Hibernate says it can call stored procedures in it's documentation. I've never done it though. Shawn -Original Message- From: Vu, Thai [mailto:[EMAIL PROTECTED] Sent: Friday, February 10, 2006 5:05 PM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: With a new project, what t

JSF Training

2006-02-13 Thread Rassmann, Natalie D
Can anyone suggest a good JSF trainning course? Thanks, Natalie Rassmann

[OT] Re: showing message dialog when a button is pressed

2006-02-13 Thread Dave Newton
fea jabi wrote: > I have a Return button in my JSP. When user clicks on it would like to > display a dialog with messae > "Do you want save the changes?" with Yes, No buttons. > > I am using the property attribute here for button. Hence it will > execute the Post Action. I am not really sure how to

struts 2

2006-02-13 Thread Robin Ericsson
Hi, With the merger of Struts and WebWork, where is the best end to start looking? WebWork website says WebWork 2.2 is a good start, is that the basic idea from the Struts side aswell? regards, Robin - To unsubscri

showing message dialog when a button is pressed

2006-02-13 Thread fea jabi
I have a Return button in my JSP. When user clicks on it would like to display a dialog with messae "Do you want save the changes?" with Yes, No buttons. I am using the property attribute here for button. Hence it will execute the Post Action. I am not really sure how to display the messageDial

RE: Passing Parameters to ActionForward from Action

2006-02-13 Thread Gunduz Can Topal
I am new to struts, there might be better ways to make this work. You can maintain state information with session registery or http parameters.. A working example: struts-config.xml ---

RE: Passing Parameters to ActionForward from Action

2006-02-13 Thread Gunduz Can Topal
I am new to struts, there might be better ways to make this work. You can maintain state information with session registery or http parameters.. A working example: struts-config.xml ---

Passing Parameters to ActionForward from Action

2006-02-13 Thread siva
Hi, I want to know how to pass parameters from an Action to corresponding ActionForward. Basically, I am having only the jsp name in forward in struts-config.xml. But, when action is processed, I want to send some parameters to the corresponding actionforward. Can some be help me in expla

RE: Spring DelegatingActionProxy and Struts TestCase

2006-02-13 Thread Marco Mistroni
Hello, Are you instantiating a webappcontext during your tests? Regards, marco -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 11 February 2006 20:42 To: Struts Users Mailing List Subject: Spring DelegatingActionProxy and Struts TestCase