> The following is the SOAP response from my customer 's intranet based web
> service. From my VB app I call:
[quoted text clipped - 14 lines]
> <ns1829687187:Orders href="#id5"/>
> </multiRef>
Jonathan, did you try creating proxy classes using Add Web Reference? That
way, the proxy classes would take care of any deserializing, and you'd have
nice objects to use in your code (and to persist to your database).

Signature
John Saunders [MVP]
Jonathan Attree - 28 Aug 2007 16:32 GMT
> > The following is the SOAP response from my customer 's intranet based web
> > service. From my VB app I call:
[quoted text clipped - 18 lines]
> way, the proxy classes would take care of any deserializing, and you'd have
> nice objects to use in your code (and to persist to your database).
Hi John
Thanks for the reply.
I've done a few 'Walkthroughs' from Help etc so know how the Add Web
Reference thing works.
My problem is that the web service is on my customers intranet so I can't
access it from my development machine so I can't create a web reference to
access its objects. All I do have is the .wsdl and .xsd files. Can I find out
what objects are returned from these?
Jonathan Attree
John Saunders [MVP] - 28 Aug 2007 16:36 GMT
>> > The following is the SOAP response from my customer 's intranet based
>> > web
[quoted text clipped - 32 lines]
> out
> what objects are returned from these?
In the Add Web Reference dialog, simply point to the .WSDL file. You don't
need the actual service. In fact, all the actual service does it return the
WSDL and schemas.

Signature
John Saunders [MVP]
Jonathan Attree - 28 Aug 2007 17:00 GMT
> >> Jonathan, did you try creating proxy classes using Add Web Reference?
> >> That
[quoted text clipped - 15 lines]
> need the actual service. In fact, all the actual service does it return the
> WSDL and schemas.
Thanks again.
That was the first thing I tried and it added the web reference fine but I
still can't access the service's methods. The service name is 'obom' and when
I type:
Dim ws As New obom.Service
it says 'Type obom.Service is not defined'
Jonathan Attree
John Saunders [MVP] - 28 Aug 2007 21:13 GMT
>> >> Jonathan, did you try creating proxy classes using Add Web Reference?
>> >> That
[quoted text clipped - 27 lines]
> Dim ws As New obom.Service
> it says 'Type obom.Service is not defined'
This class is usually in a namespace with the same name as the web service
host. So, for instance, if you called the host "services", you should look
for services.obom.Service.

Signature
John Saunders [MVP]