// LogonControllerFactory.getInstance().getSessionInfo(request);
if (DefaultAgentManager.getInstance().hasActiveAgent(launchSession.getSession())) {
try {
Request agentRequest = ((ApplicationService) DefaultAgentManager.getInstance().getService(ApplicationService.class)).launchApplication(launchSession);
AgentTunnel agent = DefaultAgentManager.getInstance().getAgentBySession(launchSession.getSession());
if (!agent.sendRequest(agentRequest, true, 60000)) {
throw new ExtensionException(ExtensionException.AGENT_REFUSED_LAUNCH);
}
} catch (ExtensionException ee) {
throw ee;
} catch (Exception e) {