Author: mmao
Date: Fri Sep 28 05:00:15 2007
New Revision: 580324
URL: http://svn.apache.org/viewvc?rev=580324&view=rev
Log:
* comment out the stactrace print, marked as REVISIT
Modified:
incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java
Modified:
incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java?rev=580324&r1=580323&r2=580324&view=diff
==============================================================================
---
incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java
(original)
+++
incubator/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/dispatch/DispatchClientServerTest.java
Fri Sep 28 05:00:15 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();
}
}