Search:

Type: Posts; User: Alex Seel; Keyword(s):

Search: Search took 0.03 seconds.

  1. Gary This latter options seems the most...

    Gary

    This latter options seems the most attractive as this simplifies the Gateway interface to clients and hides the integration details. We'll do it this way. Thanks for the reply.

    Alex
  2. Mark - many thanks for this. Will plug it in on...

    Mark - many thanks for this. Will plug it in on Tuesday.
  3. Passing multiple Payload arguments to JMS Gateway

    We would like to expose services in the form :


    public interface AccountGateway {

    @Gateway(...)
    List<Account> getUserAccounts(Customer customer, AccountFilter accountFilter);

    }
  4. Replies
    1
    Views
    593

    found solution: log4j.xml:

    found solution:

    log4j.xml:

    <logger name="org.springframework.webflow">
    <level value="TRACE"/>
    <appender-ref ref="console"/>
    </logger>
  5. Replies
    1
    Views
    593

    How to log transitions

    Hi

    Want to log the webflow transitions so I can confirm it transition I expect is being called, ideally without lots of other internal logging.

    I've looked in spring-webflow-reference.pdf for...
  6. Replies
    1
    Views
    937

    How do I trace/debug webflow

    I'm strugging to pass an optional request parameter to webflow with the next state to transition to.

    Is there a way to trace through webflow? Or a more complete set of documentation for how to...
  7. Replies
    2
    Views
    1,977

    I've fixed this issue: customer.age=Age...

    I've fixed this issue:



    customer.age=Age
    typeMismatch=Please enter a valid {0}


    This generates the message: 'Please enter a valid Age' when this field is of an incorrect type. Ie specify...
  8. Replies
    2
    Views
    1,977

    typeMismatch message property

    I can't seem to create a form field specific typeMismatch message.


    Field:


    command=myCommand
    field=customer.age
    field type=int
    form-name=myForm
  9. Replies
    2
    Views
    1,523

    Thanks for the suggestion - ideally I'd avoid...

    Thanks for the suggestion - ideally I'd avoid request parameters as this exposes the sites internals to the user and could allow interference.

    But will try if all else fails. Another possibility...
  10. Replies
    2
    Views
    1,523

    decision state http referer

    Problem: to transition to an intermediate state if joining webflow from a different location. Ie Customer sees their quote summary directly rather than having to repeat earlier stages


    ...
  11. Replies
    0
    Views
    761

    wait pages revisited

    I'm trying to implement a wait/loading page. A standard way to do this is with META-REFRESH but this stops dynamic gifs and show the user a constantly loading page.

    Is there a purer approach?
  12. Replies
    2
    Views
    1,025

    Thank you - this now works a treat

    Thank you - this now works a treat
  13. Replies
    2
    Views
    1,025

    NotWritablePropertyException: list of bean

    Hi I am trying inject a list of beans into another class via xml dependency injection:



    <bean id="myFactory"
    class="com.something.MyFactory">

    ...
  14. Replies
    2
    Views
    7,658

    Thank you - I've found with maven2 a slight...

    Thank you - I've found with maven2 a slight variation worked with Tomcat hot deploy (in Eclipse):



    <plugin>
    <groupId>org.apache.maven.plugins</groupId>...
  15. Replies
    2
    Views
    7,658

    Maven Tomcat hot deploy

    Have Mavenised Eclipse project and added Maven dependencies in 'Order and export' in project setup.

    It can't find the Spring jars despite them being dependencies in the POM file. Is the solution...
  16. using spring-framework 2.5.6, Apache Tomcat 6...

    using spring-framework 2.5.6, Apache Tomcat 6 Servlet/JSP Container:

    I've done more work on this and seems similar to the recently resolved JIRA:
    ...
  17. Conflict between Exception Resolver and webapp error page

    SimpleMappingExceptionResolver implements the MVC Exception Interceptor interface HandlerExceptionResolver.

    We return a valid ModelAndView object from this.

    ***********************************...
  18. Replies
    3
    Views
    1,172

    Thank you

    We've now got this working:

    WEBFLOW INTERCEPTION:
    To intercept WebFlow we implement FlowExecutionExceptionHandler, and in
    handle() log and replay the previous view-state:
    ...
  19. Replies
    3
    Views
    1,172

    Error is: ...

    Error is:

    org.springframework.webflow.execution.ActionExecutionException: Exception thrown executing [AnnotatedAction@72edc targetAction = [EvaluateAction@19576c3 expression =...
  20. Replies
    3
    Views
    1,172

    Automating error handling

    "Unhandled exceptions are propagated to the Dispatcher unless the exception is a NoSuchFlowExecutionException"

    [Spring 2.0.x webflow guide, section 10.3].

    I'm trying to intercept thrown...
  21. Thanks - I'll have a play. From the above I...

    Thanks - I'll have a play.

    From the above I need to force it to use CGLIB so it proxies the class not the interfaces it extends.
  22. Solution

    I've finally debugged the problem - by random trial & error.

    One of the spring beans implemented InitializingBean which I deleted, fixing the problem.

    What seemed to happen was it built a...
  23. UnsatisfiedDependencyException when enabling AOP

    Novice problem.

    I have a working test app which, when AOP is configured, throws an error:

    Could not convert constructor argument value of type $Proxy10 to required type Account

    This has come...
Results 1 to 23 of 23