According to http://static.springframework.org/spring/docs/2.0.x/reference/spring-form.tld.html#spring-form.tld.form there should exist an attribute named acceptCharset for the spring form tag. The...
Type: Posts; User: mortenhaugen; Keyword(s):
According to http://static.springframework.org/spring/docs/2.0.x/reference/spring-form.tld.html#spring-form.tld.form there should exist an attribute named acceptCharset for the spring form tag. The...
By changing the regex to
<stringProp name="RegexExtractor.regex">_flowExecutionKey=(.*)</stringProp>
it worked for me as well.
Thanks a lot!
To perform JMeter testing on my SWF application I have used the Spring Bank.jmx sample found at http://www.ervacon.com/products/swfbook/index.html as a starting point.
But the ${flowExecutionKey}...
Thanks again.
You're right, I just want to create the link with the key expression appended to the end. If I don't append the key expression, a new web flow is created, and that is not what I want....
is java code of course. Is it possible to obtain the flowExecutionKey using an expression (OGNL)?
Thanks.
I need to access the key to set _flowExecutionKey=<value> in a link in the menu.
Is it possible to obtain the flowExecutionKey value from within a flow xml?
Something like:
<bean-action bean="mybean" method="setFlowExecutionKey">
<method-arguments>
<argument...
I have now solved this by saving the flowExecutionKey in the session from inside the SWF web flow, and then appending &_flowExecutionKey=the-flowExecutionKey-session-value to the menu link that...
I have an application where one part is SWF, and another part is Spring MVC. When I access the non-SWF parts and then return to the SWF part (by clicking on a link), I would like to return back to...
Does this mean that it is just the namespaces that is filtered out, or the complete file contents (all the beans)?
I tried BeanDoc on some xsd-based Spring config files (setting...
I can't get the spring-beandoc-0.7.1 to work in Windows.
Have tried ant (from the samples directory):
Running
runbeandoc-cli.bat -- properties beandoc.properties gives:
Have tried both...
Having a session scoped bean referencing an inner session scoped bean through <aop:scoped-proxy/>, we experience PermGenSpace out of memory errors.
We run a JMeter script that implements a loop that...
How did you fix the problem with the application server (in your case Weblogic), adding the 'http://www.foo.com/' to the relative redirect?
We have the same problem, with redirects coming out with...
What we have is a web-app that displays some (few of many) user preferences in a side-panel. The preferences are taken from a session bean (using ${sessionScope['scopedTarget.userPreferences']} in...
Sorry, I forgot to mention that I want the session-scoped bean to respond to a custom event. If I could filter out the context ininitialized event (and other global events), that might solve the...
Is it possible to implement the ApplicationListener interface on scoped beans?
I ask because implementing the ApplicationListener interface (and thus the onApplicationEvent method) for a bean that...
Is there a way to keep the last entered username in my login jsp when an Acegi login attempt fails, so that the user don't have to enter the username again?
<c:out...
Spring does not call Test.query twice. It's just the JamonPerformanceMonitorInterceptor that registers the call twice when the Test bean is in session scope (and thus proxied). I suspect the proxying...
I found a connection between the double JAMon hits and session scope / <aop:scoped-proxy/>.
This gives double hits:
<bean id="test" class="abc.Test" scope="session">
<aop:scoped-proxy/>...
Having the following definitions:
<aop:config proxy-target-class="true">
<aop:advisor
advice-ref="jamonInterceptor"
pointcut="execution(* abc.Test.query(..))"/>
</aop:config>
You're probably right about wrapped proxies.
<aop:config proxy-target-class="true">
did the trick. Thank you!
BTW,
karldmoore, sorry to have confused you (and probably others)....
I have a MVC controller (singleton bean) that references a session scoped bean.
<bean id="xyzController" class="abc.Controller">
<property name="manager" ref="xyzManager"/>
...
...
Debugging shows that the isUploadTempDirSpecified flag is set to true, and the uploadTempDir is set correctly for the commonsMultipartResolver object.
But visual inspection of the file system shows...
Any idea why CommonsMultipartResolver ignores setUploadTempDir?
CommonsMultipartResolver use the same tempdir whether setUploadTempDir is called or not.
FileSystemResource fileSystemResource...
Another thing regarding creating a point cut to org.springframework.web.servlet.mvc.Controller.*(. .)), is that it generates warnings for all final methods in the Spring MVC framework, like
WARN...