*/
private void serverAbortSessionWithExtraRequester(Requester requester, SCMPMessage message, ISCMPMessageCallback callback,
int timeoutMillis) throws ConnectionPoolBusyException {
// setting the http url file qualifier which is necessary to communicate with the server.
message.setHttpUrlFileQualifier(this.remoteNodeConfiguration.getHttpUrlFileQualifier());
SCMPSrvAbortSessionCall srvAbortSessionCall = new SCMPSrvAbortSessionCall(this.requester, message);
try {
srvAbortSessionCall.invoke(callback, timeoutMillis);
} catch (ConnectionPoolBusyException ex) {
throw ex;
} catch (Exception th) {
callback.receive(th);
}