in reply to SOAP::Lite - a hyphen in method name
Maybe you can show us the actual code you're using? Most likely, you can fake the "hyphen-in-a-method name" by using something like:
my $method_name = 'bpi-request'; $soap->$method_name( 'foo', 'bar', 'baz' );
Also worth investigating would be $session->call( $method_name, ...), which also allows you to call functions that Perl would consider having illegal names in SOAP::Lite.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: SOAP::Lite - a hyphen in method name
by TheNode (Initiate) on Aug 27, 2015 at 13:43 UTC | |
by Corion (Patriarch) on Aug 27, 2015 at 14:33 UTC | |
by TheNode (Initiate) on Aug 28, 2015 at 08:10 UTC | |
by Anonymous Monk on Aug 28, 2015 at 08:47 UTC | |
by TheNode (Initiate) on Aug 28, 2015 at 10:42 UTC | |
| |
by Corion (Patriarch) on Aug 28, 2015 at 08:39 UTC |