Merged in brasseld/openesb-components (pull request #7)

ESBCOMP-20 HTTPBC should display the URL that causes an error when accessing external webservice
master
David Brassely 2013-03-18 15:51:08 +01:00
commit e92b1de926
1 changed files with 1 additions and 0 deletions

View File

@ -195,6 +195,7 @@ public class AsyncResponseProcessor<T> implements Runnable {
}
private void replyError(Throwable t) {
logger.warning("HTTPBC: Exchange fault for service URL: " + context.getEndpoint().getEndpointUrl() + " : " + t.getLocalizedMessage());
setExchangeFaulty((Exception) t, CLIENT, "", t.getLocalizedMessage());
}