jsonrpc4j
jsonrpc4j copied to clipboard
Please support 'configs' replace 'params' in --data-binary
I use this project very long time. But ,today, my client need 'configs' in data-binary, not support 'params', please update it.
https://github.com/briandilley/jsonrpc4j/blob/master/src/test/java/com/googlecode/jsonrpc4j/client/JsonRpcClientTest.java final String auth = "auth"; final String authValue = "secret"; client.setAdditionalJsonContent(new HashMap<String, Object>() { { put(auth, authValue); } }); client.invoke("test", new Object[]{1, 2}, byteArrayOutputStream);
maybe you need to fork this repo and modify it yourself.