2016-11-11 55 views
1

過去了,我使用送我的憑據,如何取回憑證由用戶在肥皂WSDL的Java web服務

Authenticator.setDefault(new Authenticator() { 
        @Override 
        protected PasswordAuthentication getPasswordAuthentication() { 
         return new PasswordAuthentication("username", "password".toCharArray()); 
      } 
}); 

我的問題是,現在我怎麼能檢索肥皂Web服務的Java這個憑據?

回答

1

得到了解決,

ArrayList<String> authList = (ArrayList<String>) http_headers.get("Authorization"); 

它返回Base64編碼憑據。