Hi, Can I stop the server from a client? I wanted to build a POE script that would accept start and stop arguments. that is I could call it like:
./serverd start And it would start my server (which I know how to do). Then I could call it like: ./serverd stop Which I figure would have to launch a client process, that would connect to the server and tell it to "stop". I tried putting into my client code: $kernel->post(myaliasd => "shutdown"); But then my client hangs and my server doesn't stop Thanks Jay
