How to create a SOAP call in MatLab

I do not quite understand how to call a web service from MatLab. I am trying to apply this guide , but I do not understand a few parts. For example, this.

  • Where does it indicate that it is GET or POST?
  • What is a namespace?
  • How can I provide the WSDL file that I have?

I was completely lost, so any hint would be appreciated.

+1
soap matlab
source share
2 answers

Since you want to use WSDL, you are working from the wrong documentation. You have contacted the SOAP manual.

To learn about WSDL, read the following: Access web services that use WSDL documents . When you use MATLAB createClassFromWsdl , you do not need to worry about implementing SOAP. The created MATLAB class will take care of this.

0
source share

If you have access to the Web Services Definition List (WSDL), you can do the following:

 wsdl = createClassFromWsdl('http://server.domain/NameOfMethod.asmx?WSDL') calls = methods(NameOfMethod) response = HelloWorld(NameOfMethod, "Konrad") 

See this information . It is very easy to follow and straightforwardly understand. I myself am surprised.

+1
source share

All Articles