Re: Bean scope type in Struts2 plugin

2012-10-02 Thread Lukasz Lenart
2012/10/1 Aum Strut : > Hi All, > > i am having a small doubt regarding bean creation in struts2,while going > through some of the plugin i saw following code > > inside the Interceeptor > > @Inject > public void setMyManager(MyManager myManager) { > this.MyManager = myManager; > }

Re: bean scope in ApplicationContext-struts.xml

2007-04-23 Thread Antonio Petrelli
2007/4/23, arunabh <[EMAIL PROTECTED]>: 2007/4/23, arunabh <[EMAIL PROTECTED]>: > > Hi , > In the ApplicationContext-struts.xml what are the different values for > the > scope attribute of bean tag . And what different values mean over there . > I desperately heed help in that . Are you writ

Re: bean scope in ApplicationContext-struts.xml

2007-04-23 Thread arunabh
or Spring? In the latter case, write to the Spring team. Antonio Hi, I am asking about Struts . Arunabh -- View this message in context: http://www.nabble.com/bean-scope-in-ApplicationContext-struts.xml-tf3631100.html#a10139307 Sent from the Struts - User mailing li

Re: bean scope in ApplicationContext-struts.xml

2007-04-23 Thread Antonio Petrelli
2007/4/23, arunabh <[EMAIL PROTECTED]>: Hi , In the ApplicationContext-struts.xml what are the different values for the scope attribute of bean tag . And what different values mean over there . I desperately heed help in that . Are you writing about Struts or Spring? In the latter case, write

bean scope in ApplicationContext-struts.xml

2007-04-23 Thread arunabh
Hi , In the ApplicationContext-struts.xml what are the different values for the scope attribute of bean tag . And what different values mean over there . I desperately heed help in that . with regards Arunabh Dash -- View this message in context: http://www.nabble.com/bean-scope-in

Re: Bean Scope Problem

2006-07-28 Thread Puneet Lakhina
Correct. Just to expand on it a bit for Puneet... the request that you set the attribute on is the request for resultsPage.jsp. That is the final resource the server returns for that request. Once it is returned, that request is destroyed. A link on that page represents a whole new request, he

Re: Bean Scope Problem

2006-07-28 Thread Frank W. Zammetti
hnology" (2006, Apress, ISBN 1-59059-695-1) Java Web Parts - http://javawebparts.sourceforge.net Supplying the wheel, so you don't have to reinvent it! -Original Message- From: Puneet Lakhina [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 5:19 PM To: user@struts.apach

RE: Bean Scope Problem

2006-07-28 Thread Patil, Sheetal
As I know u cant access this object Better way put it in session scope or regenerate it Else see if you can hidden property in jsp -Original Message- From: Puneet Lakhina [mailto:[EMAIL PROTECTED] Sent: Friday, July 28, 2006 5:19 PM To: user@struts.apache.org Subject: Bean Scope Problem

Bean Scope Problem

2006-07-28 Thread Puneet Lakhina
Hi, I have an action that creates an attribute like this request.setAttribute("results", resultObject); Now this action then forwards to a page (say resultsPage.jsp) which does some processing with this object. This resultsPage then has links that calls another page(say otherPage.jsp) Now iam t

RE: Bean scope...

2006-01-10 Thread Kanuri, Chand
you just defined your bean here. scope(session or request) should be given in action mapping. Cheers, Chand. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 09 January 2006 16:04 To: user@struts.apache.org Subject: Bean scope... Hi All, I keep getting this

Re: Bean scope...

2006-01-10 Thread Ted Husted
After defining a form-bean for an ActionForm http://www.husted.com/poe/ On 1/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi All, > I keep getting this error , I have defined this bean in config file... > Also... > -Cannot find bean StatusSearchActionForm in any scope > > > >

Bean scope...

2006-01-09 Thread Shilpa . Nalgonda
Hi All, I keep getting this error , I have defined this bean in config file... Also... -Cannot find bean StatusSearchActionForm in any scope Do I have to define it somewhere else??? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTE

RE: Java Bean Scope in Action Class

2004-08-03 Thread Martin Gainty
e, Andre D" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Java Bean Scope in Action Class Date: Tue, 03 Aug 2004 11:36:53 -0400 MIME-Version: 1.0 Received: from mail.apache.org ([209.237.227.199]) by mc11-f1

Java Bean Scope in Action Class

2004-08-03 Thread Bussie, Andre D
I want to place a bean in the session scope in my action class and then make me bean accessible in JSP pages within the application. Is this possible? Any examples/resources so I can implement. Thanks is advance

Re: Form bean scope question

2004-07-07 Thread Dirk Markert
Hello John, have you tried *** JM> Hi, JM> I hope someone can help me get my head around a scoping question here. JM> I have a multi-page wizard, used for purchasing. There are five pages in JM> all and I'm trying to factor out a

RE: Form bean scope question

2004-07-07 Thread Paul McCulloch
utside an element. Hope that is of some use. Paul > -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: 07 July 2004 01:26 > To: Struts Users Mailing List > Subject: Re: Form bean scope question > > > To what does this refer? You mu

Re: Form bean scope question

2004-07-07 Thread John Moore
Michael McGrady wrote: The problem is that, no matter what that is causing the problem. The error report tells you that is the problem. The problem is that you are not seeing what the error tells you is not being seen. So, track it back. If the "taglib" line is there, then the URI might be set

Re: Form bean scope question

2004-07-06 Thread Michael McGrady
To what does this refer? You must be trying to find this but why? At 02:18 AM 7/6/2004, you wrote: org.apache.struts.taglib.html.BEAN - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Form bean scope question

2004-07-06 Thread Michael McGrady
The problem is that, no matter what that is causing the problem. The error report tells you that is the problem. The problem is that you are not seeing what the error tells you is not being seen. So, track it back. If the "taglib" line is there, then the URI might be set wrong elsewhere or

Re: Form bean scope question

2004-07-06 Thread John Moore
Michael McGrady wrote: Yes, this is the problem. At 04:05 AM 7/6/2004, you wrote: I have had a problem like this before and what I did is add the <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> in the included/inserted jsp pages. Unfortunately it isn't. The necessary taglib line is there

Re: Form bean scope question

2004-07-06 Thread Michael McGrady
/07/2004 06:24 AM Please respond to "Struts Users Mailing List" To: Struts Users Mailing List <[EMAIL PROTECTED]> cc: Subject:Re: Form bean scope question Classification: Mark Lowe wrote: > You may have stuff configured to process such re

Re: Form bean scope question

2004-07-06 Thread gdeschen
Users Mailing List" To: Struts Users Mailing List <[EMAIL PROTECTED]> cc: Subject:Re: Form bean scope question Classification: Mark Lowe wrote: > You may have stuff configured to process such requests but an out the > box version of strut

Re: Form bean scope question

2004-07-06 Thread John Moore
Mark Lowe wrote: You may have stuff configured to process such requests but an out the box version of struts would probably need to find a mapping such as Yes, I do. It's actually all working perfectly, the only problem I'm having is when I try to factor out the common HTML, as I mentioned. J

Re: Form bean scope question

2004-07-06 Thread Mark Lowe
You may have stuff configured to process such requests but an out the box version of struts would probably need to find a mapping such as On 6 Jul 2004, at 10:46, John Moore wrote: Mark Lowe wrote: What does your mapping look like? For the action in question: John --

Re: Form bean scope question

2004-07-06 Thread John Moore
Mark Lowe wrote: What does your mapping look like? For the action in question: John -- == John Moore - Norwich, UK - [EMAIL PROTECTED] == ---

Re: Form bean scope question

2004-07-06 Thread Mark Lowe
What does your mapping look like? On 6 Jul 2004, at 10:18, John Moore wrote: Hi, I hope someone can help me get my head around a scoping question here. I have a multi-page wizard, used for purchasing. There are five pages in all and I'm trying to factor out as much of the common stuff as possible

Form bean scope question

2004-07-06 Thread John Moore
Hi, I hope someone can help me get my head around a scoping question here. I have a multi-page wizard, used for purchasing. There are five pages in all and I'm trying to factor out as much of the common stuff as possible. In each page, there is something like the following: