I'm afraid that means I can't help you.. I don't know if this is possible in some other way (Assuming you don't want to use action-states either).
Nils
Type: Posts; User: tohu; Keyword(s):
I'm afraid that means I can't help you.. I don't know if this is possible in some other way (Assuming you don't want to use action-states either).
Nils
could you post some code?
I think you could have something like:
flow1
<view-state id="abc">
<transition on="go" to="aSubFlow">
<set name="conversationScope.goToSecond" value="true" />
</transition>...
I'd like to stop all flow executions running.
I found the DefaultFlowExecutionRepository.java
Does it and its ConversationManager.java know all the flows beeing executed on the server?
Is it...
I can now refresh all Flows by doing flowRegistry.destroy and rebuilding it using a String[] of all previously registered IDs.
Of course it would be nice to refresh one flow at a time, but the most...
To change the ID I had to change
FlowBuilderContextImpl flowBuilderContext= new FlowBuilderContextImpl(path, CollectionUtils.EMPTY_ATTRIBUTE_MAP, flowRegistry, flowBuilderServices);
to
...
Ok, I got it by having a FlowService bean, knowing the default flowRegistry. It got this method:
public void register(String id, String path) {
FileSystemResource resource=new...
Hello there!
I am using webflow 2.3.
I would like to reload my flow defintions (from xml) at runtime.
Since XmlFlowRegistryFactoryBean is no more and DefaultFlowRegistry is protected, I tried...