I've now played with both of  Ulf's suggested approaches  (using io:format(user, Fmt, Args), or alternatively, resetting processes group leaders) and have gotten output to go the correct consoles with both approaches.  Which of course led to the next hurdle,  reading input from the player console.<br>
<br>The referee sent a question to the player, which was written to the player node's console. What I want to do is type a response in the player console,  have it read, parsed, and sent to the referee, but so far no luck. My responses vanish into the ether, and the referee hangs waiting for players to respond.<br>
<br>Here is how I am trying to respond. When the player process receives a question, it writes to the console and tries to read a line:<br><br><when I have reset player group leaders><br>    io:fwrite("~n~s", [Question]),<br>
    Reply = io:get_line(["= "]),<br><br><did not mess with group leaders, instead specified the 'user' atom during io><br>I have also tried:<br>    io:fwrite(user, "~n~s", [Question]),<br>
    Reply = io:get_line(user, ["= "]),<br><br><br>It occurs to me that maybe I am going about this the wrong way? Perhaps my approch is misconceived.  I have to believe that console IO in a client-server setting is pretty common. Can anyone point me in the right direction?<br>
<br>Thank you,<br>David<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><font color="#888888"></font><div><div class="Wj3C7c">
<br><div class="gmail_quote">On Fri, Oct 24, 2008 at 2:44 PM, Ulf Wiger (TN/EAB) <span dir="ltr"><<a href="mailto:ulf.wiger@ericsson.com" target="_blank">ulf.wiger@ericsson.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

David Cabana skrev:<div><br>
><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
The messages flow correctly, but all the terminal io happens in<br>
a single console, the one associated with the referee node.<br>
<br>
My question is how to get player output written to the console of the corresponding<br>
player node? <br>
</blockquote>
<br></div>
Use io:format(user, Fmt, Args)<br>
<br>
Alternatively, set the group leader of the process to some<br>
local process - e.g. the group leader of net_kernel<br>
(found by calling process_info(whereis(net_kernel),group_leader)).<br>
<br>
The group leader is the process that's handed all io messages.<br>
The rpc server deliberately sets the group leader of an rpc<br>
handler process to that of the caller on the originating node,<br>
since the remote node may not always have a tty to print to.<br>
When spawning, the group leader of the spawned process will<br>
be inherited from the parent. If you spawn a process on<br>
another node, it will still have the same group leader as<br>
the parent.<br>
<br>
The BIF group_leader(Pid,New_group_leader_pid) sets a new<br>
leader.<br>
<br>
BR,<br>
Ulf W<br>
</blockquote></div><br>
</div></div></blockquote></div><br>