String authAdminUrl = "https://" + url.getHost() + ":" + url.getPort() /* "https://localhost:9443" */
+ urlContext + "/services/AuthenticationAdmin"; /* "/wsas/services/AuthenticationAdmin" */
AuthenticationClient authenticationClient = new AuthenticationClient(configurationContext, authAdminUrl);
if (authenticationClient.authenticate(userName, password)) {
this.cookie = authenticationClient.getSessionCookie();
} else {
throw new AuthenticationExceptionException("authentication Fault");
}
} catch (RemoteException e) {