Results 1 to 2 of 2

Thread: resin, persist session and spring

  1. #1
    Join Date
    May 2006
    Posts
    1

    Default resin, persist session and spring

    Hi I have strange problem with my application running on resin. I'm using persistent session and from time to time resin invalidates user's session object
    No idea why this happens!

    The problem is in
    Store.java from resin (2.1.14, 2.1.16, 2.1.17)

    in this part:

    if (updateCount <= oldUpdateCount) {
    in.close();

    if (dbg.canWrite() && updateCount != oldUpdateCount)
    dbg.log("distributed store: obsolete " + object);

    return updateCount == oldUpdateCount;
    }

    for some reason updateCount is not equal to oldUpdateCount ? Any idea why ?
    All objects on session are serializable
    Desperately need some help.
    Last edited by sancho; May 9th, 2006 at 04:11 PM.

  2. #2
    Join Date
    Jan 2005
    Location
    Bucharest, Romania
    Posts
    5,403

    Default

    How does this relate to Spring? Does spring in any way intervene with Resin?
    Costin Leau
    SpringSource - http://www.SpringSource.com- Spring Training, Consulting, and Support - "From the Source"
    http://twitter.com/costinl
    Please use [ c o d e ] [ / c o d e ] tags

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •