org.jitterbit.integration.server.implementation.webservice.interchange.jobcontrol.client.JobControl jobCtrl = getJobControl(callback);
if (jobCtrl == null) {
// The callback has already been notified.
return;
}
WsRunOperationResult result = jobCtrl.runOperationWithSourceData(userName, password, opId.toString(),
compressedSourceData);
callback.done(result.getOperationInstanceId());
} catch (RemoteException e) {
callback.caught(convert(e));
} catch (IntegrationServerException e) {
callback.caught(new IntegrationServerException("Server exception: " + e.getMessage(), e));
}