in reply to Creating a module with POE

I spot at least one problem, try:
$kernel->yield("ready"); #not $kernel->yield("_ready")
_ready is your event handler name, the event name is "ready". (There might be other problems, haven't tested.)

Replies are listed 'Best First'.
Re^2: Creating a module with POE
by dannoura (Pilgrim) on May 13, 2005 at 21:05 UTC

    Yeah, that was it. Stupid mistake, late hour, I promise not to do it again.