Excel through SOAP to a webserver

G

Guest

Hi

Is there a way to go from Excel through SOAP to a webserver? And further, is there a way to convert the returned xml into an ADODB recordset

Thanks.
 
T

Tim Williams

Yes and yes. I believe there's a MS SOAP SDK but you could perhaps
roll your own depending on the complexity of your app.

ADO recordset can be persisted to xml and then recreated from that
xml, but the format is specific to ADO and probably will not match the
server-generated xml (unless that is from an ADO recordset). You'd
have to load the xml into a document and iterate through it, filling
the recordset.

Tim.


MattM said:
Hi,

Is there a way to go from Excel through SOAP to a webserver? And
further, is there a way to convert the returned xml into an ADODB
recordset?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top