I have implemented Spring Web Flow (2.0.9) in a WebSphere 6.1 server environment and it works just fine. When the app is moved to a clustered server environment (two server machines using sticky...
Type: Posts; User: klpeterson; Keyword(s):
I have implemented Spring Web Flow (2.0.9) in a WebSphere 6.1 server environment and it works just fine. When the app is moved to a clustered server environment (two server machines using sticky...
Did you implement searchJumpRecentAq as a web flow action or valueChangeListener action?
That's nice except when you have several dropdowns on the same page each with different valueChangeListeners that have to fire. Then you would have to have a different hidden button for every one. I...
My experience with this is that the event works fine if you set the immediate="true" attribute of the component and fire an onChange event to do form.submit(). The immediate attribute will skip all...
I am using spring web-flow 2.0.9 in a JSF 1.1 environment. The managed bean bound to the JSF page (a facelet page) has a property that is injected by spring to give it a reference to a singleton...
This is a great book, and I own a copy, but it is out of date since it was written in 2006 and covers only the old version of web flow 1.x. I would like to see an updated version that covers version...
Here is a sample of what my flow configuration looks like. I want to be able to render a different jsp (JSF page) based on the sorId passed as a parameter. So far, this works to render the page, but...
I have been able to use objects scoped to request or session as model objects, but unable to use them in flow scope unless they are Serializable. If the flow, flash, conversation, etc. scopes are...
I have a need to render a different view based on the value of a request parameter. I am using the on-start tag to set up the objects and evaluating a service that populates the right model for the...
I have modified my code so that I pass in the messageContext parameter as shown in the examples and then add the message accordingly. It doesn't seem to end up in the faces message object when...
I am using JSF 1.1 pages with the JSF message tag for global and form field messages. When using web flow 2.0.9, what is the easiest way to get a custom message to display that comes from the...
That sounds like exactly what I need. Now, how do I generate a MessageContext within my try/catch block? I make a call to the backend and if it throws an exception that is of type...
I have one other question. Some errors that we catch have messages that we want to display in the JSF global error message system. This we usually handle by invoking the FacesContext and adding the...
We have a legacy JSF application that has been using IBM Websphere 6.1 for the past 4 years or so. It is built on JSF 1.1 and using some of IBM's custom components on standard JSP pages (not...
The bean has properties that are spring-injected beans for database access. These are singletons defined in applicationContext.xml and are probably not Serializable. Any way around this? Would it...
I have a bean that was previously defined according to the pattern of a JSF controller (managed-bean) and that I am no deploying as a spring-managed bean using webflow. I want to use flow scope so...
I think I found my problem. I was defining the default handler as the FlowHandlerAdapter which is not correct. The flow handler has to implement FlowHandler or extend AbstractFlowHandler. Without a...
I may have some things configured that I do not need to. I defined the FlowController as a bean named flowController and I don't see that as being necessary in the samples. This implementation needs...
What did you find wrong with your configuration that gave you this error? I am getting the same thing.
I am trying to configure a flow with JSF 1.1 and webflow 2.0.9 and can't get beyond the point were the DispatcherServlet tries to find a handler. It checks the supports method of the...
I would be interested in trading experiences with you on webflow. We are starting to use facelets because it is the way forward with JSF. At JavaOne, Ed Burns pointed out that all the new...
I am also trying to integrate webflow 2.0.9 (lastest version) with webshere 6.1 using JSF 1.1. Will I be able to use flow scope for my beans along with the current JSP pages we are using that...
I have been working with IBM RSA 7.1 and Websphere 6.1 and I am trying to get webflow working in my existing environment. Both Websphere 6.1 and 7.0 support facelets, as we are starting to use...
I have been using Spring 2.5.6 for some time in an existing project running on IBM Websphere 6.1. This version only supports JSF 1.1 and facelets. My goal is to get my managed beans out of session...