Forum Discussion
fzaborowski_311
Nimbostratus
Apr 05, 2010iRule Javascript call?
Hi,
Quick question (I haven't seen this done/documented here):
I wish to call a .js file for users accessing certain pages. The script simply tags their page for us to m...
May 06, 2008
The method prototype is the following:
MemberObjectStatus [] [] GlobalLB.PoolMember.get_object_status(
in String [] pool_names,
in Common__IPPortDefinition [] [] members
);
You are passing in 1-d arrays for both paramters. You'll need to convert the second parameter into a 2-d array.
Something like this:
$members =
{
address => $address,
port => $port
};
push @List, $members;
push @Lists, @List
$soapResponse = $POOLMEMBER->get_object_status(
SOAP::Data->name(pool_names => [ @mpools ]),
SOAP::Data->name(members => [ @Lists ])
);
You'll just want to make sure that you do one push on the Lists array for each pool in your mpools array.
-Joe
- Mike_61719Jan 28, 2008
Cirrus
Maybe I am confused but a .msi without admin rights is a useless .msi? - Jeff1981_42276Jan 29, 2008
Nimbostratus
Not if you deploy it through GPO with elevated rights