Forum Discussion

peter_stemwedel's avatar
peter_stemwedel
Icon for Nimbostratus rankNimbostratus
Jul 03, 2008

having trouble with get_string_class

I dont think I'm feeding a string in properly as I'm getting the following:

 

 

LocalLB::Class::StringClass=HASH(0x96af8b0)

 

 

Is there something I'm missing here:

 

 

sub getStringClass()

 

{

 

my $listname =@_;

 

$soapResponse = $Class->get_string_class(

 

SOAP::Data->name(class_names => [$listname])

 

);

 

&checkResponse($soapResponse);

 

my @class_members = @{$soapResponse->result};

 

return @class_members;

 

}

 

2 Replies

  • This should help you out:

     

     

    http://devcentral.f5.com/wiki/default.aspx/iControl/PerlQueryStringClass.html

     

    Click here

     

     

     

    -Joe
  • I can't believe I missed that. Thanks. I still dont see how my routine is different; I must be calling it incorrectly. Thanks again.