diff options
author | Marc Laukien <marc@zeroc.com> | 2001-11-26 17:27:16 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-11-26 17:27:16 +0000 |
commit | 8dae3ff3542e3db7e1bf148b765b5c98d564455f (patch) | |
tree | 7af8f9fe8fb4addc9ef121d879c8598db0069063 /cpp/src/Ice/Proxy.cpp | |
parent | Backout change. (diff) | |
download | ice-8dae3ff3542e3db7e1bf148b765b5c98d564455f.tar.bz2 ice-8dae3ff3542e3db7e1bf148b765b5c98d564455f.tar.xz ice-8dae3ff3542e3db7e1bf148b765b5c98d564455f.zip |
fixed batch requests
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 82a47527713..d7b06696567 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -536,7 +536,7 @@ IceDelegateM::Ice::Object::ice_invokeIn(const string& operation, const vector<By { Outgoing __out(__emitter, __reference, operation.c_str()); BasicStream* __os = __out.os(); - __os->write(inParams); + __os->writeBlob(inParams); if (!__out.invoke()) { throw ::Ice::UnknownUserException(__FILE__, __LINE__); |