You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ni...@apache.org on 2011/02/24 15:05:50 UTC

svn commit: r1074154 - /cxf/branches/2.3.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletDestination.java

Author: ningjiang
Date: Thu Feb 24 14:05:49 2011
New Revision: 1074154

URL: http://svn.apache.org/viewvc?rev=1074154&view=rev
Log:
CXF-3362 Fix the servlet systest error

Modified:
    cxf/branches/2.3.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletDestination.java

Modified: cxf/branches/2.3.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletDestination.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.3.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletDestination.java?rev=1074154&r1=1074153&r2=1074154&view=diff
==============================================================================
--- cxf/branches/2.3.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletDestination.java (original)
+++ cxf/branches/2.3.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletDestination.java Thu Feb 24 14:05:49 2011
@@ -80,7 +80,7 @@ public class ServletDestination extends 
             if (req.isAsyncSupported()) {
                 return (Message)req.getAttribute(CXF_CONTINUATION_MESSAGE);
             }
-        } catch (AbstractMethodError ex) {
+        } catch (Throwable ex) {
             // the request may not implement the Servlet3 API
         }
         return null;