From de19839ed3ba3bcfd792a2eb1cc8fe1a17758bdd Mon Sep 17 00:00:00 2001 From: David BRASSELY Date: Mon, 18 Mar 2013 15:33:20 +0100 Subject: [PATCH] ESBCOMP-20 Display URL that causes an error when accessing external webservice from HTTPBC --- .../src/com/sun/jbi/httpsoapbc/async/AsyncResponseProcessor.java | 1 + 1 file changed, 1 insertion(+) diff --git a/ojc-core/httpsoapbc/httpsoapbcimpl/src/com/sun/jbi/httpsoapbc/async/AsyncResponseProcessor.java b/ojc-core/httpsoapbc/httpsoapbcimpl/src/com/sun/jbi/httpsoapbc/async/AsyncResponseProcessor.java index d76a2d841..d68dedf75 100755 --- a/ojc-core/httpsoapbc/httpsoapbcimpl/src/com/sun/jbi/httpsoapbc/async/AsyncResponseProcessor.java +++ b/ojc-core/httpsoapbc/httpsoapbcimpl/src/com/sun/jbi/httpsoapbc/async/AsyncResponseProcessor.java @@ -195,6 +195,7 @@ public class AsyncResponseProcessor 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()); }