Fixed it by installing the org.eclipse.equinox.common-3.6.0.v20100503.jar in Equinox.
This can be done manually by executing the following command in the equinox console :
install...
Type: Posts; User: ddewaele; Keyword(s):
Fixed it by installing the org.eclipse.equinox.common-3.6.0.v20100503.jar in Equinox.
This can be done manually by executing the following command in the equinox console :
install...
Hi,
I'm deploying an existing WAR file as a WAB that uses Spring component scanning in Equinox (Apache Aries Equinox test harness)
I noticed that Spring supports "auto-detecting" the equinox...
We're currently looking into Pitchfork to replace our legacy EJB2.1 wrappers for Spring services (custom framework).
Pitchfork works great in the sense that we just have to annotate our services to...
Hi,
We use Spring Webflow extensively in a large project, and notice that we are having quite a bit of java serialization overhead.
We're using the session based Continuation flow execution...
The reason why your String turns out empty is because you're trying to retrieve the somethingElse value from the requestScope.
<argument expression="requestScope.somethingElse" />
By putting...
Although the solution outlined in that thread will allow you to navigate away from the flow without having a formal transition defined in the flow, won't the flow (and it's associated state) remain...
I wasn't referring to the actual flow states, but the actual flow instances that a user has started.
Imagine an application where a user can execute 2 use-cases.
Both use-cases are available from...
In our application, we have a couple of scenarios where it would be usefull to end all (or a subset) of the flows associated with a user.
We have a couple of flows where it is easy for the user to...
Http Analyzer shows the following when clicking on a link to start a flow (http://localhost:8500/Lock/app.jsf?_flowId=create-individual) :
I only recorded the first request, as things start to go...
In order to inject conversation scoped objects into JSF backing beans, I currently do the following :
Define a request based backing bean in faces-config, use setter injection to inject...
What I've noticed on my environment is the following
Firefox :
In the FlowPhaseListener, BEFORE RENDER RESPONSE, sendredirect is called. When the sendredirect is called on the servletresponse,...
The problem seems to occur in the FlowExecutionContinuationGroup :
public FlowExecutionContinuation get(Serializable id) throws ContinuationNotFoundException {
FlowExecutionContinuation...
The problem was related to the fact that the flow was being executed on JDK 1.4 (Bea Weblogic 8.1)
Deploying the swf-sellitem-jsf app on Tomcat (JDK 1.5) worked fine, while it was causing all...
I have an issue with a simple webflow that only occurs when using Firefox.
I'm using WebFlow 1.0.3 combined with JSF 1.1 / Facelets 1.1.11 on Bea Weblogic 8.1
I noticed that when using Firefox,...
In order to implement master-detail using JSF, I would suggest the following.
Define 2 view-states
1. view-state for displaying the master screen (JSF datatable) :
<view-state...