I defined one ice file as below:
module Sample
{
interface test
{
void doRequest(string request,out string response, out ByteSeq responseIMG);
}
}
and I create one server like this:
class CTestImplublic ::Sample::test
{
void doRequest(string request,out string response, out ByteSeq responseIMG)
{ cout << request << endl;
//other server implement omitted
}
}
then in the main function, I create one servant and atached to the adapter and activated,it's all right;
but in the client ,I created one proxy of the servant and invoke the method
,the server has no any affect.
My question is whether the in or out parameter have any effect,I know if there is only one in parameter the application run fine;
I run both server and client in the same host,and Ice2.1
Help me!

ublic ::Sample::test
Reply With Quote