in reply to POE method problem (building applications with POE)
Can't call method ``%s'' on an undefined value
(F) You used the syntax of a method call,
but the slot filled by the object reference
or package name contains an undefined value.
Something like this will reproduce the error:
$BADREF = undef;
process $BADREF 1,2,3;
$BADREF->process(1,2,3);
|
|---|