You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2009/10/07 13:18:16 UTC

svn commit: r822666 - /tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java

Author: antelder
Date: Wed Oct  7 11:18:16 2009
New Revision: 822666

URL: http://svn.apache.org/viewvc?rev=822666&view=rev
Log:
Update to get some of the JMS exception tests working by updating to match 1.x r732679 which says 'Ignore the InvocationTargetException as the Tuscany Message body has already be set with the fault'

Modified:
    tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java

Modified: tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java
URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java?rev=822666&r1=822665&r2=822666&view=diff
==============================================================================
--- tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java (original)
+++ tuscany/java/sca/modules/core/src/main/java/org/apache/tuscany/sca/core/invocation/RuntimeWireInvoker.java Wed Oct  7 11:18:16 2009
@@ -75,7 +75,7 @@
             // shouldn't take it out of the response message in the first place
             msg.setBody(response);
         } catch (InvocationTargetException e) {
-            throw new ServiceRuntimeException(e);
+//            throw new ServiceRuntimeException(e);
         }
         
         return msg;