How wold this be accomplished in vb script? I thought it would be just as straight forward but it doesn't seem to be.
This code works:
xresult = builtin.CreateVariantArray(0,1)
xresult = webservices.Mysvc.GetEmployeeCountByGroup(SvcType_Application, "ABC",SvcType_Groups, SvcType_Token)
However when I try to analyze anything with the xresult array it doesn't want to allow it. For instance the code below produces an error stating "Invalid Argument". Ultimately what I want to be able to do is brwose through the array and verify the properties of the objects returned.
log.Message(VarArrayLowBound(xresult, 0))