// notify that this is a migration
componentEnv.putString("componentHandle", cInfo.getInstanceHandle());
componentEnv.putBool("isMigrated", true);
// invoke the Builder Service to create a new instance
XCATBuilderService builderService = null;
try {
builderService = new XCATBuilderServiceImpl(false);
} catch (Exception e) {
logger.severe("Can't instantiate Builder service", e);
throw new NonstandardException("Can't instantiate Builder service", e);
}
String builderGSH = HandleResolver.createGSH("coordinatorbuilderService");
builderService.setGSH(builderGSH);
HandleResolver.addReference(builderGSH, builderService);
builderService.createInstance(cInfo.getInstanceName(),
className,
componentEnv);
}