Description
It was reported on StackOverflow that there seem to be errors when simply brute-forcing reading all data from an S7 using PLC4X:
The issue was easily reproducible using the example code he provided:
PlcReadRequest.Builder readBuilder = plcConnection.readRequestBuilder(); for (int m = 1; m < 10; m++) { for (int j = 1; j < 9; j++) { readBuilder.addItem("value_int " + m + "." + j, "%DB" + m + "." + "DB" + j + ":INT"); } } final PlcReadResponse plcReadResponse = readBuilder.build().execute().get(); System.out.println(plcReadResponse);
Attachments
Issue Links
- links to