Hi,

I've have HTTP DIGEST authentication working with my application, but I've a 
question around the best way of pre-initialising the ChallengeResponse objects. 

At the moment I seem to have to create a separate ChallengeResponse for each 
specific URI within the router since the verifier on server does an exact match 
on the URI. 

        router.attach("/read", ReadResourceImpl.class);
        router.attach("/write", WriteResourceImpl.class);

So on the client I need a ChallengeResponse for the ReadResourceImpl and a 
different one for WriteResourceImpl. 

Is there a way to create a single ChallengeResponse that can be used for all 
routes?

regards
Steve

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2733453

Reply via email to