diff options
author | Marc Laukien <marc@zeroc.com> | 2001-11-29 20:59:01 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-11-29 20:59:01 +0000 |
commit | 24f0596311d7c1d22c032505f13da24fbf5d5ad1 (patch) | |
tree | be28204ca3861f9accd3fb4b1051c8fb03cb02fc /cpp/src/Ice/Object.cpp | |
parent | initial check-in (diff) | |
download | ice-24f0596311d7c1d22c032505f13da24fbf5d5ad1.tar.bz2 ice-24f0596311d7c1d22c032505f13da24fbf5d5ad1.tar.xz ice-24f0596311d7c1d22c032505f13da24fbf5d5ad1.zip |
ice_invoke
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r-- | cpp/src/Ice/Object.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
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<Byte> blob; + vector<Byte> inParams; + vector<Byte> 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; } |