use of javax.xml.ws.handler.HandlerResolver in project openolat by klemens.
the class ViteroManager method checkConnection.
public boolean checkConnection(final String url, final String login, final String password, final int customerId) throws VmsNotAvailableException {
try {
LicenceService ss = new LicenceService();
ss.setHandlerResolver(new HandlerResolver() {
@SuppressWarnings("rawtypes")
@Override
public List<Handler> getHandlerChain(PortInfo portInfo) {
List<Handler> handlerList = new ArrayList<Handler>();
handlerList.add(new ViteroSecurityHandler(login, password));
return handlerList;
}
});
Licence port = ss.getLicenceSoap11();
String endPoint = UriBuilder.fromUri(url).path("services").path("LicenseService").build().toString();
((BindingProvider) port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, endPoint);
GetModulesForCustomerRequest request = new GetModulesForCustomerRequest();
request.setCustomerid(customerId);
Modulestype modulesType = port.getModulesForCustomer(request);
return modulesType != null;
} catch (SOAPFaultException f) {
ErrorCode code = handleAxisFault(f);
switch(code) {
case unsufficientRights:
log.error("Unsufficient rights", f);
break;
default:
logAxisError("Cannot check connection", f);
}
return false;
} catch (WebServiceException e) {
if (e.getCause() instanceof ConnectException) {
throw new VmsNotAvailableException();
}
log.warn("Error checking connection", e);
return false;
}
}
use of javax.xml.ws.handler.HandlerResolver in project OpenOLAT by OpenOLAT.
the class ViteroManager method checkConnection.
public boolean checkConnection(final String url, final String login, final String password, final int customerId) throws VmsNotAvailableException {
try {
LicenceService ss = new LicenceService();
ss.setHandlerResolver(new HandlerResolver() {
@SuppressWarnings("rawtypes")
@Override
public List<Handler> getHandlerChain(PortInfo portInfo) {
List<Handler> handlerList = new ArrayList<Handler>();
handlerList.add(new ViteroSecurityHandler(login, password));
return handlerList;
}
});
Licence port = ss.getLicenceSoap11();
String endPoint = UriBuilder.fromUri(url).path("services").path("LicenseService").build().toString();
((BindingProvider) port).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, endPoint);
GetModulesForCustomerRequest request = new GetModulesForCustomerRequest();
request.setCustomerid(customerId);
Modulestype modulesType = port.getModulesForCustomer(request);
return modulesType != null;
} catch (SOAPFaultException f) {
ErrorCode code = handleAxisFault(f);
switch(code) {
case unsufficientRights:
log.error("Unsufficient rights", f);
break;
default:
logAxisError("Cannot check connection", f);
}
return false;
} catch (WebServiceException e) {
if (e.getCause() instanceof ConnectException) {
throw new VmsNotAvailableException();
}
log.warn("Error checking connection", e);
return false;
}
}
use of javax.xml.ws.handler.HandlerResolver in project photon-model by vmware.
the class BasicConnection method _connect.
@SuppressWarnings("unchecked")
private void _connect() throws RuntimeFaultFaultMsg, InvalidLocaleFaultMsg, InvalidLoginFaultMsg, com.vmware.pbm.RuntimeFaultFaultMsg {
if (this.token != null) {
/* This lock exists because header handlers are set per VimService.
LoginByToken and normal login with username and password are using different sets of
header handlers. If the correct handlers are not set, the connection will fail */
synchronized (BasicConnection.class) {
HandlerResolver defaultResolver = getVimService().getHandlerResolver();
HeaderHandlerResolver handlerResolver = new HeaderHandlerResolver();
handlerResolver.addHandler(new TimeStampHandler());
handlerResolver.addHandler(new SamlTokenExtractionHandler());
try {
handlerResolver.addHandler(new SamlTokenHandler(SamlUtils.createSamlDocument(this.token).getDocumentElement()));
getVimService().setHandlerResolver(handlerResolver);
} catch (ParserConfigurationException | SAXException | IOException e) {
throw new RuntimeFaultFaultMsg("Unable to authenticate", e);
}
this.vimPort = getVimService().getVimPort();
updateBindingProvider(getBindingsProvider(), this.uri.toString());
this.serviceContent = this.vimPort.retrieveServiceContent(this.getServiceInstanceReference());
try {
this.userSession = this.vimPort.loginByToken(this.serviceContent.getSessionManager(), null);
} finally {
getVimService().setHandlerResolver(defaultResolver);
}
}
} else {
this.vimPort = getVimService().getVimPort();
updateBindingProvider(getBindingsProvider(), this.uri.toString());
this.serviceContent = this.vimPort.retrieveServiceContent(this.getServiceInstanceReference());
this.userSession = this.vimPort.login(this.serviceContent.getSessionManager(), this.username, this.password, null);
}
this.headers = (Map<String, List<String>>) getBindingsProvider().getResponseContext().get(MessageContext.HTTP_RESPONSE_HEADERS);
// Need to extract only the cookie value
List<String> cookieHeaders = this.headers.getOrDefault(HttpHeaderNames.SET_COOKIE.toString(), Collections.EMPTY_LIST);
if (cookieHeaders.isEmpty()) {
throw new RuntimeFaultFaultMsg("Failure in connecting to server, no session cookie found");
}
String cookieVal = cookieHeaders.get(0);
String[] tokens = cookieVal.split(";");
tokens = tokens[0].split("=");
String extractedCookie = tokens[1];
// PbmPortType
this.pbmService = new PbmService();
// Setting the header resolver for adding the VC session cookie to the
// requests for authentication
HeaderHandlerResolver headerResolver = new HeaderHandlerResolver();
headerResolver.addHandler(new VcSessionHandler(extractedCookie));
this.pbmService.setHandlerResolver(headerResolver);
this.pbmPort = this.pbmService.getPbmPort();
updateBindingProvider((BindingProvider) this.pbmPort, this.getSpbmURL().toString());
this.pbmServiceContent = this.pbmPort.pbmRetrieveServiceContent(this.getPbmServiceInstanceReference());
}
use of javax.xml.ws.handler.HandlerResolver in project cloudstack by apache.
the class VmwareClient method pbmConnect.
private void pbmConnect(String url, String cookieValue) throws Exception {
URI uri = new URI(url);
String pbmurl = "https://" + uri.getHost() + "/pbm";
String[] tokens = cookieValue.split("=");
String extractedCookie = tokens[1];
HandlerResolver soapHandlerResolver = new HandlerResolver() {
@Override
public List<Handler> getHandlerChain(PortInfo portInfo) {
VcenterSessionHandler VcSessionHandler = new VcenterSessionHandler(extractedCookie);
List<Handler> handlerChain = new ArrayList<Handler>();
handlerChain.add((Handler) VcSessionHandler);
return handlerChain;
}
};
pbmService.setHandlerResolver(soapHandlerResolver);
pbmSvcInstRef.setType(PBM_SERVICE_INSTANCE_TYPE);
pbmSvcInstRef.setValue(PBM_SERVICE_INSTANCE_VALUE);
pbmPort = pbmService.getPbmPort();
Map<String, Object> pbmCtxt = ((BindingProvider) pbmPort).getRequestContext();
pbmCtxt.put(BindingProvider.SESSION_MAINTAIN_PROPERTY, true);
pbmCtxt.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, pbmurl);
}
Aggregations