vote up 1 vote down star

I have an interesting task: to write a program which captures input from the program called Redmon. It is basically a virtual printer which redirects the output to a program.

I installed Redmon and created a winforms application to catch the output. But I'm stuck here. I checked what does my program receives and it is nothing on the parameter level (the string[] on main args are empty).

Redmon starts my program, but then it is stopping. I guess I should read somehow the content it is sending to the program, but how?

flag

Can you show the configuration of Redmon and some code? – Daniel A. White Apr 15 at 11:16
In configuration everything is standard: redirect port to program: mytest.exe, and runasuser checked. But Marc solved it, thanks. – Biri Apr 15 at 11:40

1 Answer

vote up 2 vote down check

I would assume that Redmon streams to stdin - in which case you'll have to read from the input stream - either via Console.In (if it is character-based), or Console.OpenStandardInput (for raw binary stream access).

As a trivial example of something that reads from stdin (it reads text lines, reversing each):

static void Main() {
    WriteReversedLines(Console.In);
}
static void WriteReversedLines(TextReader reader) {
    string line;
    while ((line = reader.ReadLine()) != null) {
        char[] chars = line.ToCharArray();
        Array.Reverse(chars);
        Console.WriteLine(chars);
    }
}

Obviously you need to treat binary data slightly differently, but conceptually it is similar.

link|flag
Can I use Console.In also from a Windows.Forms application? I try that. – Biri Apr 15 at 11:23
There is very little difference, in reality, between a winform and console application... so yes, you should still be able to read from stdin. – Marc Gravell Apr 15 at 11:26
Thanks. I was looking for reading from stdin in winforms but haven't found anything. This is the reason. :-) – Biri Apr 15 at 11:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.