LOGGER.config("endpoint set to: " + endpoint);
final ListsLocator loc = new ListsLocator();
loc.setListsSoapEndpointAddress(endpoint);
final Lists listsService = loc;
try {
stub = (ListsSoap_BindingStub) listsService.getListsSoap();
} catch (final ServiceException e) {
LOGGER.log(Level.WARNING, "Unable to get the list stub", e);
throw new SharepointException("Unable to get the list stub");
}
}