Using webwrite with MPS
Afficher commentaires plus anciens
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 commentaires
Kojiro Saito
le 31 Août 2019
Are you using actual Production Server instance, or on MATLAB (using Test Client mode)?
Fidel Ernesto Díaz Andino
le 2 Sep 2019
Réponses (1)
Kojiro Saito
le 3 Sep 2019
0 votes
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 commentaires
Fidel Ernesto Díaz Andino
le 3 Sep 2019
Modifié(e) : Fidel Ernesto Díaz Andino
le 3 Sep 2019
Kojiro Saito
le 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
le 4 Sep 2019
Modifié(e) : Fidel Ernesto Díaz Andino
le 4 Sep 2019
Fidel Ernesto Díaz Andino
le 5 Sep 2019
Modifié(e) : Fidel Ernesto Díaz Andino
le 5 Sep 2019
Catégories
En savoir plus sur Installation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!