You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/02/19 21:27:26 UTC

svn commit: r1447903 - /cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Author: dkulp
Date: Tue Feb 19 20:27:26 2013
New Revision: 1447903

URL: http://svn.apache.org/r1447903
Log:
Merged revisions 1447887 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1447887 | owulff | 2013-02-19 14:55:08 -0500 (Tue, 19 Feb 2013) | 2 lines

  [CXF-4839] WSDL parser error not logged

........

Modified:
    cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Modified: cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java?rev=1447903&r1=1447902&r2=1447903&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java (original)
+++ cxf/branches/2.7.x-fixes/rt/core/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java Tue Feb 19 20:27:26 2013
@@ -2589,6 +2589,7 @@ public class ReflectionServiceFactoryBea
         try {
             definition = getBus().getExtension(WSDLManager.class).getDefinition(wsdlUrl);
         } catch (WSDLException e) {
+            LOG.log(Level.WARNING, "Failed to parse WSDL", e);
             return true;
         }
         if (definition.getPortTypes().isEmpty() && definition.getImports().isEmpty()) {