Can't shut down COM automation server instances of MATLAB

조회 수: 5 (최근 30일)
David
David 2012년 11월 19일
답변: mohit patil 2020년 5월 29일
Hi,
I'm starting some automation server instances of ML:
for ix = 1:4
servH(ix) = actxserver('Matlab.Application.Single');
servH(ix).Visible = 0;
% More code...
end
I do some stuff in each session, controlling each session with some PutWorkspaceData(), GetWorkspaceData(), and Execute() methods, and when I'm done, I tried to kill these instances in a couple of different ways, e.g.:
arrayfun(@(x)x.Quit,servH);
or
for ix = 1:4
servH(ix).Quit;
end
The above seem to work when I attempt them from the command window (launching and killing from command window), but I can't seem to kill them from within my real program. The only thing that I could reliably use was (yes, it's ugly):
try
servH(ix).Execute('exit');
catch me
% Killed server, and we get Error: RPC-server is unavailable
end
Am I missing something obvious here?
64-bit R2011b on Win7 by the way...

답변 (2개)

Kaustubha Govind
Kaustubha Govind 2012년 11월 19일
Does servH(ix).Quit pass for ix=1 and fail thereafter? If yes, I wonder if you're calling the Quit method in a loop too quickly. You could try putting in a PAUSE command and see if that helps.
  댓글 수: 2
David
David 2012년 11월 20일
Hi Kaustubha,
Thanks for the reply.
The answer would be yes. But the actual behaviour I see is just silent acceptance in MATLAB, with no errors or warnings. I did actually try putting pause, but sadly, it didn't change anything. In fact, I tried halting the execution inside the loop and step through it, and it still wouldn't quit.
I just did some additional tests, and when I test with a barebones sample (basically just start up the servers, and immediately invoke Quit), it seems to work. What I haven't fully understood yet is why my real code would be any different, as all I do is run a few Execute commands, and PutWorkspaceData and GetWorkspaceData... Even after completion of the function, I can access the servers from the command window with h = actxGetRunningServer('matlab.application'). h.Quit from here does not work either.
Kaustubha Govind
Kaustubha Govind 2012년 11월 26일
David: I don't have enough expertise in this area to make further suggestions. Could you please contact MathWorks Tech Support to see if they might be able to guide you better? Thanks!

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


mohit patil
mohit patil 2020년 5월 29일
Did you get it done. if so then please tell it,without that dirty method.As i have same problem

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by