Re: SV: (bean-)property gets out of scope/session?

2003-12-04 Thread Hien Q Nguyen
nde- Från: Engbers, ir. J.B.O.M. [mailto:[EMAIL PROTECTED] Skickat: den 4 december 2003 11:45 Till: '[EMAIL PROTECTED]' Ämne: (bean-)property gets out of scope/session? I'm fairly new to Struts, java and servlets so maybe it's a stupid question but I have this problem: B

RE: RE: (bean-)property gets out of scope/session?

2003-12-04 Thread Engbers, ir. J.B.O.M.
-Oorspronkelijk bericht- Van: John Pitchko Verzonden: donderdag 4 december 2003 15:16 Aan: [EMAIL PROTECTED] Try: In Search.jsp I want to use this code: Tomcat however complains: org.apache.jasper.JasperException: Cannot find bean under name codering Ben Engber

RE: (bean-)property gets out of scope/session?

2003-12-04 Thread John . Pitchko
BDY.RTF Description: RTF file - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

SV: (bean-)property gets out of scope/session?

2003-12-04 Thread Håkan Fransson
5 Till: '[EMAIL PROTECTED]' Ämne: (bean-)property gets out of scope/session? I'm fairly new to Struts, java and servlets so maybe it's a stupid question but I have this problem: Based on the pattern that is used by Steve Raeburn in his struts-examples, I start my web-applic

(bean-)property gets out of scope/session?

2003-12-04 Thread Engbers, ir. J.B.O.M.
I'm fairly new to Struts, java and servlets so maybe it's a stupid question but I have this problem: Based on the pattern that is used by Steve Raeburn in his struts-examples, I start my web-application with a prepareAction in which I declare ArrayList codering= new ArrayList(); co

Cannot find bean null in scope session

2002-12-16 Thread randy
I'm having a problem getting struts to validate a .jsp page using a bean. I get the message "Cannot find bean null in scope session" whenever the submit button is clicked on the page. I have scope="request" turned on in the struts-config.xml file. The validate works

scope="session"

2002-10-29 Thread Gus Delgado
I have set an scope="session" for one of my action tags type="com.webcontrol.monthlyprocess.DeliveryAction" name="deliveryForm" scope="session" validate="true" input="/Del

RE: scope = session or request

2002-10-25 Thread Divakar Satyanarayan
IL PROTECTED] > Subject: scope = session or request > > Hi everybody > > what is the difference between scope="request" and scope="session" ? > > thank's > > Marc > > > > -- > To unsubscribe, e-mail: > <

scope = session or request

2002-10-25 Thread Marc AMIR-TAHMASSEB
Hi everybody what is the difference between scope="request" and scope="session" ? thank's Marc -- To unsubscribe, e-mail: <mailto:struts-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>

Re: ActionForm Scope Session problem

2002-07-27 Thread Eddie Bush
You _do_ have a form-bean element named "UserRegistrationForm", right? Are you sure it's not "userRegistrationForm"? The "name" attribute of the action is a bit misleading. It would be more properly called "form-name" or "form-bean-name". Whatever you put here _must_ match one of the form

RE: ActionForm Scope Session problem

2002-07-24 Thread Galbreath, Mark
Try eliminating reset() in the bean class. Mark -Original Message- From: Rizvi R M [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 6:11 AM Iam using struts1.1 beta version and tomcat 4.0.1. I am having problem with ActionForm beans in session scope. I have the need to mainta

ActionForm Scope Session problem

2002-07-24 Thread Rizvi R M
Iam using struts1.1 beta version and tomcat 4.0.1. I am having problem with ActionForm beans in session scope. I have the need to maintain an ActionForm Bean spanning a number of pages. So i need to specify the scope of the ActionForm bean as session(which is the default value).But when i do

Re: [Newbie] ActionForm with a scope session

2002-03-13 Thread Slimane Zouggari
print += values[ii5]; > if (ii5 < values.length - 1) { > print += ", "; > } > } > dbmd(print);

Re: [Newbie] ActionForm with a scope session

2002-03-13 Thread keithBacon
print += ", "; } } dbmd(print); } dbmd("printRequestParameters: for caller: "+ caller +" - end"); } =======

Re: [Newbie] ActionForm with a scope session

2002-03-13 Thread Slimane Zouggari
Hi, sorry that I didn't mention it :) The error is that my form (which normally should have a scope session) is null ! so, when I run the app, it throws a java.lang.NullException, because I try to use sdf which is null (that's why I made a test to see if sdf == null, in that case

Re: [Newbie] ActionForm with a scope session

2002-03-13 Thread keithBacon
sure you only have 1 version of the form & that you are 'talking' to the one you think you are. --- Slimane Zouggari <[EMAIL PROTECTED]> wrote: > Hi, > > I have defined in my struts-config.xml an ActionForm with a scope session. > Here's the struts-config co

[Newbie] ActionForm with a scope session

2002-03-13 Thread Slimane Zouggari
Hi, I have defined in my struts-config.xml an ActionForm with a scope session. Here's the struts-config code: > type="be.stluc.info.struts.SearchByDateAction" >name="searchbydateform"

Checkboxes + reset + scope=session doesn't work...

2001-12-14 Thread Linnea Ahlbeck
Hi!! I have a checkbox problem. On my jspA page I have two checkboxes. From this jsp page I go to saveaAction class A, this class sometimes forwards to a viewAction class B(depending on a submit value), which forwards to jsp page B, which forwards so saveAction class B which forwards to view