Convert a HTML POST to a matlab command sequence / POST text file to a webinterface

2 views (last 30 days)
Hey,
i need to post a configuration (text) file to a webinterface. Therefore i want to convert the following html post into a matlab command sequence:
<td className="dsR6">__lbl:CONFIG_CMD_CONFIG_LOAD__</td>
<td>
<form action="/" method="post"
encType="multipart/form-data">
<p>
<input type="file" name="configfile" accept=".xxx" />
</p>
<p>
<input type="submit" id="uploadButton" className="btn_submit" value="Upload" disabled="disabled" />
</p>
</form>
I have tried a lot, but it doesn't want to work.
The following lines are my current code. I have read the text file into a variable (data) and try to post this to the webinterface.
options = weboptions('RequestMethod', 'post','MediaType','multipart/form-data');
rsp = webwrite('http://192.168.x.x/', data, options)

Answers (1)

wonderkismet
wonderkismet on 25 Sep 2020
https://www.mathworks.com/help/matlab/ref/matlab.net.http.io.multipartprovider-class.html

Categories

Find more on MATLAB Report Generator in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!