I wrote a small client and server app to learn how to use pipes. In each app I originally had the streams in a using block and I quickly found out that when the using block was finished and it disposed of the stream, it also disposed my pipes.
I got rid of the using blocks and made member variables for the streams. Now my problem is that when I call the ReadLine function on the StreamReader in the client it doesn't continue until my server app is closed (or more specifically, until the StreamWriter is disposed of).
It seems strange that I would have to create a new stream (and by extension a new pipe as well since every time the stream is closed it disposes of the pipe too) for each message I want to send. What do I need to change?
Server Code:
class PipeServer
{
NamedPipeServerStream _pipeServer;
StreamWriter _sw;
public PipeServer(string pipeName)
{
_pipeServer = new NamedPipeServerStream(pipeName, PipeDirection.Out);
_pipeServer.WaitForConnection();
_sw = new StreamWriter(_pipeServer) { AutoFlush = true };
}
public void WriteMessage(string message)
{
_sw.WriteLine(message);
}
}
Client Code:
public delegate void MessageReadEventHandler(string message);
class PipeClient
{
public event MessageReadEventHandler MessageReadEvent;
NamedPipeClientStream _pipeClient;
StreamReader _sr;
public PipeClient(string pipeName)
{
_pipeClient = new NamedPipeClientStream(".", pipeName, PipeDirection.In);
_pipeClient.Connect();
_sr = new StreamReader(_pipeClient);
}
public void ReadMessages()
{
string temp;
while ((temp = _sr.ReadLine()) != null)
if (MessageReadEvent != null)
MessageReadEvent(temp);
}
}
Server form contains one text box and has the following code:
public partial class Form1 : Form
{
PipeClient pClient = new PipeClient("testpipe");
public Form1() { InitializeComponent(); }
private void Form1_Load(object sender, EventArgs e)
{
pClient.MessageReadEvent += o => { textBox1.Text = o; };
}
private void Form1_Shown(object sender, EventArgs e)
{
pClient.ReadMessages();
}
}
Client form has one text box and has the following code:
public partial class Form1 : Form
{
PipeServer pServer = new PipeServer("testpipe");
public Form1() { InitializeComponent(); }
private void ServerTextBox_TextChanged(object sender, EventArgs e)
{
pServer.WriteMessage(ServerTextBox.Text);
}
}
As you can see I'm trying to fire an event every time a message is sent, and I want the pipe to stay open and listen continually for messages.