No, what gasadmin gives me is a list of services and apps registered in GAS.
What I want is a list of WebServices registered in a com.WebServiceEngine.
So if, for example, I register a service such as:
LET service = com.WebService.CreateWebService("LeaseProposalService"....)
LET operation = com.WebOperation.CreateDOCStyle("ws_registarProposta",...)
CALL service.publishOperation(operation,"")
LET operation = com.WebOperation.CreateDOCStyle("ws_registarContrato",...)
CALL service.publishOperation(operation,"")
CALL com.WebServiceEngine.RegisterService(service)
What I need a method(or similar) that returns a list of services from com.WebServiceEngine like this:
CALL com.WebServiceEngine.getServiceList()
returning serviceList
and then a method to return the operations of a service(com.WebService):
CALL serviceList[1].getOperationList()
returning operationList