+ private void handleRpcEndpoint(HttpExchange httpExchange) throws IOException {
+ if (!"POST".equals(httpExchange.getRequestMethod())) {
+ sendResponse(405, null, httpExchange);
+ return;
+ }
+
+ if (!"application/json".equals(httpExchange.getRequestHeaders().getFirst("Content-Type"))) {
+ sendResponse(415, null, httpExchange);
+ return;
+ }
+
+ try {
+
+ final Object[] result = {null};
+ final var jsonRpcSender = new JsonRpcSender(s -> {
+ if (result[0] != null) {
+ throw new AssertionError("There should only be a single JSON-RPC response");
+ }
+
+ result[0] = s;
+ });
+
+ final var jsonRpcReader = new JsonRpcReader(jsonRpcSender, httpExchange.getRequestBody());
+ jsonRpcReader.readMessages((method, params) -> commandHandler.handleRequest(objectMapper, method, params),
+ response -> logger.debug("Received unexpected response for id {}", response.getId()));
+
+ if (result[0] != null) {
+ sendResponse(200, result[0], httpExchange);
+ } else {
+ sendResponse(201, null, httpExchange);
+ }
+
+ } catch (Throwable aEx) {
+ logger.error("Failed to process request.", aEx);
+ sendResponse(200,
+ JsonRpcResponse.forError(new JsonRpcResponse.Error(JsonRpcResponse.Error.INTERNAL_ERROR,
+ "An internal server error has occurred.",
+ null), null),
+ httpExchange);
+ }
+ }