Hi
Im trying to call a webservice with vbs and to display the returned values.
If I call a service which returns a single string or only one row odf datas
there is no problem. But if I recieve an array of values I cannot access any
item or value of an item.
Should I retrun an XML String in case of an objet array?
Here is a sample of my code.
strWsdl = "http://www.omnisolutions.ch/SLXService/service.asmx?WSDL"
set objSoap = createObject("MSSOAP.SoapClient")
objSoap.mssoapinit(strWsdl)
items = objSoap.GetDocuments("Name")
for i=0 to UBound(items) step 1
msgbox items(i).item(0)
next
' msgbox items
set objSoap = nothing
Archived from group: microsoft>public>vb>syntax