Esempio n. 1
0
 public void request(HttpTransaction req) {
   try {
     authstring = req.getRequestHeader("Authorization");
     System.out.println(authstring);
     switch (count) {
       case 0:
         errorReply(req, "Basic realm=\"wallyworld\"");
         break;
       case 1:
         /* client stores a username/pw for wallyworld
          */
         okReply(req);
         break;
     }
     count++;
   } catch (IOException e) {
     e.printStackTrace();
   }
 }