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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]