HI, I must to consume a webservice that returns a array of array, whit this schema,
<complexContent>
<restriction base="soapenc:Array">
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[][]"/>
</restriction>
</complexContent>
</complexType>
when Import the WSDL in the LS library, generate the folling code:
Class SearchDocDatos_n0 As XSD_ANYTYPE
Public nroDocumentos As XSD_INTEGER
Public documentos() As String
Sub NEW
End Sub
End Class
where documentos() represent the output of the webservice.
After that, I create a agent, that uses then library, with this code:
Else
Dim result As SearchDocDatos_n0
Set result = rc.datos
Msgbox "total: " + result.nroDocumentos.getValueAsString()
Msgbox Isarray( rc.datos.documentos )
Msgbox Ubound(rc.datos.documentos)
rc.datos.documentos is always empty array.
Im’ trying to test the webservices, whit soapUI, and the result is ok…
any, help I really appresure–
Thanks a lot.