Hi In my scenario I am using a ChallengeAuthenticator with a special Verifier that checks username and password of a HTTP Basic Authentication with an external Java application:
final ChallengeAuthenticator guard = new ChallengeAuthenticator(null,ChallengeScheme.HTTP_BASIC,REALM); guard.setVerifier(verifier); The HTTP Basic Authentication works fine, but now I want to add the possibility for users to log off (i.e. by calling /logoff). I can tell my own Verifier that the user has logged off, but how do I tell the Restlet framework that the user will have to re-authenticate when he accesses any resource again (in the same session)? Best regards Markus ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2833884

