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 2011/02/19 00:58:01 UTC

svn commit: r1072206 - in /cxf/branches/2.3.x-fixes: ./ common/wstx-msv-validation/src/main/java/org/apache/cxf/wstx_msv_validation/WoodstoxValidationImpl.java

Author: dkulp
Date: Fri Feb 18 23:58:00 2011
New Revision: 1072206

URL: http://svn.apache.org/viewvc?rev=1072206&view=rev
Log:
Merged revisions 1072200 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1072200 | dkulp | 2011-02-18 18:43:08 -0500 (Fri, 18 Feb 2011) | 1 line
  
  [CXF-3077] Catch any exception and disable the validation.
........

Modified:
    cxf/branches/2.3.x-fixes/   (props changed)
    cxf/branches/2.3.x-fixes/common/wstx-msv-validation/src/main/java/org/apache/cxf/wstx_msv_validation/WoodstoxValidationImpl.java

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Feb 18 23:58:00 2011
@@ -1 +1 @@
-/cxf/trunk:1068320,1068337,1068525,1068867,1068877,1069130,1069138,1069249,1069318,1069492,1069500,1069716,1069720,1069814,1070034,1070430,1070471,1070558,1070778,1071743,1071946,1072196,1072198
+/cxf/trunk:1068320,1068337,1068525,1068867,1068877,1069130,1069138,1069249,1069318,1069492,1069500,1069716,1069720,1069814,1070034,1070430,1070471,1070558,1070778,1071743,1071946,1072196,1072198,1072200

Propchange: cxf/branches/2.3.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.3.x-fixes/common/wstx-msv-validation/src/main/java/org/apache/cxf/wstx_msv_validation/WoodstoxValidationImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/common/wstx-msv-validation/src/main/java/org/apache/cxf/wstx_msv_validation/WoodstoxValidationImpl.java?rev=1072206&r1=1072205&r2=1072206&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/common/wstx-msv-validation/src/main/java/org/apache/cxf/wstx_msv_validation/WoodstoxValidationImpl.java (original)
+++ cxf/branches/2.3.x-fixes/common/wstx-msv-validation/src/main/java/org/apache/cxf/wstx_msv_validation/WoodstoxValidationImpl.java Fri Feb 18 23:58:00 2011
@@ -48,12 +48,8 @@ public class WoodstoxValidationImpl impl
         
         try {
             utils = new Stax2ValidationUtils();
-        } catch (Exception e) {
-            LOG.log(Level.INFO, "Problem initializing MSV validation", e);
-            return;
-        } catch (NoSuchMethodError nsme) {
-            LOG.log(Level.INFO, "Problem initializing MSV validation", nsme);
-            // these don't inherit from 'Exception'
+        } catch (Throwable e) {
+            LOG.log(Level.FINE, "Problem initializing MSV validation", e);
             return;
         }