Search:

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

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    1,501

    Solved my own problem.

    The problem was that we are using the "PARENT_LAST" classloader in WebSphere. (We do this in order to use the MyFaces component library).

    We also had the Spring provided "websphere_uow_api.jar"...
  2. Replies
    1
    Views
    1,501

    TypeMismatchNamingException with UOWManager

    Im using the new <tx:jta-transaction-manager/> tag with Spring 2.5.4 and WebSphere 6.0.2.19.

    When I run, I get the following error:


    org.springframework.jndi.TypeMismatchNamingException:...
  3. Replies
    1
    Views
    2,653

    I had a similar problem using a modal popup...

    I had a similar problem using a modal popup window, where if the session timed out while the popup was up, and then the user did something in the popup, they would get the login screen in the popup. ...
  4. Replies
    3
    Views
    1,480

    Tiles forward and RequestURI

    I have an application using JSF (MyFaces), Tiles and Acegi.

    I have two pages, and a post to the first page can result in a forward to the second page.

    The problem is that, for the forward, the...
  5. While I'm at it, I see the original posting on...

    While I'm at it, I see the original posting on this thread was about confusion over the "expiredUrl" property in the ConcurrentSessionFilter. This was something that confused me as well.

    The...
  6. vinaya, Try specifying the...

    vinaya,

    Try specifying the "concurrentSessionFilter" as the first filter.

    Also, I see that you have ConcurrentSessionFilter configured such that it will allow the second login, and "expire" the...
  7. Replies
    2
    Views
    1,021

    I did quite a bit of searching before posting. I...

    I did quite a bit of searching before posting. I basically kept going in a circle.

    Posts that asked how to error a user id trying to connect from more than one IP were told to set the...
  8. Replies
    2
    Views
    1,021

    Concurrent Session custom handling by IP

    I am using the ConcurrentSessionControllerImpl to limit concurrent sessions, but I want different behavior based on whether a request for a new session comes from the same IP as the existing session,...
  9. Replies
    14
    Views
    17,421

    I wrote a custom servlet filter that queries the...

    I wrote a custom servlet filter that queries the HTTP request to see if it passed a session id and if that session id is valid. If it's not, I redirect to the login screen, passing a parameter that...
  10. Replies
    2
    Views
    1,678

    Extending DaoAuthenticationProvider

    I also wish it were easier to modify the default behavior of the DaoAuthenticationProvider.

    I have a custom UserDetails class that has a ton of stuff that needs to be checked before the user is...
  11. Wrapping an ApplicationListener in a Transaction

    I have an ApplicationListener that makes use of a DAO, and I want the onApplicationEvent method to be performed in a Transaction.

    In my config file I have something like:



    <bean...
  12. Replies
    10
    Views
    3,062

    RE: Bind an empty collection

    Since there is no request parameter passed back when the request is submitted, spring doesn't bind anything and you just end up with the value cached in the session.

    There is a special "marker"...
  13. Replies
    2
    Views
    2,589

    The doSubmitAction does not call referenceData...

    The doSubmitAction does not call referenceData because it is expected that after a succesful form submission, you would forward to a "success" page and not back to the form.

    The Form controller is...
  14. registerCustomEditor to a collection of custom classes

    I have a collection of a custom class (with it's own custom PropertyEditor) in my command class.

    My JSP has a multi-select box. I want the values selected to be converted into a List of my custom...
Results 1 to 14 of 14