in reply to Re^3: Setting XML prefix for tags with SOAP::Lite
in thread Setting XML prefix for tags with SOAP::Lite

Well after much more RTFMing and Googling, I've figured out how to handle the hyphenated method name:

my $result = $rba->call($workflowName => (@params, $gridName, $securityHeader))->result();

This code isn't a direct replacement for the line in the code above as I have reworked a few variables, but I think knowing that $workflowName is the method name to call should be enough for most to figure it out :)

Next challenge is to figure out why 'result' isn't being populated...