proxy.addUsertoGroup(input);
}
public void createGroup(String newGroupName, String description) throws XregistryException {
CreateGroupDocument input = CreateGroupDocument.Factory.newInstance();
CreateGroup UsertoGroup = input.addNewCreateGroup();
UsertoGroup.setGroupName(newGroupName);
UsertoGroup.setDescription(description);
proxy.createGroup(input);
}