Using webwrite with MPS
古いコメントを表示
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 件のコメント
Kojiro Saito
2019 年 8 月 31 日
Are you using actual Production Server instance, or on MATLAB (using Test Client mode)?
Fidel Ernesto Díaz Andino
2019 年 9 月 2 日
回答 (1 件)
Kojiro Saito
2019 年 9 月 3 日
0 投票
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 件のコメント
Fidel Ernesto Díaz Andino
2019 年 9 月 3 日
編集済み: Fidel Ernesto Díaz Andino
2019 年 9 月 3 日
Kojiro Saito
2019 年 9 月 4 日
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
2019 年 9 月 4 日
編集済み: Fidel Ernesto Díaz Andino
2019 年 9 月 4 日
Fidel Ernesto Díaz Andino
2019 年 9 月 5 日
編集済み: Fidel Ernesto Díaz Andino
2019 年 9 月 5 日
カテゴリ
ヘルプ センター および File Exchange で Installation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!