﻿id	summary	reporter	owner	description	type	status	component	version	resolution	keywords	cc	guest	host
15035	SDK python lib webbindings createMachine() doesn't take groups into account	Alberto Geniola		"Hi everyone,
I am using VirtualBox 5.0.12 on Windows x64 with official SDK. 
I've experienced a problem when using IVirtualBox::CreateMachine() with webservice bindngs. 

Problem: machine gets created but machine is not added to the specified group.

To reproduce:


{{{
...
m = vbox.createMachine(_arg_settingsFile='',
                                   _arg_name=name,
                                   _arg_groups=['/test'],
                                   _arg_osTypeId=ostype,
                                   _arg_flags='forceOverwrite=0')
vbox.registerMachine(m)
...
}}}

I have also tried using IVirtualBox::composeMachineFilename() to get the filename, but nothing changes:


{{{
...
filename = vbox.composeMachineFilename(_arg_name='a_machine', _arg_group='/test', _arg_createFlags='', _arg_baseFolder='c:\VMs')

m = vbox.createMachine(_arg_settingsFile=filename,
                                   _arg_name=name,
                                   _arg_groups=['/test'],
                                   _arg_osTypeId=ostype,
                                   _arg_flags='forceOverwrite=0')
vbox.registerMachine(m)
...
}}}

As I said before, machine gets created but output from VBoxManage showvm says there's no associated group for the created vm."	defect	closed	webservices	VirtualBox 5.0.12	invalid	sdk CreateMachine vboxwebsrv		other	Windows
