Using webwrite with MPS
Ältere Kommentare anzeigen
I´am using the "webwrite" function for making requests to a Matlab Production Server, the problem is that when the server takes too long to answer(and finally does answer) the function seems not to get the response and keep bloking until timeout, how can i solve the problem??? Thanks in advance.
2 Kommentare
Kojiro Saito
am 31 Aug. 2019
Are you using actual Production Server instance, or on MATLAB (using Test Client mode)?
Fidel Ernesto Díaz Andino
am 2 Sep. 2019
Antworten (1)
Kojiro Saito
am 3 Sep. 2019
0 Stimmen
As this document is an example of calling MPS test client from MATLAB using matlab.net.http, but the description "Start a separate session of the MATLAB desktop. This is because you cannot send a POST request from the same MATLAB session that is running the testing interface." is also true to webwrite.
If you're launching MPS test client mode, you need to launch another MATLAB process to call webwrite. You can find MPS test client will accept incoming requsts as soon as webwrite is called from another MATLAB process.
4 Kommentare
Fidel Ernesto Díaz Andino
am 3 Sep. 2019
Bearbeitet: Fidel Ernesto Díaz Andino
am 3 Sep. 2019
Kojiro Saito
am 4 Sep. 2019
As the document of webwrite says, maximum Timeout is 2147.483647 seconds (about 35 minutes), so your server takes more than that, webwrite cannot wait the connection.
So, there are two options.
- Try matlab.net.http.HTTPOptions and call MPS test client from matlab.net.http interface.
- Try MATLAB Production Server's asynchronous request on MPS and call it using webwrite. Currently Test Client does not support async request, so you need to call MPS server instead of test client mode.
Fidel Ernesto Díaz Andino
am 4 Sep. 2019
Bearbeitet: Fidel Ernesto Díaz Andino
am 4 Sep. 2019
Fidel Ernesto Díaz Andino
am 5 Sep. 2019
Bearbeitet: Fidel Ernesto Díaz Andino
am 5 Sep. 2019
Kategorien
Mehr zu Installation finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!