RESTLET GWT 2.1RC1
RESTLET J2EE 2.1RC1

I have been banging my head over this but no mater what I try :

                ClientResource r = new ClientResource("/service" + 
UsersServiceProxy.URL);
                r.setChallengeResponse(ChallengeScheme.HTTP_BASIC, "scott", 
"tiger");
                r.setOnResponse(new Uniform() {
                        public void handle(Request request, Response response) {
                                if (response.getStatus().isSuccess()) {

                                } else {

                                }
                                
Window.alert(response.getStatus().getDescription());
                        }
                });
                r.get();


On the server side no Challengeresponse is received. Debugging with wireshark 
shows that no "Authorization:" is sent over the wire.

Is this a regression of http://restlet.tigris.org/issues/show_bug.cgi?id=1060  
??


Koen

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

Reply via email to