Hola de nuevo,
Me surge otra duda, veo que en el index.jsp de alfresco (mi version es la 2.1) aparece un objeto session, que no es intanciado, ¿sabrias decirme donde se genera en alfresco o donde gestiona el objeto Httpsession?
Te copio un fragmento de codigo:
<%– redirect to the web application's appropriate start page –%>
<%
// get the start location as configured by the web-client config
ConfigService configService = (ConfigService)WebApplicationContextUtils.getRequiredWebApplicationContext(session.getServletContext()).getBean("webClientConfigService");
ClientConfigElement configElement = (ClientConfigElement)configService.getGlobalConfig().getConfigElement("client");
String location = configElement.getInitialLocation();
// override with the users preference if they have one
User user = (User)session.getAttribute(AuthenticationHelper.AUTHENTICATION_USER);
Perdona mi ignarancia, pero creo que la aplicación empezaría a ejecutar a través de index.jsp….
Un Saludo