Search:

Type: Posts; User: mortenhaugen; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. acceptCharset attribute missing in spring-form.tld

    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...
  2. Replies
    3
    Views
    1,877

    By changing the regex to

    By changing the regex to

    <stringProp name="RegexExtractor.regex">_flowExecutionKey=(.*)</stringProp>

    it worked for me as well.

    Thanks a lot!
  3. Replies
    3
    Views
    1,877

    JMeter and SWF

    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}...
  4. Thanks again. You're right, I just want to...

    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....
  5. is java code of course. Is it possible to obtain...

    is java code of course. Is it possible to obtain the flowExecutionKey using an expression (OGNL)?
  6. Thanks. I need to access the key to set...

    Thanks.
    I need to access the key to set _flowExecutionKey=<value> in a link in the menu.
  7. How to get the flowExecutionKey value within a flow xml?

    Is it possible to obtain the flowExecutionKey value from within a flow xml?
    Something like:


    <bean-action bean="mybean" method="setFlowExecutionKey">
    <method-arguments>
    <argument...
  8. I have now solved this by saving the...

    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...
  9. How to return to the same flow (flowExecutionKey)?

    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...
  10. Does this mean that it is just the namespaces...

    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...
  11. Replies
    5
    Views
    3,245

    I can't get the spring-beandoc-0.7.1 to work in...

    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...
  12. Memory leak when session bean references inner session bean through aop proxy?

    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...
  13. How did you fix the problem with the application...

    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...
  14. What we have is a web-app that displays some (few...

    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...
  15. Sorry, I forgot to mention that I want the...

    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...
  16. ApplicationListener in session scope bean fails

    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...
  17. Replies
    1
    Views
    1,039

    Keep username when login fails

    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...
  18. Spring does not call Test.query twice. It's just...

    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...
  19. I found a connection between the double JAMon...

    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/>...
  20. JamonPerformanceMonitorInterceptor registers double

    Having the following definitions:


    <aop:config proxy-target-class="true">
    <aop:advisor
    advice-ref="jamonInterceptor"
    pointcut="execution(* abc.Test.query(..))"/>

    </aop:config>
  21. You're probably right about wrapped proxies. ...

    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)....
  22. Trouble with AOP and session scope beans

    I have a MVC controller (singleton bean) that references a session scoped bean.


    <bean id="xyzController" class="abc.Controller">
    <property name="manager" ref="xyzManager"/>
    ...
    ...
  23. Debugging shows that the isUploadTempDirSpecified...

    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...
  24. CommonsMultipartResolver ignores setUploadTempDir

    Any idea why CommonsMultipartResolver ignores setUploadTempDir?

    CommonsMultipartResolver use the same tempdir whether setUploadTempDir is called or not.


    FileSystemResource fileSystemResource...
  25. Replies
    10
    Views
    4,175

    Another thing regarding creating a point cut to...

    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...
Results 1 to 25 of 55
Page 1 of 3 1 2 3