You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2006/12/02 10:11:34 UTC

svn commit: r481524 - /incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/WSServiceProxy.cpp

Author: jsdelfino
Date: Sat Dec  2 01:11:33 2006
New Revision: 481524

URL: http://svn.apache.org/viewvc?view=rev&rev=481524
Log:
Fixed support for one way operations, was throwing a 'type not supported' exception.

Modified:
    incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/WSServiceProxy.cpp

Modified: incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/WSServiceProxy.cpp
URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/WSServiceProxy.cpp?view=diff&rev=481524&r1=481523&r2=481524
==============================================================================
--- incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/WSServiceProxy.cpp (original)
+++ incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/WSServiceProxy.cpp Sat Dec  2 01:11:33 2006
@@ -442,9 +442,8 @@
                             }
                         default:
                             {
-                                ostringstream msg;
-                                msg << "Unsupported result type: " << resultType;
-                                throwException(SystemConfigurationException, msg.str().c_str());
+                                // One way operation, no return value
+                                break;
                             }
                         }
                     }
@@ -546,9 +545,8 @@
                             }
                         default:
                             {
-                                ostringstream msg;
-                                msg << "Unsupported result type: " << resultType;
-                                throwException(SystemConfigurationException, msg.str().c_str());
+                                // One way operation, no return value
+                                break;
                             }
                         }
                     }



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org