From 24f0596311d7c1d22c032505f13da24fbf5d5ad1 Mon Sep 17 00:00:00 2001 From: Marc Laukien Date: Thu, 29 Nov 2001 20:59:01 +0000 Subject: ice_invoke --- cpp/src/Ice/Object.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'cpp/src/Ice/Object.cpp') diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index 6d1f28f91aa..63a8dfa5f29 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -248,9 +248,11 @@ Ice::Object::ice_findFacet(const string& name) DispatchStatus Ice::Blobject::__dispatch(Incoming& in, const Current& current) { - vector blob; + vector inParams; + vector outParams; Int sz = in.is()->getReadEncapsSize(); - in.is()->readBlob(blob, sz); - ice_invokeIn(blob, current); + in.is()->readBlob(inParams, sz); + ice_invoke(inParams, outParams, current); + in.is()->writeBlob(outParams); return ::IceInternal::DispatchOK; } -- cgit v1.2.3