Forum Discussion

Eduardo_Saito_1's avatar
Eduardo_Saito_1
Icon for Nimbostratus rankNimbostratus
Jul 12, 2006

Newbie at SOAP - Cache

Hi everyone. I'm newbie at SOAP and I'm trying to list my cache entries using SOAP::Lite.

 

 

My code:

 

sub handle_listar()

 

{

 

(@object_list) = @_;

 

 

if (0 == scalar(@object_list))

 

{

 

return;

 

}

 

 

$soapResponse = $RAMCacheInformation->get_ramcache_entry

 

(

 

SOAP::Data->name(profile_name => @object_list)

 

);

 

&checkResponse($soapResponse);

 

@cache_list = @{$soapResponse->result};

 

 

$i=0;

 

foreach $chave (@object_list)

 

{

 

print "Search for: '$chave'\n";

 

print "Result: @cache_list"

 

}

 

 

}

 

 

I`m getting:

 

SOAP-ENV:Server Could not find element by name: keys

 

 

 

Thanks!
No RepliesBe the first to reply