[vbox-dev] powerDown() causes Unknown Status 0x00706BA
Alex
alex.lavoro.propio at gmail.com
Wed Aug 11 06:00:32 PDT 2010
I powered down a VM by IConsole::powerDown(). The VM is actually
powered down. However, I see an error message in the output of
vboxwebserv.exe:
</pre>
API return code: 0x800706BA (Unknown Status 0x800706BA)
COM error info result code: 0x0
COM error info text:
</pre>
Is it normal ?
The code I use to power it down:
<code>
ISession session = manager.getSessionObject(holder.vbox);
vbox.openExistingSession(session, machine.getId());
try {
IProgress progress = session.getConsole().powerDown();
progress.waitForCompletion(-1); /** <== an exception is raised here */
result = progress.getResultCode();
} catch (Throwable e) {
System.out.println(e.getMessage());
}
</code>
'e' is a WebServiceException, the message is
"org.virtualbox_3_1.RuntimeFaultMsg: VirtualBox error:
(0x2147944122)"
Alex Barna.
More information about the vbox-dev
mailing list