VB 6 Client Using SOAP AND .NET Web Service 
Author Message
 VB 6 Client Using SOAP AND .NET Web Service

Hi,

Is it possible to use a VB 6 Client and SOAP to send and receive messages
from a .NET Web Service? If the answer is yes, can a SOAP message send and
receive a ADO recordSet?

Thanks in advance,
Mike Schoenfeld



Mon, 30 May 2005 02:49:14 GMT  
 VB 6 Client Using SOAP AND .NET Web Service
The answer is yes - you can use the SOAP Toolkit (downloadable from MSDN) in
VB6 to invoke a Web service created using .NET.

I don't know if you can return an ADO Recordset object, but I rather doubt
it - at least not automatically.

To be returned via SOAP the Recordset would need to be serialized into XML
(or a byte array or something), which won't happen automatically within .NET
since it isn't a .NET object. You may be able to return the Recordset if you
have it convert itself to XML first, and then return the XML string as a
result of your Web service. On the client then, you'd use that XML to
recreate the Recordset object.
--
Rockford Lhotka
Author of "Professional Visual Basic Interoperability"


Quote:
> Hi,

> Is it possible to use a VB 6 Client and SOAP to send and receive messages
> from a .NET Web Service? If the answer is yes, can a SOAP message send and
> receive a ADO recordSet?

> Thanks in advance,
> Mike Schoenfeld




Mon, 30 May 2005 05:29:45 GMT  
 VB 6 Client Using SOAP AND .NET Web Service
This site might help somewhat:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgu...
l/cpconaccessingadofromadonet.asp

--

Dean


Quote:
> Hi,

> Is it possible to use a VB 6 Client and SOAP to send and receive messages
> from a .NET Web Service? If the answer is yes, can a SOAP message send and
> receive a ADO recordSet?

> Thanks in advance,
> Mike Schoenfeld




Mon, 30 May 2005 05:53:10 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. Creating a VB.Net Web Service utilizing SOAP?

2. SMS Text Messaging SOAP, WSDL or .NET Web service

3. Error calling web service from VB.Net client

4. Porting a web service client from VB.NET to eVB

5. Web services and SOAP with VB

6. Smart device application using VB.net and web services

7. web service and updating web reference with vb.net design time vs run time

8. web service and updating web reference with vb.net design time vs run time

9. How to: Capture SOAP envelop going out of VB.Net web service client program.

10. Reading XML / SOAP response from call to a Web Service

11. SMS Text Messaging SOAP/Web Service

12. SOAP Toolkit/Web services and FileSystemObject...

 

 
Powered by phpBB® Forum Software