this.requester.getSCMPMsgSequenceNr().incrementAndGetMsgSequenceNr();
// 2. initialize call & invoke
SCServiceCallback callback = new SCServiceCallback(true);
SCMPFileListCall fileListCall = new SCMPFileListCall(this.requester, this.serviceName);
try {
fileListCall.invoke(callback, operationTimeoutSeconds * Constants.SEC_TO_MILLISEC_FACTOR);
} catch (Exception e) {
throw new SCServiceException("List files failed. ", e);
}
// 3. receiving reply and error handling
SCMPMessage reply = callback.getMessageSync(operationTimeoutSeconds * Constants.SEC_TO_MILLISEC_FACTOR);