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 19:44:25 UTC

svn commit: r582909 - in /incubator/cxf/branches/2.0.x-fixes: ./ systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java

Author: dkulp
Date: Mon Oct  8 10:44:24 2007
New Revision: 582909

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

........
  r580324 | mmao | 2007-09-28 08:00:15 -0400 (Fri, 28 Sep 2007) | 3 lines
  
  * comment out the stactrace print, marked as REVISIT
........

Modified:
    incubator/cxf/branches/2.0.x-fixes/   (props changed)
    incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java

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

Modified: incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java?rev=582909&r1=582908&r2=582909&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java Mon Oct  8 10:44:24 2007
@@ -566,7 +566,7 @@
                 SOAPMessage reply = response.get();
                 replyBuffer = reply.getSOAPBody().getTextContent();
             } catch (Exception e) {
-                e.printStackTrace();
+                //e.printStackTrace();
             }
         }
 
@@ -575,6 +575,7 @@
         }
     }
 
+    // REVISIT: Exception handling?
     class TestDOMSourceHandler implements AsyncHandler<DOMSource> {
 
         String replyBuffer;
@@ -584,7 +585,7 @@
                 DOMSource reply = response.get();
                 replyBuffer = DOMUtils.getChild(reply.getNode(), Node.ELEMENT_NODE).getTextContent();
             } catch (Exception e) {
-                e.printStackTrace();
+                //e.printStackTrace();
             }
         }
 
@@ -593,6 +594,7 @@
         }
     }
 
+    // REVISIT: Exception handling?
     class TestJAXBHandler implements AsyncHandler<Object> {
 
         Object reply;
@@ -601,7 +603,7 @@
             try {
                 reply = response.get();
             } catch (Exception e) {
-                e.printStackTrace();
+                //e.printStackTrace();
             }
         }
 
@@ -610,6 +612,7 @@
         }
     }
 
+    // REVISIT: Exception handling?
     class TestSAXSourceHandler implements AsyncHandler<SAXSource> {
 
         SAXSource reply;
@@ -628,6 +631,7 @@
         }
     }
 
+    // REVISIT: Exception handling?
     class TestStreamSourceHandler implements AsyncHandler<StreamSource> {
 
         StreamSource reply;
@@ -637,7 +641,7 @@
                 reply = response.get();
 
             } catch (Exception e) {
-                e.printStackTrace();
+                //e.printStackTrace();
             }
         }