Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for badRequest (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/WEB-INF/orig/view/error/badRequest.jsp

    	<jsp:include page="../header.jsp" />
    	<main class="container">
    		<div class="text-center">
    			<h2>
    				<la:message key="labels.request_error_title" />
    			</h2>
    			<div class="errormessage"><la:message key="labels.bad_request" /></div>
    		</div>
    	</main>
    	<jsp:include page="../footer.jsp" />
    	<input type="hidden" id="contextPath" value="${pageContext.request.contextPath}" />
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/web.xml

      <!--                                                                        ========== -->
      <error-page>
        <error-code>400</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=badRequest</location>
      </error-page>
      <error-page>
        <error-code>401</error-code>
        <location>/WEB-INF/view/error/redirect.jsp?type=badAuth</location>
      </error-page>
      <error-page>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 09:08:35 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /chat/chat.jsp */
        HtmlNext path_Chat_ChatJsp = new HtmlNext("/chat/chat.jsp");
    
        /** The path of the HTML: /error/badRequest.jsp */
        HtmlNext path_Error_BadRequestJsp = new HtmlNext("/error/badRequest.jsp");
    
        /** The path of the HTML: /error/busy.jsp */
        HtmlNext path_Error_BusyJsp = new HtmlNext("/error/busy.jsp");
    
        /** The path of the HTML: /error/error.jsp */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 26.5K bytes
    - Click Count (0)
  4. src/main/resources/fess.xml

    			<arg>"errorSystem"</arg>
    			<arg>"error/system.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"errorBadRequest"</arg>
    			<arg>"error/badRequest.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    			<arg>"errorBusy"</arg>
    			<arg>"error/busy.jsp"</arg>
    		</postConstruct>
    		<postConstruct name="addDesignJspFileName">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

            // Test OK status
            ApiResult okResult = new ApiResult.ApiResponse().status(Status.OK).result();
            assertNotNull(okResult);
    
            // Test BAD_REQUEST status
            ApiResult badRequestResult = new ApiResult.ApiResponse().status(Status.BAD_REQUEST).result();
            assertNotNull(badRequestResult);
    
            // Test UNAUTHORIZED status
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            assertEquals("{labels.contact_site_admin}", FessLabels.LABELS_contact_site_admin);
            assertEquals("{labels.request_error_title}", FessLabels.LABELS_request_error_title);
            assertEquals("{labels.bad_request}", FessLabels.LABELS_bad_request);
            assertEquals("{labels.page_not_found_title}", FessLabels.LABELS_page_not_found_title);
            assertEquals("{labels.check_url}", FessLabels.LABELS_check_url);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/web/api/ApiResultTest.java

        @Test
        public void test_Status_OK() {
            assertEquals(0, Status.OK.getId());
        }
    
        @Test
        public void test_Status_BAD_REQUEST() {
            assertEquals(1, Status.BAD_REQUEST.getId());
        }
    
        @Test
        public void test_Status_SYSTEM_ERROR() {
            assertEquals(2, Status.SYSTEM_ERROR.getId());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  8. src/main/resources/fess_label_en.properties

    labels.searchoptions_menu_labels=Labels
    labels.error_title=Error
    labels.system_error_title=System Error
    labels.contact_site_admin=Please contact your site administrator.
    labels.request_error_title=Invalid Request Format.
    labels.bad_request=Your request to the URL is invalid.
    labels.page_not_found_title=Page Not Found.
    labels.check_url=Please check the URL.
    labels.busy_title=Service Temporarily Unavailable
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        /**
         * Represents the status of an API response.
         */
        public enum Status {
            /** Successful response status. */
            OK(0),
            /** Bad request status indicating client error. */
            BAD_REQUEST(1),
            /** System error status indicating server error. */
            SYSTEM_ERROR(2),
            /** Unauthorized status indicating authentication failure. */
            UNAUTHORIZED(3),
            /** General failure status. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_zh_TW.properties

    labels.searchoptions_menu_lang=語言
    labels.searchoptions_menu_labels=標籤
    labels.error_title=錯誤
    labels.system_error_title=系統錯誤
    labels.contact_site_admin=請聯繫網站管理員。
    labels.request_error_title=請求格式不正確。
    labels.bad_request=對URL的請求不正確。
    labels.page_not_found_title=頁面未找到。
    labels.check_url=請檢查URL。
    labels.busy_title=服務暫時無法使用
    labels.busy_message=伺服器目前負載較高,請稍後再試。
    labels.user_name=使用者名稱
    labels.login=登入
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.5K bytes
    - Click Count (0)
Back to Top