Forum Discussion

gmtiwill_127449's avatar
gmtiwill_127449
Icon for Nimbostratus rankNimbostratus
Jul 09, 2004

get_al_active_connections() crashes iControlPortal.cgi

Whenever I execute the following code, iControlPortal.cgi crahses. The error in the syslog is pid 381 (iControlPortal.c), uid 1: exited on signal 6 (core dumped). The code is as follows:

 

my $soap = SOAP::Lite

 

-> uri('urn:iControl:ITCMLocalLB/Connections')

 

-> proxy("https://$sHost:$sPort/iControl/iControlPortal.cgi"

 

);

 

 

my $resp = $soap->get_all_active_connections(

 

SOAP::Data->name(mirror_flag=> 0),

 

);

 

 

Am I doing something wrong here? I am able to execute this method against a BigIP that does not have any connections, but consistently get a 500 Internal Server Error when executing against the production SLB.

 

Thanks,

 

Will