I\'m not clear at all on how to call a web service from MatLab. I\'m trying to apply this guide but I don\'t understand several parts. For instance this.
If you have access to the web service definition list (WSDL), you can go like this:
wsdl = createClassFromWsdl('http://server.domain/NameOfMethod.asmx?WSDL')
calls = methods(NameOfMethod)
response = HelloWorld(NameOfMethod, "Konrad")
See this info. It's very easy to follow and straight-forward to grasp. I'm surprised myself.