Re: c# NMS message not writing to file

2009-11-18 Thread Timothy Bish
On Wed, 2009-11-18 at 14:20 -0800, gtsafas wrote: > I am not understanding why this isn't writing to file > > using System; > using System.IO; > using System.Collections.Generic; > using System.Text; > using Apache.NMS.ActiveMQ; > using Apache.NMS; > using Apache.NMS.Util; > using System.Threading

c# NMS message not writing to file

2009-11-18 Thread gtsafas
StreamWriter writeFile = new StreamWriter(filename, true); message = receivedMsg as ITextMessage; Console.WriteLine(message.Text); writeFile.Write(message.Text); } } } -- View this message in context: http://old.nabble.com/c--NMS-