Dear Costin,
I am pretty sure now, that we are facing some issue here, if this is not the intended behavior.
I have created a minimal testcase to reproduce the problem and created a JIRA entry:...
Type: Posts; User: ReneStolp; Keyword(s):
Dear Costin,
I am pretty sure now, that we are facing some issue here, if this is not the intended behavior.
I have created a minimal testcase to reproduce the problem and created a JIRA entry:...
Dear Costin,
first of all, thanks for taking the time to reply!
I have the effect within my Eclipse development environment. The only difference between working and not-working are the spring...
Hi!
I have the following bean definition in my XML which works fine in M4:
<bean id="beanId" class="de.mybean" autowire="autodetect">
<property name="myPropertyName">
<list>
<value...
I have a configuration which loads several XML files (distributed in files for Database access types, service classes and other beans and finally a servlet configuration file).
I want to use the...
I have to admit that, from reading the Javadoc, the purpose of this action is not clear to me. :(
Sorry,
René
Ok I found it and it was MY fault.
The problem was an old webflow-jar in the WEB-INF/lib folder. With the correct Jars in place, everything works fine.
Thanks for all who tried to help and...
public class LoginValidator implements Validator {
private LoginService loginService;
public LoginValidator() {
super();
}
public void setLoginService(LoginService loginService) {...
The bean is defined as this:
<bean id="LoginFormAction" class="de.smartprocure.spring.login.LoginFormAction">
<property name="formObjectName"><value>Login</value></property>
<property...
I was not precise: The Validator is not called, because the bindAndValidate() method is not called. It seems, that - for some reason - the action included in the submit transition is not called. I...
Hi there!
I have the following view-state definition:
<view-state id="inputLoginData" view="login">
<transition on="submit" to="performLogin">
<action bean="LoginFormAction"...
I did not know this: Sourceforge has some delay between developers access and mortals pserver access:
Will try tomorrow.
Best regards,
René
Hi All!
I have a flow with two Forms. For a certain behaviour when going back and forward between these two forms I had the form-objects of each of the two forms in the ScopeType.FLOW. That worked...