Method removed from matlab search path occurs in compiled program
11 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Björn Skatt
am 12 Feb. 2019
Kommentiert: Eduardo Gil
am 25 Apr. 2019
Hi,
I have a compiled program running constantly, gathering data in a paper mill. Program starts up and works as expected but after several days (thousands of successful method calls), it may throw the following error:
Error using GuiConnectionClass/getCommand:
Method 'getCommand' is not defined for class 'GuiConnectionClass' or is removed from MATLAB's search path.
Has anyone seen this behaviour and understood it?
I have got this error twice in two weeks. I catch the error and try again but once the error occurs, it is persistent. Restarting the program solves the problem. I have not seen the problem in non-compiled code.
The affected method calls the built in webwrite to read the next command from a server:
function cmd = getCommand(c,side)
url = ['http://' c.address '/api/pulp_scan.get_cmd?side=' side];
options = weboptions('Timeout',10); % 0.5s is to short.
cmd = webwrite(url,options);
end
I am not performing any weird tricks. No messing with the path. No @functionPointers. GuiConnectionClass inherits only handle.
I suspect that the webwrite depends on something under the hood that has silently crashed. I traced webwrite down to matlab.internal.webservices.HTTPConnector and from there it turns into calls of java or .net objects.
3 Kommentare
Eduardo Gil
am 25 Apr. 2019
Hi Bjorn,
It is crashing every time - we are trying to get help from Mathworks. Appreciate your help though -
Tks,
Eduardo
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!