Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MalformedXML (0.05 sec)

  1. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            }
        }
    
        public void test_parseWithMalformedXml() {
            GsaConfigParser parser = new GsaConfigParser();
            String malformedXml = "<?xml version=\"1.0\"?><eef><unclosed>";
    
            try {
                parser.parse(new InputSource(new StringReader(malformedXml)));
                fail("Should throw GsaConfigException");
            } catch (GsaConfigException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Code:           "InvalidRequest",
    		Description:    "Cannot specify both Range header and partNumber query parameter",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedXML: {
    		Code:           "MalformedXML",
    		Description:    "The XML you provided was not well-formed or did not validate against our published schema.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingContentLength: {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (1)
Back to top