Dump
Purpose
This method will print information on the current input data in a Hex Dump format. The out is to "System.err".
Example
S7RClientSSj conn = new S7RClientSSj();
S7RClientSSjToken token = conn.Connect(url, userid, password);
conn.setAutoAck(token, false); // user will handle ack/nack process
conn.setTimeout(token, 10*1000); // set 10 second timeout on gets
byte[] dataIn = conn.receiveWait(token);
conn.Dump(token);
if (dataIn != null) {
byte[] dataIn = conn.getDataContent(token);
process it
}
conn.Disconnect(token);
Copyright © Cloud Software Group, Inc. All rights reserved.
