try {
_localURI = URIHelper.create(scheme, uri.getHost(), localPort);
} catch (InvalidURIException exception) {
_log.debug(exception, exception);
throw new ResourceException("Failed to generate local URI",
exception);
}
try {
_endpoint = new SocketEndpoint(scheme, socket);
} catch (IOException exception) {
_log.debug(exception, exception);
throw new ResourceException("Failed to create endpoint", exception);
}
}