
Datatable from Soap web service
Dear all,
I have download Soap Toolkit 3.0 from microsoft. Now I am
writing the following code to access web service provided by other
people. The Code is as follows:
Dim client As New SoapClient30
Dim str As Integer
dim rst as new Recordset
Dim rst As New ADODB.Recordset
client.MSSoapInit " http://www.*-*-*.com/
OpInHUBInHouseWS.asmx?WSDL"
set rst = client.OpInHUBInHouseGet("1", "1", "1", "2008-5-10")
Because the web service OpInHubInHouseGet returns a datatable. I
don't know how to catch
the datatable. So I use recordset. But it complains type mismatch. How
can I get the datatable
returned by web service in VB6 and process it. Thanks