context.pushBaseURI(getUrlString());
httpManager.sendRequest(createRequestDetails(), context);
webdTransaction.stop(MonitoredTransaction.SUCCESSFUL, getUrlString());
} catch (HTTPException e) {
webdTransaction.stop(MonitoredTransaction.FAILED, getUrlString());
fatalError(new XMLPipelineException(
exceptionLocalizer.format(
"http-request-process-failure",
urlString),
context.getCurrentLocator(),
e));
} catch (RuntimeHttpException e) {
webdTransaction.stop(MonitoredTransaction.FAILED, getUrlString());
fatalError(new XMLPipelineException(
exceptionLocalizer.format(
"http-request-process-failure",
urlString),
context.getCurrentLocator(),
e));
} catch (MalformedURLException e) {
webdTransaction.stop(MonitoredTransaction.FAILED, getUrlString());
fatalError(new XMLPipelineException(
"base uri attribute is malformed",
context.getCurrentLocator(),
e));
} finally {
context.popBaseURI();