Hello there.
 
I have a client/server app that runs on Windows, and I must make the server to run on Linux as well.
I choosed the Mono for start.
The problem is that if I have a remoting object that contains the following method in the Remoting object
 
public Stream GetStream()
{
    outputStream=(Stream)File.OpenWrite("Test.zip"); //outputStream is a class member
    return outputStream;
}
 
and I get a reference of this object on a client ( with Activator object ) and try to use the resulting Stream ( read/write or any other operation ), the client application hangs.
 
This happens only when I run the server on Linux with Mono. On windows it works ok.
Any suggestions?
 
Regards
Dan Cimpoiesu

Reply via email to