I use a third-party ged platform that provides web-services
JAX-WS
. There is a method called getInstanceCardData that returns the value of the form record fields of a request.
Here's the method signature:
Method:
getInstanceCardData (String user, String password, int companyId, String userId, int processInstanceId)
Parameters:
Return: String [] [].
call method I have the following return:
net.java.dev.jaxb.array.StringArrayArray@3cece078
I am not able to access the return data. I can only access information. See:
result = getInstanceCardData(user, pass, company, userId, numeroProcesso);
var item = getInstanceCardData.getItem();
newDataset.addRow([
item[i].item, // So consigo acessar essa informação.
//item[i++].item
//item[i++].item[i++]
//item[i].item.item nem roda
]);
Below is an image of soapUI accessing the method.