http://jira.hyperic.com/browse/HHQ-4028
The ApplicationManagerImpl's createApplication() method uses following line of code while adding services to application:
for (ServiceValue aService : services) {
log.debug("Adding service: " + aService + " to application");
application.addService(aService.getId());
}
The application.addService() method seems to be not supported now.
Anonymous