web services - How to use RESTful webservices in Matlab -
i have data provider provides web-based restful interface. i'm trying data matlab. interface relatively simple, i'm still looking out there has experience this? service not natively provide soap/wsdl, matlab can use easily. vendor has "adapter" that can install on machine (basically appache/tomcat installation sort of "plugin") act intermediary provide services, lots of reasons, difficult set in company.
if restful interface returns json, looks it's easy installing little plugin:
http://www.mathworks.com/matlabcentral/fileexchange/20565
and ((almost) direct readme of plugin):
google_search = 'http://ajax.googleapis.com/....'; matlab_results = parse_json(urlread(google_search));
i guess that's nice thing restful interfaces on soap or whatever don't need excessive machinery deal it. i'm sure if interface isn't returning json similar can parse.
Comments
Post a Comment