Hi,
How does one pass multple arguments using the tag? Is it
<argument expression="${flowScope.scopValue1}, ${flowScope.scopValue2}"/>
or
<argument expression="${flowScope.scopValue1}/>...
Type: Posts; User: skadirov; Keyword(s):
Hi,
How does one pass multple arguments using the tag? Is it
<argument expression="${flowScope.scopValue1}, ${flowScope.scopValue2}"/>
or
<argument expression="${flowScope.scopValue1}/>...
Hi,
If one has nonAjaxFlows and ajaxFlows as desribed above, how do you switch from nonAjaxFlows to ajaxFlow?
When invoking ajax event on my page a nonAjaxFlows is executed.
If I change the...
Here it is.
Thanks
<bean id="ajaxFlows" class="org.springframework.webflow.executor.mvc.FlowController">
<property name="flowExecutor" ref="flowExecutor"/>
<property...
Please, can you post the js code you use for firing the event, and the signature of your handler method?
Cheers,
Sergio B.
P.S.
This is not the proper forum to post questions about Spring...
Hi,
I am trying loadOffice example, the interceptor config is
<bean id="ajaxLoadOfficesHandler" class="com.hbo.progops.mend.uksvod.service.ajax.LoadOfficesHandler">
<property...
In EJB there is afterBegin() which does not seem to exist in Spring. Is there something instead of afterBegin() in Spring that one could use to get notification right after transaction began?
...
I was able to get it to work using TransactionSynchronizationManager.registerSynchron ization.
I was wondering if the same could be achieved via configuration. The reason I am asking is that when...
Thank you for the response.
All we need is to invoke beforeCompletion() in our service bean (which is comparable to stateless session bean in ejb). The goal here is to set authenticated user's id...
Thank you for the response.
Not sure how to use the class. Checked the link below, it does not have information.
...
I have tried to implement TransactionSynchronization for bean that is executed in transaction. However, still jta callbacks (beforeCompletion(), afterCommit()) are not called.
Am i missing...
Hello,
I was wondering if someone could describe how to implement this or maybe or point me to documentation on the subject.
Doing this in EJB was quite simple, just implement...