Using webwrite with MPS

조회 수: 1 (최근 30일)
Fidel Ernesto Díaz Andino
Fidel Ernesto Díaz Andino 2019년 8월 30일
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
Kojiro Saito 2019년 8월 31일
Are you using actual Production Server instance, or on MATLAB (using Test Client mode)?
Fidel Ernesto Díaz Andino
Fidel Ernesto Díaz Andino 2019년 9월 2일
I´m using Test Client mode but according to it, is sending a response to client, it puts Complete on the Status

댓글을 달려면 로그인하십시오.

답변 (1개)

Kojiro Saito
Kojiro Saito 2019년 9월 3일
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
Fidel Ernesto Díaz Andino 2019년 9월 4일
편집: Fidel Ernesto Díaz Andino 2019년 9월 4일
So i tested matlab.net.http.httpoptions class using the example you mentioned and the result is the same when the processing on server is too long, when the server response the client dont see the answer, so now i started to believe that the problems is on the server alias MPS test client mode, and know that the time was imposed be me, just to test i paused for 30 minutes in my function and then give the response as shown:
function [responseToClients] = casi_functions(args)
pause(1800);
responseToClients = {[32 435 546 67]};
end
Fidel Ernesto Díaz Andino
Fidel Ernesto Díaz Andino 2019년 9월 5일
편집: Fidel Ernesto Díaz Andino 2019년 9월 5일
Hi i tested with others apps (to isolate the problem) and also get the same result, i have a fixed time now, when the process takes more than 20 minutes the MPS test client mode does not response to client.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 RESTful API에 대해 자세히 알아보기

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by