Problem RIDC with the server response
Hello comunity.
I´m really new in this topic.
I was doing some tests, looking and playing with the RIDC client with a simple ping to the server.
The problem that i have is that when i want to send a request to the server through the RIDC, the service response returned by the server is null. This is the code that i have been using to do so.
IdcClient idcClient = manager.createClient("idc://192.168.2.187:16200");
idcClient.initialize();
idcClient.getConfig().setSocketTimeout(30000);
idcClient.getConfig().setConnectionSize(20);
DataBinder binder = idcClient.createBinder();
binder.putLocal("IdService", "PING_SERVER");
ServiceResponse response = idcClient.sendRequest(userContext, binder);
DataBinder responseData = response.getResponseAsBinder();
0