Marc Lafon

Results 4 comments of Marc Lafon

As a turn around, we can inject the charset preference with this turn around when generating the ChallengeRequest in the Authenticator class: ``` ChallengeRequest cr = new ChallengeRequest(ChallengeScheme.HTTP_BASIC, myRealm); //...

I am afraid that it does not work completely, On a request without challenge the server add correctly the charset parameter. On the client side the Client encode the credential...

Here is the test code I used, for the Client part: ``` package testsbasicunicode; import java.io.IOException; import org.restlet.data.ChallengeResponse; import org.restlet.data.ChallengeScheme; import org.restlet.data.Status; import org.restlet.resource.ClientResource; import org.restlet.resource.ResourceException; public class ClientTest {...