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/27 08:05:24 UTC

svn commit: r1450622 - /cxf/branches/2.5.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Author: dkulp
Date: Wed Feb 27 07:05:24 2013
New Revision: 1450622

URL: http://svn.apache.org/r1450622
Log:
Merged revisions 1447916 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/branches/2.6.x-fixes

........
  r1447916 | dkulp | 2013-02-19 12:52:04 -0800 (Tue, 19 Feb 2013) | 18 lines

  Merged revisions 1447903 via  git cherry-pick from
  https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes

  ........
    r1447903 | dkulp | 2013-02-19 15:27:26 -0500 (Tue, 19 Feb 2013) | 10 lines

    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.5.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java

Modified: cxf/branches/2.5.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java?rev=1450622&r1=1450621&r2=1450622&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java (original)
+++ cxf/branches/2.5.x-fixes/rt/frontend/simple/src/main/java/org/apache/cxf/service/factory/ReflectionServiceFactoryBean.java Wed Feb 27 07:05:24 2013
@@ -2567,6 +2567,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()) {