Search:

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

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Could it be the case sensitivity of the file...

    Could it be the case sensitivity of the file system on the Solaris box?
  2. No name attribute for

    Is there a reason that the name attribute is not included in the <lang:groovy /> tag? (Or am I wrong about that? I can't seem to find the attribute in the schema).

    I have a web application in...
  3. NPE when using Validator in unit tests

    I am trying to unit test a flow with a validator. Similar to the phonebook test example, I want to verify that bindAndValidate fails and we stay in the same state when a parameter is missing.

    The...
  4. Correct. I am trying to test the calling flow,...

    Correct. I am trying to test the calling flow, to make sure that its output mapper correctly maps the output from the subflow. I am not testing the subflow. So what I am trying to stub out is the...
  5. Replies
    2
    Views
    834

    There is a readme.txt file in the root of the...

    There is a readme.txt file in the root of the spring distribution, that gives those details.
  6. Replies
    1
    Views
    946

    Isn't inboundMessageListener-1 the name of your...

    Isn't inboundMessageListener-1 the name of your DefaultMessageListenerContainer? There will only be one container, but if you check out the code, you will see that the...
  7. You can load your property files from the...

    You can load your property files from the classpath:



    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="location"...
  8. Replies
    5
    Views
    1,077

    Since a redirect causes a second request to be...

    Since a redirect causes a second request to be issued, you are correct that you would not be able to use the attribute map from the first request. You can allow the RedirectView to convert your...
  9. Responding to output from subflow in a unit test

    Could someone point me to an example for how to test the setting of a value in a calling flow as the result of output from a subflow?

    I have seen in the phonebook sample tests how to validate that...
  10. Thanks, Denis, that was helpful info.

    Thanks, Denis, that was helpful info.
  11. A forward occurs within the same request as post,...

    A forward occurs within the same request as post, so the user can accidentally repeat the post by using the back or refresh button.

    You can google for redirect after post to get more info.

    This...
  12. It's usually best to redirect after a POST, in...

    It's usually best to redirect after a POST, in which case you would need to put redirect: before all your successViews
  13. Deploying MDPs in a standalone process

    I was wondering if anyone had any pointers on how to make sure that all the MessageListenerContainers are stopped cleanly when the main method that created the ApplicationContext is stopped.
    ...
  14. Thanks very much, Mike. That snippet from the...

    Thanks very much, Mike. That snippet from the Javadoc said exactly what I needed to know, in particular that setting the local Spring JmsTransactionManager would allow me to use the JmsTemplate...
  15. Using JMSTemplate from within a Message Driven Pojo

    I have implemented a message splitter that receives a message from one queue and sends it onto two other queues. There are different MessageConverters required for each send, so I am using two...
  16. Thanks

    Just wanted to say thanks, because I was wanting to make the transition to using alwaysRedirectOnPause and this document was exactly what I needed. I would agree that this is required reading.
  17. Sorry if that was unclear. I have a facility...

    Sorry if that was unclear. I have a facility that allows users to search insurance policies by the usual criteria (name, taxId, etc). Additionally, if the user has the agent role, the search should...
  18. Applying before advice with MethodSecurityInterceptor

    I need to make a change to a method argument based on roles before the method is invoked and I do not see how to do that with MethodSecurityInterceptor. I see that you can use the...
  19. I certainly will. Thanks for the recommendation.

    I certainly will. Thanks for the recommendation.
  20. Thanks, again for you response. I know this...

    Thanks, again for you response. I know this isn't strictly SWF related. I did extend FlowController and ServletExternalContext and that allowed SWF to issue redirects for the correct URLs.

    I...
  21. Erwin, thank you for your suggestion, that...

    Erwin, thank you for your suggestion, that definitely gives me some options.

    After digging some more I remembered that I really had to come up with my own solution (storing the original URL in...
  22. Redirecting to the original URL from an included FlowController

    In my application I have my Spring MVC controllers set up such that there is one controller that draws the "shell" of the page (the html, head, and opening body tags) and uses the portion of the URL...
  23. Portlet - passRenderParameters not called before onSubmitAction

    I am using (Portlet MVC) ParameterHandlerMapping to resolve my handlers. One of my controllers is a subclass of SimpleFormController. I went with the recommendation of overriding doSubmitAction()...
  24. There are pretty extensive log4j logs generated...

    There are pretty extensive log4j logs generated when you set the level to DEBUG.
  25. Is ExternalContext the way to get User Principal?

    I looked around on the API and the only way I could see to get the user Principal was to cast the ExternalContext to the appropriate impl. Is that the correct way?

    Thanks a lot,
    Caleb
Results 1 to 25 of 34
Page 1 of 2 1 2