Hello,
I am a new to Flex and blazeDS. I have done a lot of projects with Spring and jsp in the past and never had a problem with session and worked very well.
Now I used FlexContext.getSession()...
Type: Posts; User: fedor_dz; Keyword(s):
Hello,
I am a new to Flex and blazeDS. I have done a lot of projects with Spring and jsp in the past and never had a problem with session and worked very well.
Now I used FlexContext.getSession()...
Yes. formObjectScope property of the FormAction. I defined as xx-beans.xml.
<bean id="xxFormAction" class="xx.xxx.XXXFormAction">
<property name="formObjectScope" value="FLOW"/>
...
Explanation :
With webflow 1.0 rc3
All actions defined in FLOW scope. Last action defined as REQUEST scope.
In All actions submit method,
put something in CONVERSATION scope and retrieve it...
I think you need to pass your update value in previous action and when you want this updated value in popup action, retrieve this upated values and put it in jsp.
Eg:
In previous action : ...
Thank you for advice.
Now I am using FLASH scope.
I have a question for you.
Now one of my action( Last Action - eg: summary) defined with the following:
<property name="formObjectScope"...
the same.
context.geConversationScope().remove("dataName");
Thank you Keith.
I will search "alwaysRedirectOnPause".
For now, I can fix my problem.
Most of my action beans are defined as FLOW SCOPE and last one(summary page) is REQUEST SCOPE.
I passed...
I think it should work ----
context.getRequestScope().remove("dataName");
I have a problem with Scope. My project was working fine previously. Now I update to Web flow 1.0 and I could not get correct data from formObject.
I have formObject1 with FLOW scope. It...
I have a problem with httpClient. I have 2 projects. From Project 1, one of actions, I called project2 with httpClient call.
From project2, login.jsp
.....
<spring:bind path="userId">...
Sorry I got it
I could not find RC 4 release. Where can I get it?
Thank you Keith.
I set errors.setNestedPath("bClass");
and set in jsp:
<spring:nestedPath path="aClass.bClass">
Now I can validate everything I want.
Thanks again.
I have a problem with setting attribute of member class in formAction and jsp.
In bean definition:
<bean name="aFormAction" class="com.test.AFormAction">
<property...
It should be OK if you changed in the following highlighted stuff:
protected Map referenceData(HttpServletRequest request) throws Exception {
Map contacts = new HashMap();
int...
????:confused: :confused: :confused:
Could you put more details your action code, so, we can figure out.May be you dont get right object from httpContext.