Calling a Webservice from VBA using SOAP

后端 未结 2 1061
臣服心动
臣服心动 2020-12-15 12:16

I\'m trying to call a web service in an Excel Macro:

Set objHTTP = New MSXML.XMLHTTPRequest
objHTTP.Open \"post\", \"https://www.server.com/EIDEServer/EIDESe         


        
2条回答
  •  别那么骄傲
    2020-12-15 12:57

    You SOAP action should also include namespace of the method e.g.

    "http://tempri.org/PutSchedule"
    

    Find out what the namespace of your Service and add it in front of the method name PutSchedule.

提交回复
热议问题