On 2001.05.17 09:25:43 -0400 Aldo Luis Orsini wrote:
> > [Wed May 16 12:22:04 2001] [error] [7080]ERR:  24: Line 9: Error in Perl
> code: Can't l
> > ocate object method "TransaccionB_radar" via package "func_seisp" at
> /app/webs/acag/ht
> > ml/audiotel/check_ring.epl line 113.

> 113    $res = func_seisp->TransaccionB_radar($numero);

err..

perl couldn't locate the method named "TransaccionB_radar" via package
"func_seisp" is fairly clear, imo.

from perldiag(1p):
       Can't locate object method "%s" via package "%s"
           (F) You called a method correctly, and it correctly
           indicated a package functioning as a class, but that
           package doesn't define that particular method, nor
           does any of its base classes.  See the perlobj
           manpage.

so either:

1. you meant:
 $res = $func_seisp->TransaccionB_radar($numero);
        ^-- missing dollar sign. see perlobj(1p) or similar

2. you haven't loaded the "func_seisp" package and you should "use" or
"require" the func_seisp module.

3. you have loaded the func_seisp package correctly, but there is no
method called "TransaccionB_radar"


i'm guessing you did (1), but you seem to have done it repeatedly, so
you might have done (2).

-- 
 - Gus

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to