Hello,
I have integrated Spring Security with Crowd Atlassian. Everything is working correctly. But I would like to change the location of one configuration file. In the Atlassian tutorial...
Type: Posts; User: migelct1983; Keyword(s):
Hello,
I have integrated Spring Security with Crowd Atlassian. Everything is working correctly. But I would like to change the location of one configuration file. In the Atlassian tutorial...
Hello,
I'm migrating an application from RichFaces to PrimeFaces and I think the property autoUpdate="true" of p:outputPanel doesn't work with Spring webflow.
<h:commandButton ...
is org.zcore.conference.Registration serializable?
Is it possible to do URL rewriting with Spring Web Flow?
It works, thank you very much!
I have the same problem, could you find a solution?
You can put a variable in the session scope and in the begging of the flow add a decision state:
<decision-state id="messageView">
<if test="sessionVariable==X" then="view1" />
<if...
I think h:commandButton doesn't have Ajax capabilities. For exapmle, if you are using RichFaces you should use:
<a4j:commandButton action="refresh" value="Refresh"...
In the webflow-config.xml you can configure the maximum number of flow executons (by default is 5):
<webflow:flow-executor id="flowExecutor" >
<webflow:flow-execution-listeners>...
The text that isn't correctly displayed comes from DB or is static text in a resource bundle or in the xhtml/jsp?
If it's from DB are you using Hibernate? Do you have the correct encoding in...
You can send a parameter and depending of the value of that parameter you call the corresponding view.
Hello,
I'm trying to forward from a flow to another flow (redirect to another flow through the server).
I know that I can do a redirect (redirect to another flow through the client) like this:...
Hello,
I'm working in a web application with: Spring Webflow 2.2.0 and JSF 1.2 (Richfaces 3.3.3).
I'm profiling the application looking for memory leaks and I have seen that some objects are...
Thanks for the answers, it was a silly problem because I'm a new user of MS SQL. I didn't define the primary key with the IDENTITY flag as dlmiles said.
By the way, do you know if this is the...
Could you resolve this problem?
In the action method:
import org.springframework.webflow.execution.RequestContext;
public print(RequestContext context) {
//generate the file ... and in the end
...
Another importan thing is that in the local enviorement we have only Tomcat and in the 'Pre-Production Enviorement' we have Apache connected to Tomcat.
Hello,
Richfaces 3.3.3 - WebFlow 2.2.0
I'm using the fileupload component of RichFaces, it works properly in local but when it's deployed in a 'pre-production' server it has one error (the...
Hello again,
I have resolved the issue. I have created a custom LocaleResolver that always retrieve the locale from the UserDetails where I was save the locale and the preferences of the user.
...
Hello,
I'm working in an application where the user can define the locale in its profile. When the session starts this locale need to be retrieved from DB and loaded and if the user change the...
I have the same problem, could you resolve it?
There is another solution. I'm using it but I don't like very much. But I couldn't find another option. The idea is send a parameter and use a decision state depending of the parameter value:
...
I can't understand exactly what you want. But you can check this code for it's that you need (this is used with JSF 1.2 and RichFaces):
<h:selectOneMenu id="pageSize"...
Maybe, you didn't implement Serializable in the class:
it.cilab.uniba.recommender.model.Attribute
They are 3 independents flows. They are called with:
<a target="_blank" href="secondFlow" />
So I will continue using the external context.
Thank you very much for the answer!