Re: [Jcrbrowser-developers] JCR Browser Bug / Corrected
Brought to you by:
sandro_boehme
From: Susanne B. <sch...@gm...> - 2007-04-11 21:12:34
|
Hello Thierry, thanks for digging into the details and providing the community with the bug fix! I will check it and release it with the next release. Thanks, Sandro thierry levieux wrote: >Message body follows: > >Hello Sandro, > >The context is the following: >- Repository started >- Login (JCR Browser) >- Shutdown my repository >- Logout (JCR Browser) >- Restart my repository >- Login (JCR Browser) => unable to login (no message popup). > >To summarize, the browser is sticked with an invalid session ! > >I changed SimpleAuthenticationService.java and it works fine >now. Could you check the following correction is appropriate >or not ? > > > public void logout() { > if (this.session!=null){ > try { > session.logout(); > } finally { > session = null; > } > } > } > > > >Thanks a lot. > >Rgds, >Thierry Levieux > > >-- >This message has been sent to you, a registered SourceForge.net user, >by another site user, through the SourceForge.net site. This message >has been delivered to your SourceForge.net mail alias. You may reply >to this message using the "Reply" feature of your email client, or >using the messaging facility of SourceForge.net at: >https://sourceforge.net/sendmessage.php?touser=1766172 > > > |