How do I call WCF client from Excel 2003 VBA?

后端 未结 4 1702
滥情空心
滥情空心 2020-12-16 00:39

As the question asked, how do I call WCF client from Excel 2003 VBA?

I saw there is a place where I can call web service, but I have searched through Google, all the

4条回答
  •  旧时难觅i
    2020-12-16 01:04

    I tried for quite a while to call a SOAP based wcf service from excel vba without any luck.

    Instead I changed my service to REST binding (webHttpBinding). That way I could load the data stright into an xml map like it was any other xml file. Worked well for me, but I was only trying to import some data.

    As for SOAP; an answer in this question mentions the Web Services Toolkit all the examples I could find suggested to use.

提交回复
热议问题