Index: src/org/jboss/tools/ws/ui/views/JAXRSWSTestView2.java =================================================================== --- src/org/jboss/tools/ws/ui/views/JAXRSWSTestView2.java (revision 39211) +++ src/org/jboss/tools/ws/ui/views/JAXRSWSTestView2.java (working copy) @@ -1858,7 +1858,12 @@ JBossWSUIPlugin.PLUGIN_ID, JBossWSUIMessages.JAXRSWSTestView_Exception_Status + innerE.getLocalizedMessage()); status.setResultsText(innerE.toString()); - JBossWSUIPlugin.log(e); + + // this fix is to address JBIDE-11294 and the fact that we shouldn't actually log this exception from deep + // within the WS API. + if ((!innerE.getLocalizedMessage().contains("Unsupported endpoint address: REPLACE_WITH_ACTUAL_URL"))) { //$NON-NLS-1$ + JBossWSUIPlugin.log(e); + } return status; } }