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 2007/10/08 20:03:51 UTC

svn commit: r582919 - in /incubator/cxf/branches/2.0.x-fixes: ./ rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java

Author: dkulp
Date: Mon Oct  8 11:03:50 2007
New Revision: 582919

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

........
  r581191 | seanoc | 2007-10-02 07:11:47 -0400 (Tue, 02 Oct 2007) | 1 line
  
  Changed from throwing exception to logging it in order to allow other QueryHandlers handle the response.
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java

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

Modified: incubator/cxf/branches/2.0.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java?rev=582919&r1=582918&r2=582919&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/servlet/ServletController.java Mon Oct  8 11:03:50 2007
@@ -132,7 +132,10 @@
                                 out.flush();
                                 return;
                             } catch (Exception e) {
-                                throw new ServletException(e);
+                                //throw new ServletException(e);
+                                LOG.warning(qh.getClass().getName() 
+                                    + " Exception caught writing response: " 
+                                    + e.getMessage());
                             }
                         }   
                     }