Hi,
I've got a perl script that uses XMLRPC to talk to a Java app and it calls a Java function which returns an array of strings as Object[] but when I print out the first element I just see something like:
I'm doing this:
The Java function is declared as:
I've got a perl script that uses XMLRPC to talk to a Java app and it calls a Java function which returns an array of strings as Object[] but when I print out the first element I just see something like:
Code:
ARRAY(0x8b4d78)
I'm doing this:
Code:
my @keys;
my $key;
eval {
@keys = $api->getAllExternalDataKeyNames();
$key = $keys[0];
print "*** key = " . $key;
The Java function is declared as:
Code:
public Object[] getAllExternalDataKeyNames( int unused ) throws XmlRpcException