简体   繁体   中英

Error parsing HTTP request header along with 400 bad request in browser

My scenario is,

I have a text field with a button named as "Search", when I entered a value in the text field and click on search button, the value should write/written in existing JSON file. Please find the below code.

function search_criteria()
{
var inputData = document.getElementById("sel").value;
var fileDetails = 
{
    'fileName'  : 'sample.json',
    'fieldName' : 'field1',
    'inputValue' : inputData
}
$
.ajax({
    type : "GET",
    url : "/abc/rest/input_value/search_action",
    data : JSON.stringify(fileDetails),
    contentType : 'application/json',
    success : function(msgr) {
    },
    error : function(data) {
        alert("Inside error while adding input in search field"
                + data);
    }
});

}

Java code

@GET
@Path("/search_action")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Response search_action(@Context HttpServletRequest request, 
JSONObject inputJsonObj)
        throws JSONException, FileNotFoundException, IOException {

    String relativeWebPath = "/TEMP/scenario_content/" + 
inputJsonObj.get("fileName").toString();
    String absoluteDiskPath = 
request.getServletContext().getRealPath(relativeWebPath);

    File file = new File(absoluteDiskPath);
    if(!file.exists())
    {
        file.createNewFile();
    }
    JSONObject json = new JSONObject();
    json.put(inputJsonObj.getString("fieldName"), 
inputJsonObj.getString("inputValue"));

    FileWriter fw = new FileWriter(absoluteDiskPath);
    fw.write(json.toString());

    return Response.status(Status.OK).entity("success").type(MediaType.APPLICATION_JSON)
            .header("X-Content-Type-Options", "nosniff").build();
}

I got the below error by using this code.

org.apache.coyote.http11.AbstractHttp11Processor 
process
INFO: Error parsing HTTP request header
Note: further occurrences of HTTP header parsing errors will be logged at 
DEBUG level.
java.lang.IllegalArgumentException: Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
at org.apache.coyote.http11.AbstractNioInputBuffer.parseRequestLine(AbstractNioInputBuffer.java:283)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1045)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:684)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1533)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1489)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Unknown Source)

Also I got 404 Bad Request in Browser console. Kindly help me to fix this issue.

在显示的代码中,Controller的路径为@Path("/search_criteria")但在ajax调用中,您的网址为url : "/abc/rest/input_value/searchAction",因此它们不会您得到404。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM