Now, I meet this problem.
I deploy a Ice server application, and develope a Java GUI client to communicate with it. Now I need to upload a file to remote server. So I define the following Slice file:
It use byte array as parameter, but it is not suitable for large file. I try to use stream, but I can't find any demo on this subject.Code:module mymodule{ interface BundleService{ string upload(string jarFileName, ByteSeq bytes); }; };
Will anybody tell me how?
Thanks.

Reply With Quote