hi to all,
We have this job that executes reports and then sends them to black berry users. This worked.
It also sends a copye of the report result to an office user's email.
But we see the following error message:
DPR-ERR-2072 error The request failed. It was directed to a server that is not reachable
anyone has any ideas. I searched couple of forums but none seemed to have solutions but these suggestions but doesn't even states in what file ?? Other tips anyone ?
======================================================
We've resolved this problem with increased timeout thresholds. Zeros mean wait indefinitely.
runOptionInt primaryWait = new runOptionInt();
primaryWait.name = runOptionEnum.primaryWaitThreshold;
primaryWait.value = 0;
runOptions[3] = primaryWait;
runOptionInt secondaryWait = new runOptionInt();
secondaryWait.name = runOptionEnum.secondaryWaitThreshold;
secondaryWait.value = 0;
runOptions[4] = secondaryWait; ...
========================================================
Thanks !