Hi,
I have another problem now.
I have a Perl function that calls a Java function over XMLRPC which returns a Map, but in this test, it should return an empty Map (and does in the Java version of this test); but in Perl Dumper reports it's returning the following:
The code is:
When I use Dumper on %ret right after I declare it, it is empty:
I have another problem now.
I have a Perl function that calls a Java function over XMLRPC which returns a Map, but in this test, it should return an empty Map (and does in the Java version of this test); but in Perl Dumper reports it's returning the following:
Code:
$VAR1 = {
'' => undef
};
Code:
my %ret = ();
...
%ret = $api->getAllExternalData( $ticketID );
Code:
$VAR1 = {};