holger.merten Posted September 15, 2015 Posted September 15, 2015 We implemented a Password regular Expression () - The Expression is evaluated fine. But once the rule applies during Login, browser Shows a http-404 error - After browserrefresh the Login seems to be successfull and we see the homepage.Received Exception comes from here: @Transactional(propagation = Propagation.REQUIRED, readOnly = false) public void putUser(ExecutionContext context, User aUser) { if (!aUser.isExternallyDefined() ? isPasswordStrongEnough(aUser.getPassword()) : true) { doPutUser(context, aUser); } else { throw new JSException("Weak password stored in the database does not conform the allowed pattern."); } } The last entry from today in the logs confirm that: 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "POST /jasperserver/login.html HTTP/1.1" 200 54939 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 200 1015 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/forPrint.css HTTP/1.1" 200 498 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/theme.css HTTP/1.1" 200 16139 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/lists.css HTTP/1.1" 200 34306 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/dialogSpecific.css HTTP/1.1" 200 25737 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/dataDisplays.css HTTP/1.1" 200 18721 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/pages.css HTTP/1.1" 200 8503 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/containers.css HTTP/1.1" 200 29884 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/buttons.css HTTP/1.1" 200 19125 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/controls.css HTTP/1.1" 200 34179 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/pageSpecific.css HTTP/1.1" 200 122526 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/overrides_ie.css HTTP/1.1" 200 351 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/optimized-scripts/require.config.js HTTP/1.1" 200 21798 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 200 32943 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/overrides_custom.css HTTP/1.1" 200 6150 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/optimized-scripts/bower_components/jquery/dist/jquery.js HTTP/1.1" 200 97056 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/scripts/bower_components/prototype/dist/prototype.js HTTP/1.1" 200 219074 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/optimized-scripts/bower_components/requirejs/require.js HTTP/1.1" 200 16786 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/login_welcome_ce_bkgd.jpg HTTP/1.1" 200 26368 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/banner_bkgd.png HTTP/1.1" 200 1012 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/lists_sprite.png HTTP/1.1" 200 5797 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/input_bkgd.png HTTP/1.1" 200 1005 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/logo.png HTTP/1.1" 200 3075 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/column_header_bkgd.png HTTP/1.1" 200 1022 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/button_action_primary_sprite.png HTTP/1.1" 200 1389 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/search_sprite.png HTTP/1.1" 200 3332 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/footer_bkgd.png HTTP/1.1" 200 1008 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/button_action_sprite.png HTTP/1.1" 200 1094 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/disclosure_indicators_sprite.png HTTP/1.1" 200 3428 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/sort_indicators_sprite.png HTTP/1.1" 200 815 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/panel_sizer_sprite.png HTTP/1.1" 200 3143 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/list_node_animation.gif HTTP/1.1" 200 5038 172.21.1.148 - - [15/Sep/2015:08:25:37 +0200] "GET /jasperserver/_themes/FAB909DB/images/wait_animation_large.gif HTTP/1.1" 200 21718 172.21.1.148 - - [15/Sep/2015:08:25:38 +0200] "GET /jasperserver/optimized-scripts/login.page.js HTTP/1.1" 200 532371 172.21.1.148 - - [15/Sep/2015:08:25:38 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:08:25:52 +0200] "GET /jasperserver/_themes/FAB909DB/images/favicon.ico HTTP/1.1" 200 1150 172.21.1.148 - - [15/Sep/2015:08:25:54 +0200] "GET /jasperserver/_themes/FAB909DB/images/favicon.ico HTTP/1.1" 200 1150 172.21.1.148 - - [15/Sep/2015:08:26:11 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:08:26:11 +0200] "GET /jasperserver/login.html?error=1 HTTP/1.1" 200 55344 172.21.1.148 - - [15/Sep/2015:08:26:11 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:08:26:11 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:08:26:11 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:08:26:12 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "POST /jasperserver/login.html HTTP/1.1" 200 54939 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 200 1015 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/theme.css HTTP/1.1" 200 16139 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/containers.css HTTP/1.1" 200 29884 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/buttons.css HTTP/1.1" 200 19125 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/controls.css HTTP/1.1" 200 34179 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/pages.css HTTP/1.1" 200 8503 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/lists.css HTTP/1.1" 200 34306 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/dataDisplays.css HTTP/1.1" 200 18721 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/pageSpecific.css HTTP/1.1" 200 122526 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/dialogSpecific.css HTTP/1.1" 200 25737 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/forPrint.css HTTP/1.1" 200 498 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 200 32943 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/overrides_ie.css HTTP/1.1" 200 351 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/overrides_custom.css HTTP/1.1" 200 6150 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/optimized-scripts/bower_components/requirejs/require.js HTTP/1.1" 200 16786 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/optimized-scripts/require.config.js HTTP/1.1" 200 21798 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/optimized-scripts/bower_components/jquery/dist/jquery.js HTTP/1.1" 200 97056 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/scripts/bower_components/prototype/dist/prototype.js HTTP/1.1" 200 219074 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/banner_bkgd.png HTTP/1.1" 200 1012 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/button_action_primary_sprite.png HTTP/1.1" 200 1389 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/lists_sprite.png HTTP/1.1" 200 5797 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/column_header_bkgd.png HTTP/1.1" 200 1022 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/search_sprite.png HTTP/1.1" 200 3332 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/logo.png HTTP/1.1" 200 3075 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/button_action_sprite.png HTTP/1.1" 200 1094 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/footer_bkgd.png HTTP/1.1" 200 1008 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/login_welcome_ce_bkgd.jpg HTTP/1.1" 200 26368 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/_themes/FAB909DB/images/input_bkgd.png HTTP/1.1" 200 1005 172.21.1.148 - - [15/Sep/2015:09:16:02 +0200] "GET /jasperserver/optimized-scripts/login.page.js HTTP/1.1" 200 532371 172.21.1.148 - - [15/Sep/2015:09:16:03 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:16:03 +0200] "GET /jasperserver/_themes/FAB909DB/images/sort_indicators_sprite.png HTTP/1.1" 200 815 172.21.1.148 - - [15/Sep/2015:09:16:03 +0200] "GET /jasperserver/_themes/FAB909DB/images/wait_animation_large.gif HTTP/1.1" 200 21718 172.21.1.148 - - [15/Sep/2015:09:16:03 +0200] "GET /jasperserver/_themes/FAB909DB/images/disclosure_indicators_sprite.png HTTP/1.1" 200 3428 172.21.1.148 - - [15/Sep/2015:09:16:03 +0200] "GET /jasperserver/_themes/FAB909DB/images/list_node_animation.gif HTTP/1.1" 200 5038 172.21.1.148 - - [15/Sep/2015:09:16:03 +0200] "GET /jasperserver/_themes/FAB909DB/images/panel_sizer_sprite.png HTTP/1.1" 200 3143 172.21.1.148 - - [15/Sep/2015:09:16:10 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:16:10 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:16:10 +0200] "GET /jasperserver/logout.html?showPasswordChange=true HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:16:10 +0200] "GET /jasperserver/login.html?showPasswordChange=true HTTP/1.1" 200 55137 172.21.1.148 - - [15/Sep/2015:09:16:11 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:16:11 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:16:11 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:16:11 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:16:31 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:16:31 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 500 45254 172.21.1.148 - - [15/Sep/2015:09:17:46 +0200] "POST /jasperserver/login.html HTTP/1.1" 200 54939 172.21.1.148 - - [15/Sep/2015:09:17:46 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:17:46 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:17:47 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "GET /jasperserver/logout.html?showPasswordChange=true HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "GET /jasperserver/login.html?showPasswordChange=true HTTP/1.1" 200 55137 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:19:02 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:19:03 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:19:14 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:19:14 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 500 45254 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/flow.html?_flowId=searchFlow HTTP/1.1" 200 96889 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/_themes/FAB909DB/images/menu_primaryNav_sprite.png HTTP/1.1" 200 1645 172.21.1.148 - - [15/Sep/2015:09:21:07 +0200] "GET /jasperserver/_themes/FAB909DB/images/button_capsule_sprite.png HTTP/1.1" 200 2110 172.21.1.148 - - [15/Sep/2015:09:21:08 +0200] "GET /jasperserver/optimized-scripts/results.page.js HTTP/1.1" 200 825563 172.21.1.148 - - [15/Sep/2015:09:21:09 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:21:09 +0200] "GET /jasperserver/JavaScriptServlet?noext HTTP/1.1" 200 11897 172.21.1.148 - - [15/Sep/2015:09:21:10 +0200] "GET /jasperserver/flow.html?_flowId=searchFlow&method=getNode&provider=repositoryExplorerTreeFoldersProvider&uri=/&prefetch=%2Freports%2FHuman_Resources& HTTP/1.1" 200 6136 172.21.1.148 - - [15/Sep/2015:09:21:10 +0200] "POST /jasperserver/flow.html?_flowExecutionKey=e1s1&_eventId=browse HTTP/1.1" 200 4513 172.21.1.148 - - [15/Sep/2015:09:21:18 +0200] "GET /jasperserver/exituser.html HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:18 +0200] "GET /jasperserver/logout.html?showPasswordChange=null HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:18 +0200] "GET /jasperserver/login.html?showPasswordChange=null HTTP/1.1" 200 54939 172.21.1.148 - - [15/Sep/2015:09:21:18 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:18 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:19 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:20 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:21:35 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:35 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:35 +0200] "GET /jasperserver/logout.html?showPasswordChange=true HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:36 +0200] "GET /jasperserver/login.html?showPasswordChange=true HTTP/1.1" 200 55137 172.21.1.148 - - [15/Sep/2015:09:21:36 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:36 +0200] "GET /jasperserver/themes/reset.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:36 +0200] "GET /jasperserver/scripts/bower_components/jquery-ui/themes/redmond/jquery-ui-1.10.4-custom.css HTTP/1.1" 304 - 172.21.1.148 - - [15/Sep/2015:09:21:37 +0200] "GET /jasperserver/rest_v2/settings/dateTimeSettings HTTP/1.1" 200 827 172.21.1.148 - - [15/Sep/2015:09:21:46 +0200] "POST /jasperserver/j_spring_security_check HTTP/1.1" 302 - 172.21.1.148 - - [15/Sep/2015:09:21:46 +0200] "GET /jasperserver/loginsuccess.html HTTP/1.1" 500 45254 Jasperreportstomcat_stderr shows the following exception linked to that: Sep 15, 2015 9:16:31 AM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet [jasperserver] in context with path [/jasperserver] threw exception com.jaspersoft.jasperserver.api.JSException: Weak password stored in the database does not conform the allowed pattern. at com.jaspersoft.jasperserver.api.metadata.user.service.impl.UserAuthorityServiceImpl.putUser(UserAuthorityServiceImpl.java:296) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:317) at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150) at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:96) at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:260) at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:94) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) at com.sun.proxy.$Proxy16.putUser(Unknown Source) at com.jaspersoft.jasperserver.war.UserPreferencesFilter.doFilter(UserPreferencesFilter.java:182) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.logging.filter.BasicLoggingFilter.doFilter(BasicLoggingFilter.java:53) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.JSCsrfGuardFilter.doFilter(JSCsrfGuardFilter.java:83) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.WebAppSecurityFilter.doFilter(WebAppSecurityFilter.java:80) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.war.MultipartRequestWrapperFilter.doFilter(MultipartRequestWrapperFilter.java:95) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.war.NullFilter.doFilter(NullFilter.java:43) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.encryption.EncryptionFilter.doFilter(EncryptionFilter.java:150) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.util.SessionDecoratorFilter.doFilter(SessionDecoratorFilter.java:63) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:67) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.P3PFilter.doFilter(P3PFilter.java:43) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:611) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) at org.apache.coyote.ajp.AjpAprProcessor.process(AjpAprProcessor.java:197) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:1852) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:724) Sep 15, 2015 9:19:14 AM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet [jasperserver] in context with path [/jasperserver] threw exception com.jaspersoft.jasperserver.api.JSException: Weak password stored in the database does not conform the allowed pattern. at com.jaspersoft.jasperserver.api.metadata.user.service.impl.UserAuthorityServiceImpl.putUser(UserAuthorityServiceImpl.java:296) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:317) at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150) at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:96) at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:260) at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:94) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) at com.sun.proxy.$Proxy16.putUser(Unknown Source) at com.jaspersoft.jasperserver.war.UserPreferencesFilter.doFilter(UserPreferencesFilter.java:182) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.logging.filter.BasicLoggingFilter.doFilter(BasicLoggingFilter.java:53) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.JSCsrfGuardFilter.doFilter(JSCsrfGuardFilter.java:83) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.WebAppSecurityFilter.doFilter(WebAppSecurityFilter.java:80) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.war.MultipartRequestWrapperFilter.doFilter(MultipartRequestWrapperFilter.java:95) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.war.NullFilter.doFilter(NullFilter.java:43) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.encryption.EncryptionFilter.doFilter(EncryptionFilter.java:150) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.util.SessionDecoratorFilter.doFilter(SessionDecoratorFilter.java:63) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:67) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.P3PFilter.doFilter(P3PFilter.java:43) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:611) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) at org.apache.coyote.ajp.AjpAprProcessor.process(AjpAprProcessor.java:197) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:1852) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:724) Sep 15, 2015 9:21:46 AM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet [jasperserver] in context with path [/jasperserver] threw exception com.jaspersoft.jasperserver.api.JSException: Weak password stored in the database does not conform the allowed pattern. at com.jaspersoft.jasperserver.api.metadata.user.service.impl.UserAuthorityServiceImpl.putUser(UserAuthorityServiceImpl.java:296) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:606) at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:317) at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150) at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:96) at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:260) at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:94) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) at com.sun.proxy.$Proxy16.putUser(Unknown Source) at com.jaspersoft.jasperserver.war.UserPreferencesFilter.doFilter(UserPreferencesFilter.java:182) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.logging.filter.BasicLoggingFilter.doFilter(BasicLoggingFilter.java:53) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.JSCsrfGuardFilter.doFilter(JSCsrfGuardFilter.java:83) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.WebAppSecurityFilter.doFilter(WebAppSecurityFilter.java:80) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.war.MultipartRequestWrapperFilter.doFilter(MultipartRequestWrapperFilter.java:95) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.war.NullFilter.doFilter(NullFilter.java:43) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at com.jaspersoft.jasperserver.api.security.encryption.EncryptionFilter.doFilter(EncryptionFilter.java:150) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87) at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192) at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:160) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.util.SessionDecoratorFilter.doFilter(SessionDecoratorFilter.java:63) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.util.CharacterEncodingFilter.doFilter(CharacterEncodingFilter.java:67) at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:343) at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:260) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at com.jaspersoft.jasperserver.war.P3PFilter.doFilter(P3PFilter.java:43) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:222) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123) at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:611) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:171) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:99) at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:953) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:408) at org.apache.coyote.ajp.AjpAprProcessor.process(AjpAprProcessor.java:197) at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:589) at org.apache.tomcat.util.net.AprEndpoint$SocketProcessor.run(AprEndpoint.java:1852) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:724) Is that Problem (and the solution) familiar to anybody ? Jasperserver Community 6.0.1 Thx Holger
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now