How to Consume a SOAP Web Service in VB6?

前端 未结 3 681
后悔当初
后悔当初 2020-12-22 04:37

I want to consume a file which is wsdl with VB6 , anyone can help me? Or how can I convert wsdl to proxy class ?

3条回答
  •  佛祖请我去吃肉
    2020-12-22 05:03

    Basicly you can use the SOAP moniker like this

    Set oProxy = GetObject("soap:wsdl=http://server/folder/service.wsdl")
    oProxy.Method "Param1"
    

    You can check out the answers to What is the best way to consume a web service from VB6?

提交回复
热议问题