‘If the below code is run, then logon1 shows as 2 D and list shows as 1 D.
'The following is seen in the debug viewer
[-]logon1(0,0)
[-]logon1(0,0)
[-]logon1(1,0)
[-]logon1(1,1)
[-]list(0)
[-]list(1)
‘If the below code is run, then list shows as 2 D and logon shows as 1 D.
'The following is seen in the debug viewer
[-]list(0,0)
[-]list(0,0)
[-]list(1,0)
[-]list(1,1)
[-]logon1(0)
[-]logon1(1)
‘I am able to capture the return xml from the below cmd and continue.
Code:
logon1 = WebService("SoapApiService").super(parameter1,parameter2)
list = WebService("SoapApiService").listcommand(parameter1,parameter2)
[-]logon1(0,0)
[-]logon1(0,0)
[-]logon1(1,0)
[-]logon1(1,1)
[-]list(0)
[-]list(1)
‘If the below code is run, then list shows as 2 D and logon shows as 1 D.
Code:
list = WebService("SoapApiService").listcommand(parameter1,parameter2)
logon1 = WebService("SoapApiService").super(parameter1,parameter2)
[-]list(0,0)
[-]list(0,0)
[-]list(1,0)
[-]list(1,1)
[-]logon1(0)
[-]logon1(1)
‘I am able to capture the return xml from the below cmd and continue.
Code:
Set var_List = WebService("SoapApiService").LastResponse