in reply to Can't access class methods via SOAP
See this for the reason for the message in a general sense. The problem you are having is that you are trying to autodispatch to the method formal and this is blocked because you have not specified the module it is in in the 'dispatch_to'. you could try adding the module to the dispatch_to list, specifying the full package name of the method or call it as a subroutine (with call) just the same as you did with new().
/J\
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Can't access class methods via SOAP
by DamnDirtyApe (Curate) on Aug 05, 2004 at 16:06 UTC | |
by gellyfish (Monsignor) on Aug 05, 2004 at 16:49 UTC |