I have setup new AEM cloud local instance using aem-sdk-quickstart-2023.10.13804.20231005T183332Z-231000 jar and it is starting successfully but after I add AEM forms version aem-forms-addon-2023.10.25.00-231000.far AEM, instance starts but when I navigate to AEM forms to view Forms and Documents it shows below error please let me know what I might be missing:
Cannot serve request to /aem/forms.html/content/dam/formsanddocuments in /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp
org.apache.sling.scripting.jsp.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: 16 in the generated java file Only a type can be imported. com.adobe.aem.formsndocuments.util.FMConstants resolves to a package An error occurred at line: 17 in the generated java file Only a type can be imported. com.adobe.aem.formsndocuments.util.FMUtils resolves to a package An error occurred at line: 48 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.DELIMITER_SLASH cannot be resolved to a type 45: String contextPath = request.getContextPath(); 46: boolean isAllowed = false; 47: 48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) { 49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments 50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT); 51: } else { An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.ROOT_ASSET_PATH cannot be resolved to a type 47: 48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) { 49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments 50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT); 51: } else { 52: String[] allowedPaths = cfg.get("allowed", new String[0]); 53: if (allowedPaths.length > 0) { An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type 47: 48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) { 49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments 50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT); 51: } else { 52: String[] allowedPaths = cfg.get("allowed", new String[0]); 53: if (allowedPaths.length > 0) { An error occurred at line: 57 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.DELIMITER_SLASH cannot be resolved to a type 54: for (String path : allowedPaths) { 55: try { 56: Pattern pattern = Pattern.compile(path); 57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) { 58: contentPath += FMConstants.DELIMITER_SLASH; 59: } 60: if (pattern.matcher(contentPath).matches()) { An error occurred at line: 58 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.DELIMITER_SLASH cannot be resolved to a type 55: try { 56: Pattern pattern = Pattern.compile(path); 57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) { 58: contentPath += FMConstants.DELIMITER_SLASH; 59: } 60: if (pattern.matcher(contentPath).matches()) { 61: isAllowed = true; An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.DAM_ASSET_NODETYPE cannot be resolved to a type 72: if(isAllowed) { 73: Resource res = resourceResolver.getResource(contentPath); 74: if(res != null) { 75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) { 76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html, 77: if(FMUtils.isFormset(session, contentPath)) { 78: // check if asset is formset, redirect to /aem/viewformset.html/suffix An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.ROOT_ASSET_PATH cannot be resolved to a type 72: if(isAllowed) { 73: Resource res = resourceResolver.getResource(contentPath); 74: if(res != null) { 75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) { 76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html, 77: if(FMUtils.isFormset(session, contentPath)) { 78: // check if asset is formset, redirect to /aem/viewformset.html/suffix An error occurred at line: 77 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMUtils cannot be resolved 74: if(res != null) { 75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) { 76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html, 77: if(FMUtils.isFormset(session, contentPath)) { 78: // check if asset is formset, redirect to /aem/viewformset.html/suffix 79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath); 80: } else { An error occurred at line: 79 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.VIEW_FORMSET_PATH cannot be resolved to a type 76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html, 77: if(FMUtils.isFormset(session, contentPath)) { 78: // check if asset is formset, redirect to /aem/viewformset.html/suffix 79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath); 80: } else { 81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix 82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath); An error occurred at line: 82 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.ROOT_ASSET_DETAILS_PATH cannot be resolved to a type 79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath); 80: } else { 81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix 82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath); 83: } 84: } 85: } else { An error occurred at line: 86 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.THEMES_ROOT_PATH cannot be resolved to a type 83: } 84: } 85: } else { 86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) { 87: contentPath = FMConstants.THEMES_ROOT_PATH; 88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) { 89: contentPath = FMConstants.FDM_ROOT_PATH; An error occurred at line: 87 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.THEMES_ROOT_PATH cannot be resolved to a type 84: } 85: } else { 86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) { 87: contentPath = FMConstants.THEMES_ROOT_PATH; 88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) { 89: contentPath = FMConstants.FDM_ROOT_PATH; 90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) { An error occurred at line: 88 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.FDM_ROOT_PATH cannot be resolved to a type 85: } else { 86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) { 87: contentPath = FMConstants.THEMES_ROOT_PATH; 88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) { 89: contentPath = FMConstants.FDM_ROOT_PATH; 90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) { 91: contentPath = FMConstants.SHADOW_NODES_ROOT; An error occurred at line: 89 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.FDM_ROOT_PATH cannot be resolved to a type 86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) { 87: contentPath = FMConstants.THEMES_ROOT_PATH; 88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) { 89: contentPath = FMConstants.FDM_ROOT_PATH; 90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) { 91: contentPath = FMConstants.SHADOW_NODES_ROOT; 92: } An error occurred at line: 90 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type 87: contentPath = FMConstants.THEMES_ROOT_PATH; 88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) { 89: contentPath = FMConstants.FDM_ROOT_PATH; 90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) { 91: contentPath = FMConstants.SHADOW_NODES_ROOT; 92: } 93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath); An error occurred at line: 91 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type 88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) { 89: contentPath = FMConstants.FDM_ROOT_PATH; 90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) { 91: contentPath = FMConstants.SHADOW_NODES_ROOT; 92: } 93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath); 94: } An error occurred at line: 93 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp FMConstants.ROOT_ASSET_PATH cannot be resolved to a type 90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) { 91: contentPath = FMConstants.SHADOW_NODES_ROOT; 92: } 93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath); 94: } 95: } else { 96: // if suffix is not in allowed path, redirect to error page at org.apache.sling.scripting.jsp.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:93) at org.apache.sling.scripting.jsp.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:330) at org.apache.sling.scripting.jsp.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:137) at org.apache.sling.scripting.jsp.jasper.compiler.Compiler.compile(Compiler.java:294) at org.apache.sling.scripting.jsp.jasper.JspCompilationContext.compile(JspCompilationContext.java:515) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.prepareServlet(JspServletWrapper.java:444) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:505) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:464) at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.callJsp(JspScriptEngineFactory.java:500) at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.eval(JspScriptEngineFactory.java:582) at org.apache.sling.scripting.core.impl.DefaultSlingScript.call(DefaultSlingScript.java:395) at org.apache.sling.scripting.core.impl.DefaultSlingScript.eval(DefaultSlingScript.java:191) at org.apache.sling.scripting.core.impl.DefaultSlingScript.service(DefaultSlingScript.java:500) at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:545) at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilterChain.java:45) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:88) at com.day.cq.wcm.core.impl.WCMDeveloperModeFilter.doFilter(WCMDeveloperModeFilter.java:119) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:138) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter.doFilter(EditorCacheFilter.java:102) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter.doFilter(ErrorLoggingComponentFilter.java:71) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter.doFilter(PageComponentRequestFilter.java:105) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:249) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.page.PageLockFilter.doFilter(PageLockFilter.java:91) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.personalization.impl.TargetComponentFilter.doFilter(TargetComponentFilter.java:94) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.csrf.impl.CSRFFilter.doFilter(CSRFFilter.java:225) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processComponent(SlingRequestProcessorImpl.java:346) at org.apache.sling.engine.impl.SlingRequestProcessorImpl.dispatchRequest(SlingRequestProcessorImpl.java:395) at org.apache.sling.engine.impl.request.SlingRequestDispatcher.dispatch(SlingRequestDispatcher.java:203) at org.apache.sling.engine.impl.request.SlingRequestDispatcher.include(SlingRequestDispatcher.java:102) at com.day.cq.wcm.core.impl.WCMComponentFilter$ForwardRequestDispatcher.include(WCMComponentFilter.java:516) at org.apache.sling.scripting.jsp.taglib.IncludeTagHandler.dispatch(IncludeTagHandler.java:54) at org.apache.sling.scripting.jsp.taglib.AbstractDispatcherTagHandler.doEndTag(AbstractDispatcherTagHandler.java:128) at libs.granite.ui.components.shell.collectionpage.collectionpage__002e__jsp._jspService(collectionpage__002e__jsp.java:441) at org.apache.sling.scripting.jsp.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:521) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:464) at org.apache.sling.scripting.jsp.PrecompiledJSPRunner.callPrecompiledJSP(PrecompiledJSPRunner.java:87) at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.callJsp(JspScriptEngineFactory.java:496) at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.eval(JspScriptEngineFactory.java:582) at org.apache.sling.scripting.core.impl.bundled.PrecompiledScript.eval(PrecompiledScript.java:56) at org.apache.sling.scripting.core.impl.bundled.ScriptContextProvider$ExecutableContext.eval(ScriptContextProvider.java:170) at org.apache.sling.scripting.core.impl.bundled.AbstractBundledRenderUnit.eval(AbstractBundledRenderUnit.java:135) at org.apache.sling.servlets.resolver.internal.bundle.BundledScriptServlet.service(BundledScriptServlet.java:79) at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:545) at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilterChain.java:45) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:88) at com.day.cq.wcm.core.impl.WCMDeveloperModeFilter.doFilter(WCMDeveloperModeFilter.java:119) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:138) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter.doFilter(EditorCacheFilter.java:102) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter.doFilter(ErrorLoggingComponentFilter.java:71) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter.doFilter(PageComponentRequestFilter.java:105) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:249) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.page.PageLockFilter.doFilter(PageLockFilter.java:91) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.personalization.impl.TargetComponentFilter.doFilter(TargetComponentFilter.java:94) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.csrf.impl.CSRFFilter.doFilter(CSRFFilter.java:225) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processComponent(SlingRequestProcessorImpl.java:346) at org.apache.sling.engine.impl.SlingRequestProcessorImpl.dispatchRequest(SlingRequestProcessorImpl.java:395) at org.apache.sling.engine.impl.request.SlingRequestDispatcher.dispatch(SlingRequestDispatcher.java:203) at org.apache.sling.engine.impl.request.SlingRequestDispatcher.include(SlingRequestDispatcher.java:102) at com.day.cq.wcm.core.impl.WCMComponentFilter$ForwardRequestDispatcher.include(WCMComponentFilter.java:516) at libs.cq.Page.Page__002e__jsp._jspService(Page__002e__jsp.java:116) at org.apache.sling.scripting.jsp.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:521) at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:464) at org.apache.sling.scripting.jsp.PrecompiledJSPRunner.callPrecompiledJSP(PrecompiledJSPRunner.java:87) at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.callJsp(JspScriptEngineFactory.java:496) at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.eval(JspScriptEngineFactory.java:582) at org.apache.sling.scripting.core.impl.bundled.PrecompiledScript.eval(PrecompiledScript.java:56) at org.apache.sling.scripting.core.impl.bundled.ScriptContextProvider$ExecutableContext.eval(ScriptContextProvider.java:170) at org.apache.sling.scripting.core.impl.bundled.AbstractBundledRenderUnit.eval(AbstractBundledRenderUnit.java:135) at org.apache.sling.servlets.resolver.internal.bundle.BundledScriptServlet.service(BundledScriptServlet.java:79) at org.apache.sling.engine.impl.request.RequestData.service(RequestData.java:545) at org.apache.sling.engine.impl.filter.SlingComponentFilterChain.render(SlingComponentFilterChain.java:45) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:88) at com.day.cq.wcm.core.impl.WCMDebugFilter.doFilter(WCMDebugFilter.java:138) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter.doFilter(EditorCacheFilter.java:102) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter.doFilter(ErrorLoggingComponentFilter.java:71) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter.doFilter(PageComponentRequestFilter.java:105) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.WCMComponentFilter.filterRootInclude(WCMComponentFilter.java:375) at com.day.cq.wcm.core.impl.WCMComponentFilter.doFilter(WCMComponentFilter.java:190) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.page.PageLockFilter.doFilter(PageLockFilter.java:91) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.personalization.impl.TargetComponentFilter.doFilter(TargetComponentFilter.java:94) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.SlingRequestProcessorImpl.processComponent(SlingRequestProcessorImpl.java:346) at org.apache.sling.engine.impl.filter.RequestSlingFilterChain.render(RequestSlingFilterChain.java:49) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:82) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:84) at com.day.cq.wcm.core.impl.warp.TimeWarpFilter.doFilter(TimeWarpFilter.java:119) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.dam.core.impl.assetlinkshare.AdhocAssetShareAuthHandler.doFilter(AdhocAssetShareAuthHandler.java:516) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:84) at com.day.cq.dam.core.impl.servlet.ActivityRecordHandler.doFilter(ActivityRecordHandler.java:141) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.rest.impl.servlet.ApiResourceFilter.doFilter(ApiResourceFilter.java:70) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.requests.logging.impl.RequestLoggerImpl.doFilter(RequestLoggerImpl.java:135) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:84) at com.adobe.granite.rest.assets.impl.AssetContentDispositionFilter.doFilter(AssetContentDispositionFilter.java:96) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.AuthoringUIModeServiceImpl.doFilter(AuthoringUIModeServiceImpl.java:395) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter.doFilter(RedirectFilter.java:248) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.livecycle.dsc.clientsdk.internal.ResourceResolverHolderFilter.doFilter(ResourceResolverHolderFilter.java:37) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter.doFilter(RequestProgressTrackerLogFilter.java:109) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:84) at com.day.cq.dam.core.impl.servlet.DisableLegacyServletFilter.executeFilter(DisableLegacyServletFilter.java:197) at com.day.cq.dam.core.impl.servlet.DisableLegacyServletFilter.doFilter(DisableLegacyServletFilter.java:154) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:84) at com.day.cq.wcm.foundation.forms.FormsHandlingServletHelper.handleFilter(FormsHandlingServletHelper.java:226) at com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet.doFilter(FormsHandlingServlet.java:138) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.optout.impl.OptOutFilter.doFilter(OptOutFilter.java:76) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.foundation.forms.FormsHandlingServletHelper.handleFilter(FormsHandlingServletHelper.java:226) at com.adobe.cq.wcm.core.components.internal.servlets.CoreFormHandlingServlet.doFilter(CoreFormHandlingServlet.java:123) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.day.cq.wcm.core.impl.WCMRequestFilter.doFilter(WCMRequestFilter.java:90) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.cq.history.impl.HistoryRequestFilter.doFilter(HistoryRequestFilter.java:111) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.rewriter.impl.RewriterFilter.doFilter(RewriterFilter.java:87) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.httpcache.impl.InnerCacheFilter.doFilter(InnerCacheFilter.java:81) at com.adobe.granite.httpcache.impl.InnerCacheFilter.doFilter(InnerCacheFilter.java:60) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:131) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.csrf.impl.CSRFFilter.doFilter(CSRFFilter.java:225) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.security.impl.ContentDispositionFilter.doFilter(ContentDispositionFilter.java:162) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at com.adobe.granite.resourceresolverhelper.impl.ResourceResolverHelperImpl.doFilter(ResourceResolverHelperImpl.java:79) at org.apache.sling.engine.impl.filter.AbstractSlingFilterChain.doFilter(AbstractSlingFilterChain.java:78) at org.apache.sling.engine.impl.SlingRequestProcessorImpl.doProcessRequest(SlingRequestProcessorImpl.java:238) at org.apache.sling.engine.impl.SlingMainServlet.service(SlingMainServlet.java:130) at org.apache.felix.http.base.internal.handler.ServletHandler.handle(ServletHandler.java:127) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:86) at com.adobe.granite.cors.impl.CORSFilter.doFilter(CORSFilter.java:94) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at com.adobe.granite.metrics.knownerrors.impl.ReportingRequestFilter.doFilter(ReportingRequestFilter.java:100) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at com.adobe.granite.license.impl.http.LicenseCheckFilter.doFilter(LicenseCheckFilter.java:301) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at org.apache.sling.i18n.impl.I18NFilter.doFilter(I18NFilter.java:131) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at org.apache.sling.featureflags.impl.FeatureManager.doFilter(FeatureManager.java:116) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at org.apache.sling.engine.impl.log.RequestLoggerFilter.doFilter(RequestLoggerFilter.java:73) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at org.apache.sling.engine.impl.parameters.RequestParameterSupportConfigurer.doFilter(RequestParameterSupportConfigurer.java:67) at org.apache.felix.http.base.internal.handler.FilterHandler.handle(FilterHandler.java:149) at org.apache.felix.http.base.internal.dispatch.InvocationChain.doFilter(InvocationChain.java:81) at org.apache.felix.http.base.internal.dispatch.Dispatcher$1.doFilter(Dispatcher.java:152) at org.apache.felix.http.base.internal.whiteboard.WhiteboardManager$2.doFilter(WhiteboardManager.java:1000) at com.adobe.granite.cors.impl.CORSFilter.doFilter(CORSFilter.java:94) at org.apache.felix.http.base.internal.handler.PreprocessorHandler.handle(PreprocessorHandler.java:137) at org.apache.felix.http.base.internal.whiteboard.WhiteboardManager$2.doFilter(WhiteboardManager.java:1006) at com.adobe.granite.auth.oauth.impl.OAuthCallbackFilter.doFilter(OAuthCallbackFilter.java:78) at org.apache.felix.http.base.internal.handler.PreprocessorHandler.handle(PreprocessorHandler.java:137) at org.apache.felix.http.base.internal.whiteboard.WhiteboardManager$2.doFilter(WhiteboardManager.java:1006) at org.apache.sling.security.impl.ReferrerFilter.doFilter(ReferrerFilter.java:345) at org.apache.felix.http.base.internal.handler.PreprocessorHandler.handle(PreprocessorHandler.java:137) at org.apache.felix.http.base.internal.whiteboard.WhiteboardManager$2.doFilter(WhiteboardManager.java:1006) at org.apache.felix.http.sslfilter.internal.SslFilter.doFilter(SslFilter.java:97) at org.apache.felix.http.base.internal.handler.PreprocessorHandler.handle(PreprocessorHandler.java:137) at org.apache.felix.http.base.internal.whiteboard.WhiteboardManager$2.doFilter(WhiteboardManager.java:1006) at org.apache.felix.http.base.internal.whiteboard.WhiteboardManager.invokePreprocessors(WhiteboardManager.java:1010) at org.apache.felix.http.base.internal.dispatch.Dispatcher.dispatch(Dispatcher.java:94) at org.apache.felix.http.base.internal.dispatch.DispatcherServlet.service(DispatcherServlet.java:49) at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) at org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:799) at org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:554) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:1624) at org.eclipse.jetty.server.handler.ScopedHandler.nextHandle(ScopedHandler.java:233) at org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1440) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:188) at org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:505) at org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:1594) at org.eclipse.jetty.server.handler.ScopedHandler.nextScope(ScopedHandler.java:186) at org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1355) at org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:141) at org.eclipse.jetty.server.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:191) at org.eclipse.jetty.server.handler.StatisticsHandler.handle(StatisticsHandler.java:181) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:127) at org.eclipse.jetty.server.Server.handle(Server.java:516) at org.eclipse.jetty.server.HttpChannel.lambda$handle$1(HttpChannel.java:487) at org.eclipse.jetty.server.HttpChannel.dispatch(HttpChannel.java:732) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:479) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:277) at org.eclipse.jetty.io.AbstractConnection$ReadCallback.succeeded(AbstractConnection.java:311) at org.eclipse.jetty.io.FillInterest.fillable(FillInterest.java:105) at org.eclipse.jetty.io.ChannelEndPoint$1.run(ChannelEndPoint.java:104) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.runTask(EatWhatYouKill.java:338) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.doProduce(EatWhatYouKill.java:315) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.tryProduce(EatWhatYouKill.java:173) at org.eclipse.jetty.util.thread.strategy.EatWhatYouKill.run(EatWhatYouKill.java:131) at org.eclipse.jetty.util.thread.ReservedThreadExecutor$ReservedThread.run(ReservedThreadExecutor.java:409) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:883) at org.eclipse.jetty.util.thread.QueuedThreadPool$Runner.run(QueuedThreadPool.java:1034) at java.base/java.lang.Thread.run(Thread.java:834)
0 TIMER_START{Request Processing} 6 COMMENT timer_end format is {<elapsed microseconds>,<timer name>} <optional message> 113 LOG Method=GET, PathInfo=null 123 TIMER_START{handleSecurity} 3035 TIMER_END{2909,handleSecurity} authenticator org.apache.sling.auth.core.impl.SlingAuthenticator@50cef86f returns true 3591 TIMER_START{ResourceResolution} 3920 TIMER_END{326,ResourceResolution} URI=/aem/forms.html/content/dam/formsanddocuments resolves to Resource=JcrNodeResource, type=cq:Page, superType=null, path=/libs/fd/fm/gui/content/forms 3944 LOG Resource Path Info: SlingRequestPathInfo: path='/libs/fd/fm/gui/content/forms', selectorString='null', extension='html', suffix='/content/dam/formsanddocuments' 3945 TIMER_START{ServletResolution} 3952 TIMER_START{resolveServlet(/libs/fd/fm/gui/content/forms)} 4044 TIMER_END{90,resolveServlet(/libs/fd/fm/gui/content/forms)} Using servlet BundledScriptServlet (/libs/cq/Page/Page.jsp) 4049 TIMER_END{103,ServletResolution} URI=/aem/forms.html/content/dam/formsanddocuments handled by Servlet=BundledScriptServlet (/libs/cq/Page/Page.jsp) 4058 LOG Applying REQUESTfilters 4071 LOG Calling filter: com.adobe.granite.resourceresolverhelper.impl.ResourceResolverHelperImpl 4080 LOG Calling filter: org.apache.sling.security.impl.ContentDispositionFilter 4088 LOG Calling filter: com.adobe.granite.csrf.impl.CSRFFilter 4100 LOG Calling filter: org.apache.sling.i18n.impl.I18NFilter 4114 LOG Calling filter: com.adobe.granite.httpcache.impl.InnerCacheFilter 4127 LOG Calling filter: org.apache.sling.rewriter.impl.RewriterFilter 4134 LOG Calling filter: com.adobe.cq.history.impl.HistoryRequestFilter 4708 LOG Calling filter: com.day.cq.wcm.core.impl.WCMRequestFilter 4736 LOG Calling filter: com.adobe.cq.wcm.core.components.internal.servlets.CoreFormHandlingServlet 4745 LOG Calling filter: com.adobe.granite.optout.impl.OptOutFilter 4759 LOG Calling filter: com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet 4774 LOG Calling filter: com.day.cq.dam.core.impl.servlet.DisableLegacyServletFilter 4784 LOG Calling filter: org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter 4789 LOG Calling filter: com.adobe.livecycle.dsc.clientsdk.internal.ResourceResolverHolderFilter 4799 LOG Calling filter: com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter 4805 LOG Calling filter: com.day.cq.wcm.core.impl.AuthoringUIModeServiceImpl 5017 LOG Calling filter: com.adobe.granite.rest.assets.impl.AssetContentDispositionFilter 5028 LOG Calling filter: com.adobe.granite.requests.logging.impl.RequestLoggerImpl 5044 LOG Calling filter: com.adobe.granite.rest.impl.servlet.ApiResourceFilter 5128 LOG Calling filter: com.day.cq.dam.core.impl.servlet.ActivityRecordHandler 5160 LOG Calling filter: com.day.cq.dam.core.impl.assetlinkshare.AdhocAssetShareAuthHandler 5168 LOG Calling filter: com.day.cq.wcm.core.impl.warp.TimeWarpFilter 5191 LOG Applying Componentfilters 5194 LOG Calling filter: com.day.cq.personalization.impl.TargetComponentFilter 5198 LOG Calling filter: com.day.cq.wcm.core.impl.page.PageLockFilter 5205 LOG Calling filter: com.day.cq.wcm.core.impl.WCMComponentFilter 5276 LOG Calling filter: com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter 5286 LOG Calling filter: com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter 5291 LOG Calling filter: com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter 5298 LOG Calling filter: com.day.cq.wcm.core.impl.WCMDebugFilter 5323 TIMER_START{BundledScriptServlet (/libs/cq/Page/Page.jsp)#0} 5974 LOG Adding bindings took 130 microseconds 6971 LOG Including resource JcrNodeResource, type=granite/ui/components/shell/collectionpage, superType=null, path=/libs/fd/fm/gui/content/forms/jcr:content (SlingRequestPathInfo: path='/libs/fd/fm/gui/content/forms/jcr:content', selectorString='null', extension='html', suffix='/content/dam/formsanddocuments') 6995 TIMER_START{resolveServlet(/libs/fd/fm/gui/content/forms/jcr:content)} 7087 TIMER_END{89,resolveServlet(/libs/fd/fm/gui/content/forms/jcr:content)} Using servlet BundledScriptServlet (/libs/granite/ui/components/shell/collectionpage/collectionpage.jsp) 7098 LOG Applying Includefilters 7110 LOG Calling filter: com.adobe.granite.csrf.impl.CSRFFilter 7125 LOG Calling filter: com.day.cq.personalization.impl.TargetComponentFilter 7141 LOG Calling filter: com.day.cq.wcm.core.impl.page.PageLockFilter 7252 LOG Calling filter: com.day.cq.wcm.core.impl.WCMComponentFilter 7363 LOG Calling filter: com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter 7455 LOG Calling filter: com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter 7460 LOG Calling filter: com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter 7471 LOG Calling filter: com.day.cq.wcm.core.impl.WCMDebugFilter 7476 LOG Calling filter: com.day.cq.wcm.core.impl.WCMDeveloperModeFilter 7518 TIMER_START{BundledScriptServlet (/libs/granite/ui/components/shell/collectionpage/collectionpage.jsp)#1} 7955 LOG Adding bindings took 146 microseconds 10997 LOG Including resource FilteringResourceWrapper, type=fd/fm/gui/components/admin/contentchecker, path=/mnt/overlay/fd/fm/gui/content/forms/jcr:content/redirector, resource=[MergedResource [path=/mnt/overlay/fd/fm/gui/content/forms/jcr:content/redirector, resources=[/libs/fd/fm/gui/content/forms/jcr:content/redirector]]] (SlingRequestPathInfo: path='/mnt/overlay/fd/fm/gui/content/forms/jcr:content/redirector', selectorString='null', extension='html', suffix='/content/dam/formsanddocuments') 11032 TIMER_START{resolveServlet(/mnt/overlay/fd/fm/gui/content/forms/jcr:content/redirector)} 11197 TIMER_END{159,resolveServlet(/mnt/overlay/fd/fm/gui/content/forms/jcr:content/redirector)} Using servlet /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp 11213 LOG Applying Includefilters 11235 LOG Calling filter: com.adobe.granite.csrf.impl.CSRFFilter 11260 LOG Calling filter: com.day.cq.personalization.impl.TargetComponentFilter 11276 LOG Calling filter: com.day.cq.wcm.core.impl.page.PageLockFilter 11292 LOG Calling filter: com.day.cq.wcm.core.impl.WCMComponentFilter 11421 LOG Calling filter: com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter 11436 LOG Calling filter: com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter 11443 LOG Calling filter: com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter 11456 LOG Calling filter: com.day.cq.wcm.core.impl.WCMDebugFilter 11462 LOG Calling filter: com.day.cq.wcm.core.impl.WCMDeveloperModeFilter 11518 TIMER_START{/libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp#2} 11787 LOG Adding bindings took 123 microseconds 13666 LOG SCRIPT ERROR: Unable to compile class for JSP: //An error occurred at line: 16 in the generated java file/Only a type can be imported. com.adobe.aem.formsndocuments.util.FMConstants resolves to a package//An error occurred at line: 17 in the generated java file/Only a type can be imported. com.adobe.aem.formsndocuments.util.FMUtils resolves to a package//An error occurred at line: 48 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/45: String contextPath = request.getContextPath();/46: boolean isAllowed = false;/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {///An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {/52: String[] allowedPaths = cfg.get("allowed", new String[0]);/53: if (allowedPaths.length > 0) {///An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {/52: String[] allowedPaths = cfg.get("allowed", new String[0]);/53: if (allowedPaths.length > 0) {///An error occurred at line: 57 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/54: for (String path : allowedPaths) {/55: try {/56: Pattern pattern = Pattern.compile(path);/57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) {/58: contentPath += FMConstants.DELIMITER_SLASH;/59: }/60: if (pattern.matcher(contentPath).matches()) {///An error occurred at line: 58 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/55: try {/56: Pattern pattern = Pattern.compile(path);/57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) {/58: contentPath += FMConstants.DELIMITER_SLASH;/59: }/60: if (pattern.matcher(contentPath).matches()) {/61: isAllowed = true;///An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DAM_ASSET_NODETYPE cannot be resolved to a type/72: if(isAllowed) {/73: Resource res = resourceResolver.getResource(contentPath);/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix///An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/72: if(isAllowed) {/73: Resource res = resourceResolver.getResource(contentPath);/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix///An error occurred at line: 77 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMUtils cannot be resolved/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {///An error occurred at line: 79 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.VIEW_FORMSET_PATH cannot be resolved to a type/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {/81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix/82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath);///An error occurred at line: 82 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_DETAILS_PATH cannot be resolved to a type/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {/81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix/82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath);/83: }/84: }/85: } else {///An error occurred at line: 86 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.THEMES_ROOT_PATH cannot be resolved to a type/83: }/84: }/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;///An error occurred at line: 87 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.THEMES_ROOT_PATH cannot be resolved to a type/84: }/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {///An error occurred at line: 88 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.FDM_ROOT_PATH cannot be resolved to a type/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;///An error occurred at line: 89 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.FDM_ROOT_PATH cannot be resolved to a type/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }///An error occurred at line: 90 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);///An error occurred at line: 91 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);/94: }///An error occurred at line: 93 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);/94: }/95: } else {/96: // if suffix is not in allowed path, redirect to error page/ 13689 TIMER_END{2166,/libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp#2} 15030 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMDeveloperModeFilter, inner=2244, total=2267, outer=23 15053 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMDebugFilter, inner=2267, total=2278, outer=11 15072 LOG Filter timing: filter=com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter, inner=2278, total=2291, outer=13 15090 LOG Filter timing: filter=com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter, inner=2291, total=3468, outer=1177 15109 LOG Filter timing: filter=com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter, inner=3468, total=3501, outer=33 15130 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMComponentFilter, inner=3501, total=3622, outer=121 15148 LOG Filter timing: filter=com.day.cq.wcm.core.impl.page.PageLockFilter, inner=3622, total=3638, outer=16 15166 LOG Filter timing: filter=com.day.cq.personalization.impl.TargetComponentFilter, inner=3638, total=3658, outer=20 21524 LOG SCRIPT ERROR: An exception occurred processing JSP page /libs/granite/ui/components/shell/collectionpage/collectionpage.jsp at line 356 : Unable to compile class for JSP: //An error occurred at line: 16 in the generated java file/Only a type can be imported. com.adobe.aem.formsndocuments.util.FMConstants resolves to a package//An error occurred at line: 17 in the generated java file/Only a type can be imported. com.adobe.aem.formsndocuments.util.FMUtils resolves to a package//An error occurred at line: 48 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/45: String contextPath = request.getContextPath();/46: boolean isAllowed = false;/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {///An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {/52: String[] allowedPaths = cfg.get("allowed", new String[0]);/53: if (allowedPaths.length > 0) {///An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {/52: String[] allowedPaths = cfg.get("allowed", new String[0]);/53: if (allowedPaths.length > 0) {///An error occurred at line: 57 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/54: for (String path : allowedPaths) {/55: try {/56: Pattern pattern = Pattern.compile(path);/57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) {/58: contentPath += FMConstants.DELIMITER_SLASH;/59: }/60: if (pattern.matcher(contentPath).matches()) {///An error occurred at line: 58 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/55: try {/56: Pattern pattern = Pattern.compile(path);/57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) {/58: contentPath += FMConstants.DELIMITER_SLASH;/59: }/60: if (pattern.matcher(contentPath).matches()) {/61: isAllowed = true;///An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DAM_ASSET_NODETYPE cannot be resolved to a type/72: if(isAllowed) {/73: Resource res = resourceResolver.getResource(contentPath);/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix///An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/72: if(isAllowed) {/73: Resource res = resourceResolver.getResource(contentPath);/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix///An error occurred at line: 77 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMUtils cannot be resolved/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {///An error occurred at line: 79 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.VIEW_FORMSET_PATH cannot be resolved to a type/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {/81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix/82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath);///An error occurred at line: 82 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_DETAILS_PATH cannot be resolved to a type/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {/81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix/82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath);/83: }/84: }/85: } else {///An error occurred at line: 86 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.THEMES_ROOT_PATH cannot be resolved to a type/83: }/84: }/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;///An error occurred at line: 87 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.THEMES_ROOT_PATH cannot be resolved to a type/84: }/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {///An error occurred at line: 88 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.FDM_ROOT_PATH cannot be resolved to a type/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;///An error occurred at line: 89 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.FDM_ROOT_PATH cannot be resolved to a type/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }///An error occurred at line: 90 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);///An error occurred at line: 91 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);/94: }///An error occurred at line: 93 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);/94: }/95: } else {/96: // if suffix is not in allowed path, redirect to error page/ 21543 TIMER_END{14021,BundledScriptServlet (/libs/granite/ui/components/shell/collectionpage/collectionpage.jsp)#1} 21640 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMDeveloperModeFilter, inner=14073, total=14091, outer=18 21658 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMDebugFilter, inner=14091, total=14098, outer=7 21674 LOG Filter timing: filter=com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter, inner=14098, total=14109, outer=11 21688 LOG Filter timing: filter=com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter, inner=14109, total=14135, outer=26 21702 LOG Filter timing: filter=com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter, inner=14135, total=14243, outer=108 21717 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMComponentFilter, inner=14243, total=14438, outer=195 21731 LOG Filter timing: filter=com.day.cq.wcm.core.impl.page.PageLockFilter, inner=14438, total=14458, outer=20 21745 LOG Filter timing: filter=com.day.cq.personalization.impl.TargetComponentFilter, inner=14458, total=14466, outer=8 24626 LOG SCRIPT ERROR: An exception occurred processing JSP page /libs/cq/Page/proxy.jsp at line 47 : An exception occurred processing JSP page /libs/granite/ui/components/shell/collectionpage/collectionpage.jsp at line 356 : Unable to compile class for JSP: //An error occurred at line: 16 in the generated java file/Only a type can be imported. com.adobe.aem.formsndocuments.util.FMConstants resolves to a package//An error occurred at line: 17 in the generated java file/Only a type can be imported. com.adobe.aem.formsndocuments.util.FMUtils resolves to a package//An error occurred at line: 48 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/45: String contextPath = request.getContextPath();/46: boolean isAllowed = false;/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {///An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {/52: String[] allowedPaths = cfg.get("allowed", new String[0]);/53: if (allowedPaths.length > 0) {///An error occurred at line: 50 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/47: /48: if (contentPath == null || "".equals(contentPath) || FMConstants.DELIMITER_SLASH.equals(contentPath)) {/49: // If suffix is null, empty or /, then redirect to /content/dam/formdanddocuments/50: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + FMConstants.SHADOW_NODES_ROOT);/51: } else {/52: String[] allowedPaths = cfg.get("allowed", new String[0]);/53: if (allowedPaths.length > 0) {///An error occurred at line: 57 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/54: for (String path : allowedPaths) {/55: try {/56: Pattern pattern = Pattern.compile(path);/57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) {/58: contentPath += FMConstants.DELIMITER_SLASH;/59: }/60: if (pattern.matcher(contentPath).matches()) {///An error occurred at line: 58 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DELIMITER_SLASH cannot be resolved to a type/55: try {/56: Pattern pattern = Pattern.compile(path);/57: if(contentPath != null && !contentPath.endsWith(FMConstants.DELIMITER_SLASH)) {/58: contentPath += FMConstants.DELIMITER_SLASH;/59: }/60: if (pattern.matcher(contentPath).matches()) {/61: isAllowed = true;///An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.DAM_ASSET_NODETYPE cannot be resolved to a type/72: if(isAllowed) {/73: Resource res = resourceResolver.getResource(contentPath);/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix///An error occurred at line: 75 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/72: if(isAllowed) {/73: Resource res = resourceResolver.getResource(contentPath);/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix///An error occurred at line: 77 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMUtils cannot be resolved/74: if(res != null) {/75: if(res.isResourceType(FMConstants.DAM_ASSET_NODETYPE) && uri.startsWith(contextPath + FMConstants.ROOT_ASSET_PATH)) {/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {///An error occurred at line: 79 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.VIEW_FORMSET_PATH cannot be resolved to a type/76: // if resource is dam:asset(it is not a folder) and uri is starting with /aem/forms.html,/77: if(FMUtils.isFormset(session, contentPath)) {/78: // check if asset is formset, redirect to /aem/viewformset.html/suffix/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {/81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix/82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath);///An error occurred at line: 82 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_DETAILS_PATH cannot be resolved to a type/79: response.sendRedirect(contextPath + FMConstants.VIEW_FORMSET_PATH + contentPath);/80: } else {/81: // check if asset is not formset, redirect to /aem/formdetails.html/suffix/82: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_DETAILS_PATH + contentPath);/83: }/84: }/85: } else {///An error occurred at line: 86 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.THEMES_ROOT_PATH cannot be resolved to a type/83: }/84: }/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;///An error occurred at line: 87 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.THEMES_ROOT_PATH cannot be resolved to a type/84: }/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {///An error occurred at line: 88 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.FDM_ROOT_PATH cannot be resolved to a type/85: } else {/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;///An error occurred at line: 89 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.FDM_ROOT_PATH cannot be resolved to a type/86: if(contentPath.startsWith(FMConstants.THEMES_ROOT_PATH)) {/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }///An error occurred at line: 90 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/87: contentPath = FMConstants.THEMES_ROOT_PATH;/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);///An error occurred at line: 91 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.SHADOW_NODES_ROOT cannot be resolved to a type/88: } else if(contentPath.startsWith(FMConstants.FDM_ROOT_PATH)) {/89: contentPath = FMConstants.FDM_ROOT_PATH;/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);/94: }///An error occurred at line: 93 in the jsp file: /libs/fd/fm/gui/components/admin/contentchecker/contentchecker.jsp/FMConstants.ROOT_ASSET_PATH cannot be resolved to a type/90: } else if(contentPath.startsWith(FMConstants.SHADOW_NODES_ROOT)) {/91: contentPath = FMConstants.SHADOW_NODES_ROOT;/92: }/93: response.sendRedirect(contextPath + FMConstants.ROOT_ASSET_PATH + contentPath);/94: }/95: } else {/96: // if suffix is not in allowed path, redirect to error page/ 24647 TIMER_END{19320,BundledScriptServlet (/libs/cq/Page/Page.jsp)#0} 24726 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMDebugFilter, inner=19354, total=19360, outer=6 24749 LOG Filter timing: filter=com.adobe.cq.dam.cfm.ui.impl.EditorCacheFilter, inner=19360, total=19369, outer=9 24766 LOG Filter timing: filter=com.adobe.granite.metrics.knownerrors.impl.ErrorLoggingComponentFilter, inner=19369, total=19386, outer=17 24782 LOG Filter timing: filter=com.day.cq.wcm.core.impl.monitoring.PageComponentRequestFilter, inner=19386, total=19401, outer=15 24798 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMComponentFilter, inner=19401, total=19477, outer=76 24814 LOG Filter timing: filter=com.day.cq.wcm.core.impl.page.PageLockFilter, inner=19477, total=19484, outer=7 24961 LOG Filter timing: filter=com.adobe.cq.dtm.reactor.impl.servlets.ClientLibraryFilter, inner=0, total=19646, outer=19646 24979 LOG Filter timing: filter=com.adobe.cq.dam.webdav.impl.io.DamWebdavRequestFilter, inner=19646, total=19650, outer=4 24995 LOG Filter timing: filter=com.day.cq.wcm.core.impl.warp.TimeWarpFilter, inner=19650, total=19662, outer=12 25017 LOG Filter timing: filter=com.day.cq.dam.core.impl.assetlinkshare.AdhocAssetShareAuthHandler, inner=19662, total=19672, outer=10 25034 LOG Filter timing: filter=com.day.cq.dam.core.impl.servlet.DamContentDispositionFilter, inner=19672, total=19676, outer=4 25050 LOG Filter timing: filter=com.day.cq.dam.core.impl.servlet.ActivityRecordHandler, inner=19676, total=19705, outer=29 25066 LOG Filter timing: filter=com.adobe.granite.rest.impl.servlet.ApiResourceFilter, inner=19705, total=19791, outer=86 25083 LOG Filter timing: filter=com.adobe.granite.requests.logging.impl.RequestLoggerImpl, inner=19791, total=19873, outer=82 25099 LOG Filter timing: filter=com.adobe.cq.projects.impl.servlet.ProjectContentDispositionFilter, inner=19873, total=19876, outer=3 25116 LOG Filter timing: filter=com.adobe.granite.rest.assets.impl.AssetContentDispositionFilter, inner=19876, total=19886, outer=10 25132 LOG Filter timing: filter=com.day.cq.wcm.core.impl.AuthoringUIModeServiceImpl, inner=19886, total=20098, outer=212 25151 LOG Filter timing: filter=com.day.cq.wcm.mobile.core.impl.redirect.RedirectFilter, inner=20098, total=20106, outer=8 25168 LOG Filter timing: filter=com.adobe.livecycle.dsc.clientsdk.internal.ResourceResolverHolderFilter, inner=20106, total=20125, outer=19 25184 LOG Filter timing: filter=org.apache.sling.engine.impl.debug.RequestProgressTrackerLogFilter, inner=20125, total=20131, outer=6 25200 LOG Filter timing: filter=org.apache.sling.distribution.servlet.DistributionAgentCreationFilter, inner=20131, total=20134, outer=3 25216 LOG Filter timing: filter=com.day.cq.dam.core.impl.servlet.DisableLegacyServletFilter, inner=20134, total=20144, outer=10 25233 LOG Filter timing: filter=com.adobe.cq.wcm.core.extensions.amp.internal.AmpModeForwardFilter, inner=20144, total=20153, outer=9 25248 LOG Filter timing: filter=com.day.cq.wcm.foundation.forms.impl.FormsHandlingServlet, inner=20153, total=20160, outer=7 25263 LOG Filter timing: filter=com.adobe.granite.optout.impl.OptOutFilter, inner=20160, total=20176, outer=16 25281 LOG Filter timing: filter=com.adobe.cq.wcm.core.components.internal.servlets.CoreFormHandlingServlet, inner=20176, total=20187, outer=11 25298 LOG Filter timing: filter=com.day.cq.wcm.core.impl.WCMRequestFilter, inner=20187, total=20222, outer=35 25315 LOG Filter timing: filter=com.adobe.cq.history.impl.HistoryRequestFilter, inner=20222, total=20790, outer=568 25332 LOG Filter timing: filter=org.apache.sling.rewriter.impl.RewriterFilter, inner=20790, total=20802, outer=12 25349 LOG Filter timing: filter=com.adobe.granite.httpcache.impl.InnerCacheFilter, inner=20802, total=20824, outer=22 25366 LOG Filter timing: filter=org.apache.sling.i18n.impl.I18NFilter, inner=20824, total=20833, outer=9 25383 LOG Filter timing: filter=com.adobe.granite.csrf.impl.CSRFFilter, inner=20833, total=20846, outer=13 25399 LOG Filter timing: filter=org.apache.sling.security.impl.ContentDispositionFilter, inner=20846, total=20856, outer=10 28187 LOG Applying Error filters 28299 LOG Calling filter: org.apache.sling.i18n.impl.I18NFilter 28308 LOG Calling filter: org.apache.sling.rewriter.impl.RewriterFilter 28361 TIMER_START{handleError:throwable=org.apache.sling.scripting.jsp.jasper.JasperException} 31735 TIMER_END{3370,handleError:throwable=org.apache.sling.scripting.jsp.jasper.JasperException} Using handler BundledScriptServlet (/libs/sling/servlet/errorhandler/default.jsp) 32529 LOG Adding bindings took 350 microseconds 35807 LOG Found processor for post processing ProcessorConfiguration: {contentTypes=[text/html], order=-1, active=true, valid=true, processErrorResponse=true, pipeline=(generator=Config(type=htmlparser, config={}), transformers=(Config(type=linkchecker, config={}), Config(type=mobile, config=JcrPropertyMap [node=Node[NodeDelegate{tree=/libs/cq/config/rewriter/default/transformer-mobile: { jcr:primaryType = nt:unstructured, component-optional = true}}], values={jcr:primaryType=nt:unstructured, component-optional=true}]), Config(type=mobiledebug, config=JcrPropertyMap [node=Node[NodeDelegate{tree=/libs/cq/config/rewriter/default/transformer-mobiledebug: { jcr:primaryType = nt:unstructured, component-optional = true}}], values={jcr:primaryType=nt:unstructured, component-optional=true}]), Config(type=contentsync, config=JcrPropertyMap [node=Node[NodeDelegate{tree=/libs/cq/config/rewriter/default/transformer-contentsync: { jcr:primaryType = nt:unstructured, component-optional = true}}], values={jcr:primaryType=nt:unstructured, component-optional=true}]), serializer=Config(type=htmlwriter, config={}))} 41550 TIMER_END{41543,Request Processing} Dumping SlingRequestProgressTracker Entries
Views
Replies
Total Likes
Check the status of the bundles and the packages (aemfd* and aemds*).
Also, did you try to recompile the jsps -
https://experienceleague.adobe.com/docs/experience-cloud-kcs/kbarticles/KA-16543.html?lang=en
Views
Replies
Total Likes
Hi @Pulkit_Jain_ ,
I have checked the bundles and most of them are in installed state.Can you let me know how to resolve this issue?
Yes, I tried to recompile jsps using same article but it didn't fixed the issue.
Views
Replies
Total Likes
Hi @VaibhavPr , did you get the solution ? I am also facing the same issue can you help with this if you get the solution ?
Views
Replies
Total Likes
Hi @ShivamSh1 ,
This appears to be an issue with Java versions 11.0.20 and higher where the zip64 extra field validation is causing that "aem-dermis-core" bundle from extracting/installing properly. You can either downgrade to Java 11.0.19 or add -Djdk.util.zip.disableZip64ExtraFieldValidation=true to your JVM params in your AEM start script.
This should resolve your issue.