Search:

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

Search: Search took 0.01 seconds.

  1. i know this thread is a bit old, but i recently...

    i know this thread is a bit old, but i recently ran into a similar problem that i was able to fix, so i'm going to add some more detail here in case anyone comes across this in the future.

    if you...
  2. i converted an app that i inherited from jdbc to...

    i converted an app that i inherited from jdbc to hibernate, and i am in the process of considering whether to convert that same app from struts to spring mvc.

    hibernate was a huge win for us... we...
  3. the code above mostly works (there's a few typos,...

    the code above mostly works (there's a few typos, so it won't compile directly). and it could even be refactored to work with any nested exception.

    but there's another issue somewhat related...
  4. not sure if that would do it... you'd want to...

    not sure if that would do it... you'd want to plug back into the exception dispatcher... probably more something like this. i copied this from struts RequestProcessor... i haven't tested it yet, its...
  5. struts FlowAction should unwrap ActionExecutionException

    hi,

    i'm converting a struts app to webflow. i used to rely on struts's exception handlers to catch certain exceptions from my service layer. but now these are caught by webflow and wrapped in an...
  6. Replies
    1
    Views
    1,079

    nevermind... i had a configuration issue and i...

    nevermind...

    i had a configuration issue and i didn't see what BindingAwarePropertyUtils was doing.

    very clever stuff :-)

    thanks.
  7. Replies
    1
    Views
    1,079

    populating BindingActionForm

    hi,

    i've been playing around with adding Web Flow to an existing struts app. i have a form object thats coming out of the database.

    I need some way to bind the form object back to the...
  8. I agree, a transactional database is high on my...

    I agree, a transactional database is high on my TODO list.

    But I don't think I agree with you about how FlushMode works. At least in the case that I'm dealing with, if FlushMode.AUTO is set with...
  9. FlushMode.COMMIT with HibernateTransactionManager

    Hi,

    As far as I can tell, the default behavior of HibernateTransactionManager with OpenSessionInViewFilter is that outside of the transaction the FlushMode is NEVER, then once you enter the...
  10. Replies
    3
    Views
    1,931

    Hi, Looks like some of this stuff is still in...

    Hi,

    Looks like some of this stuff is still in CVS, like AbstractProcessingFilter.credentialsExpiredFailureUrl.

    What would be useful for me is if RememberMeProcessingFilter also extended...
  11. Replies
    3
    Views
    1,931

    Remember Me & CredentialsExpiredException

    Hi,

    I use UserDetails.isCredentialsNonExpired(), which causes a CredentialsExpiredException, to force the user to change their passwords when they expire. I have a custom...
  12. Replies
    1
    Views
    2,188

    Password Expiration

    Hi,

    I'm trying to extend my app to support expiring of passwords. It seems the most clear cut way is to throw a CredentialsExpiredException from my AuthenticationManager and then catch the...
  13. oops, typo... i meant: Map beans =...

    oops, typo...

    i meant:


    Map beans = BeanFactoryUtils.beansOfTypeIncludingAncestors(ctx, targetClass, true, true);

    it should be plural 'beans', not singular 'bean'
  14. FilterToBeanProxy doesn't work with HierachicalBeanFactory

    Hi,

    I've come across a minor compatibility issue in FilterToBeanProxy and HierachicalBeanFactory. I'm posting in case anyone else runs into this issue, also its possible to fix this issue in the...
  15. Replies
    4
    Views
    3,609

    I'll answer my own question. It is possible to...

    I'll answer my own question.

    It is possible to use Container Adapters and SecurityEnforcementFilter together. For it to make sense, all the URLs protected by SecurityEnforcementFilter should be...
  16. Replies
    4
    Views
    3,609

    Thanks for the information. I've thought about...

    Thanks for the information.

    I've thought about trying CAS, but at this point, it seems way too complicated for the simple case that I'm trying to solve. (2 web apps: 1 mostly dynamic in a .war, 1...
  17. Replies
    4
    Views
    3,609

    Container-managed authentication

    Hi,

    I need to use container-managed authentication (need single sign-on for multiple webapps in the same container). But I'm a little confused as to how this works.

    What I'd like to be able to...
Results 1 to 17 of 17