Community forum

Please note that VisualCron support is not actively monitoring this community forum. Please use our contact page for contacting the VisualCron support directly.


PhilHouc
2015-07-16T06:43:47Z
We have a program running every 10 minutes to control different things on the Visualcron server.
We have often timeout when connecting to the server.

Version 7.7.2 (no problem until version 6.5)

Partial error message:

Execution failed by code exception:
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.TestConnection()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
.......
Code used:

public bool Execute(TestModulePlanning modulePlanning)
{
Client MyClient = new Client();
Connection MyConnection = new Connection();
Server MyServer = null;

MyConnection.Address = Serveur;
MyConnection.ConnectionType = Connection.ConnectionT.Remote;
MyConnection.UserName = UserName;
MyConnection.PassWord = PassWord;
MyConnection.TimeOut = ConnectionTimeOut;
try
{
MyServer = MyClient.Connect(MyConnection, true);
if (MyServer.Connected)
{
List<JobClass> Jobs = null;
Jobs = MyServer.Jobs.GetAll();
int JobCount = Jobs.Count();
int ActiveJobCount = (from j in Jobs
where j.Stats.Active
select j).Count();
if (JobCount == 0 || ActiveJobCount == 0)
{
throw (new ApplicationException(string.Format("There are {0}/{1} active jobs on {2}", ActiveJobCount, JobCount, Serveur)));
}
}
else
{
throw (new ApplicationException("Connection problem with " + Serveur + "."));
}

}
finally
{
if (MyServer != null)
{
MyServer.Disconnect();
}
MyClient.Dispose();
}
return true;
}
Sponsor
Forum information
Support
2015-07-16T16:36:09Z
Please make sure you use the latest version on Server and latest VisualCronAPI.dll in your program.


Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-07-17T07:18:23Z
Server : 7.7.2
VisualCronAPI.dll coming from server directory where the server is installed.
Support
2015-07-18T13:54:13Z
What timeout do you specify exactly and how long time after do you get this error?
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-07-19T07:37:36Z
MyConnection.TimeOut = ConnectionTimeOut; set to 90

It's very variable.

Sometimes, I have the problem during 2-3 runs. If during this period (20-30 minutes), I use the client or an homemade web page, no connexion problem)
Sometimes, no problem during hours.
Kevin Restiaens
2015-07-27T11:20:26Z
Hi,

We are also having the exact same issue. Our server version runs on 7.6.5, we also did not notice any issue in previous versions.

Support: Please investigate this issue as this is urgent for our clients.

Kind regards,
Kevin R
Support
2015-07-27T15:34:45Z
If you put the code in a loop. Connect 50 times (and then disconnect) with a 15 second pause - can you reproduce this then?
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-07-28T09:42:07Z
Tested and reproductible:
It seem's that the try, finally doesn't catch the error.

Pass 1, Result True, Elapsed time 410 ms
Pass 2, Result True, Elapsed time 770 ms
Pass 3, Result True, Elapsed time 780 ms
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger

Unhandled Exception: VisualCronAPI.Server+ReplyTimeoutException: Expected replyhas not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.TestConnection()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 32)
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.TestConnection()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 32
UpdateTriggerResult->Could not find Trigger

D:\VCronJobs\VCronJobs\bin\Release>


D:\VCronJobs\VCronJobs\bin\Release>VCronJobs.exe
Pass 1, Result True, Elapsed time 250 ms
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger

Unhandled Exception: VisualCronAPI.Server+ReplyTimeoutException: Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.TestConnection()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 32)
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.TestConnection()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 32

D:\VCronJobs\VCronJobs\bin\Release>

Support
2015-07-28T15:25:56Z
Can you attach the code that you use to reproduce?
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-07-29T08:21:56Z
  VCronJobs.zip (3kb) downloaded 86 time(s).

Find in attachment, code used.
Support
2015-08-02T17:23:40Z
Thanks but we could not reproduce that with your test sample. We have built a new version with some other changes, please test that and use the api dlls from the VisualCron folder:

http://www.visualcron.co....aspx?g=posts&t=5087 
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-08-06T06:30:03Z
Server 7.7.4 beta installed on a Windows 2012 R2, with only a few tasks.
Test with new .dll no error (more than 1000 runs).
Production server is a Windows 2008 R2, with a lot of tasks.
I don't conclude that the problem is solved, nor it is not solved, as the environments are different.
Support
2015-08-06T07:25:55Z
Originally Posted by: PhilHouc 

Server 7.7.4 beta installed on a Windows 2012 R2, with only a few tasks.
Test with new .dll no error (more than 1000 runs).
Production server is a Windows 2008 R2, with a lot of tasks.
I don't conclude that the problem is solved, nor it is not solved, as the environments are different.



Thanks, please let us know!
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-09-01T11:48:30Z
Version 7.7.4 installed on our production server W2008R2.
Test launched with rhe production server. The problem is still there.

I noticed that if I receive 2 times or more the message "UpdateTriggerResult->Could not find Trigger", the timeout comes.

sample:

Pass 4, Result True, Elapsed time 154 ms
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger
UpdateTriggerResult->Could not find Trigger
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 38)
Pass 5, Result False, Elapsed time 22 ms
Support
2015-09-02T14:28:06Z
While we are not sure this is the actual issue we have done some changes to 7.7.6 (you need to install 7.7.6 and and update API-dlls): http://www.visualcron.co....aspx?g=posts&t=5159 

What we have done is to not output this and raise further events if not the current Jobs, Notifications and other objects are in sync.
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-10-05T10:35:47Z
Tested with 7.7.6 release with production server

17 timeout / 100

Now, I have a message "SetProxy: No proxy specified", but no more "UpdateTriggerResult->Could not find Trigger"
Partial log with timeoutt follows

Pass 1, Result True, Elapsed time 798 ms
Pass 2, Result True, Elapsed time 842 ms
SetProxy: No proxy specified
SetProxy: No proxy specified
Pass 3, Result True, Elapsed time 357 ms
SetProxy: No proxy specified
Pass 4, Result True, Elapsed time 45 ms
SetProxy: No proxy specified
Pass 5, Result True, Elapsed time 76 ms
SetProxy: No proxy specified
Pass 6, Result True, Elapsed time 92 ms
SetProxy: No proxy specified
Pass 7, Result True, Elapsed time 780 ms
SetProxy: No proxy specified
Pass 8, Result True, Elapsed time 29 ms
SetProxy: No proxy specified
Pass 9, Result True, Elapsed time 29 ms
Pass 10, Result True, Elapsed time 936 ms
SetProxy: No proxy specified
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 38)
Pass 11, Result False, Elapsed time 303 ms
SetProxy: No proxy specified
Pass 12, Result True, Elapsed time 279 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 38)
Pass 13, Result False, Elapsed time 100 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 38)
Pass 14, Result False, Elapsed time 22 ms
Pass 15, Result True, Elapsed time 60 ms
SetProxy: No proxy specified
SetProxy: No proxy specified
Support
2015-10-06T08:29:16Z
We have removed the "SetProxy" debug message for next build but it should not affect.

Please create some test sample code that can reproduce this problem and send it to support@visualcron.com
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-10-07T08:43:36Z
Originally Posted by: Support 

We have removed the "SetProxy" debug message for next build but it should not affect.

Please create some test sample code that can reproduce this problem and send it to support@visualcron.com



It's always the same code I give you in a previous post.

Problem occur's when I use test with the production server (259 active jobs, +/- 20 every 10 minutes).
I can't reproduce the problem on a server with minus jobs.


How can I have a timeout (MyConnection.TimeOut = 60;) and an elapsed time of 22 ms ?
Pass 14, Result False, Elapsed time 22 ms
startTime = DateTime.Now;
result = pvc.Execute(); // execution of the request to server with timeout 60
if (!result)
{
nbEchec++;
}
endTime = DateTime.Now;
elapsedTime = (endTime.Subtract(startTime)).Milliseconds;
Support
2015-10-07T14:35:30Z
We will do some load testing with 300+ Jobs but so far we have not seen this. Please note that the Client we use uses the same API which means all our customers are constantly using the same API. But let us do some load testing and get back to you.
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
Support
2015-11-26T18:58:15Z
Hi,

please test this version - we have done some changes:

http://www.visualcron.co....aspx?g=posts&t=5304 
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-12-11T10:00:07Z
Tested with version 8.0.1
Same code for testing, number of iterations: 50
8 failures on timeout of approximately 90 seconds.

D:\VCronJobs\VCronJobs\bin\Release>dir
Volume in drive D has no label.
Volume Serial Number is 38DC-6CFC

Directory of D:\VCronJobs\VCronJobs\bin\Release

11/12/2015 10:23 <DIR> .
11/12/2015 10:23 <DIR> ..
11/12/2015 10:23 7.680 VCronJobs.exe
02/07/2015 10:42 189 VCronJobs.exe.config
11/12/2015 10:23 17.920 VCronJobs.pdb
11/12/2015 09:37 23.168 VCronJobs.vshost.exe
02/07/2015 10:42 189 VCronJobs.vshost.exe.config
06/06/2012 02:06 490 VCronJobs.vshost.exe.manifest
10/12/2015 15:47 1.709.056 VisualCron.dll
10/12/2015 15:51 2.331.832 VisualCronAPI.dll
8 File(s) 4.090.524 bytes
2 Dir(s) 9.529.982.976 bytes free

D:\VCronJobs\VCronJobs\bin\Release>VCronJobs.exe
Pass 1, Result True, Elapsed time 7769 ms
Pass 2, Result True, Elapsed time 1075 ms
Pass 3, Result True, Elapsed time 1153 ms
Pass 4, Result True, Elapsed time 1152 ms
Pass 5, Result True, Elapsed time 1171 ms
Pass 6, Result True, Elapsed time 1229 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 7, Result False, Elapsed time 94153 ms
Pass 8, Result True, Elapsed time 1237 ms
Pass 9, Result True, Elapsed time 1196 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 10, Result False, Elapsed time 94101 ms
Pass 11, Result True, Elapsed time 918 ms
Pass 12, Result True, Elapsed time 1197 ms
Pass 13, Result True, Elapsed time 1221 ms
Pass 14, Result True, Elapsed time 795 ms
Pass 15, Result True, Elapsed time 808 ms
Pass 16, Result True, Elapsed time 881 ms
Pass 17, Result True, Elapsed time 924 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 18, Result False, Elapsed time 94030 ms
Pass 19, Result True, Elapsed time 876 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 20, Result False, Elapsed time 93959 ms
Pass 21, Result True, Elapsed time 855 ms
Pass 22, Result True, Elapsed time 1043 ms
Pass 23, Result True, Elapsed time 906 ms
Pass 24, Result True, Elapsed time 1015 ms
Pass 25, Result True, Elapsed time 1122 ms
Pass 26, Result True, Elapsed time 901 ms
Pass 27, Result True, Elapsed time 950 ms
Pass 28, Result True, Elapsed time 997 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 29, Result False, Elapsed time 93945 ms
Pass 30, Result True, Elapsed time 923 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 31, Result False, Elapsed time 94082 ms
Pass 32, Result True, Elapsed time 855 ms
Pass 33, Result True, Elapsed time 814 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 34, Result False, Elapsed time 94058 ms
Pass 35, Result True, Elapsed time 1623 ms
Pass 36, Result True, Elapsed time 978 ms
Pass 37, Result True, Elapsed time 1169 ms
Pass 38, Result True, Elapsed time 1322 ms
Pass 39, Result True, Elapsed time 1073 ms
Pass 40, Result True, Elapsed time 872 ms
Pass 41, Result True, Elapsed time 1124 ms
Pass 42, Result True, Elapsed time 1189 ms
Pass 43, Result True, Elapsed time 1157 ms
Pass 44, Result True, Elapsed time 1193 ms
Pass 45, Result True, Elapsed time 1220 ms
Pass 46, Result True, Elapsed time 1277 ms
Pass 47, Result True, Elapsed time 1372 ms
Pass 48, Result True, Elapsed time 1163 ms
Expected reply has not been received within time period ( at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at VisualCronAPI.Server.MBKGDNBCFIIOOEBKHMOHNPKJJKLAFOMCCCPJ(String , Boolean , Int32 )
at VisualCronAPI.Server.CJJBJNJEMBPFLFKNOJJHJADNHFBGIPBDIJHE()
at VisualCronAPI.Client.PECGOCJNDMHNEIAOAIHCIHCEDGBHICCFONMB(Connection , Server , Boolean )
at VisualCronAPI.Client.Connect(Connection conn, Boolean SynchronizeServerObjects)
at VCronJobs.VCron.Execute() in d:\VCronJobs\VCronJobs\VCron.cs:line 39
at VCronJobs.Program.Main(String[] args) in d:\VCronJobs\VCronJobs\Program.cs:line 36)
Pass 49, Result False, Elapsed time 94650 ms
Pass 50, Result True, Elapsed time 1000 ms
Minimum: 795, Maximum: 94650, Average 16093, Failed: 8
Support
2015-12-14T09:10:21Z
PhilHouc, we cannot reproduce it at the moment but it might be related to something in your particualar Jobs or other combination of settings. Could you please export all settings and send to support@visualcron.com
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-12-15T10:33:16Z
Support
2015-12-16T09:49:14Z
Originally Posted by: PhilHouc 

Settings send via email.



Thanks, can you reproduce this if you set syncserverobjects to false in Connect?
Henrik
Support
http://www.visualcron.com 
Please like  VisualCron on facebook!
PhilHouc
2015-12-16T12:07:34Z
I can't get the jobs when setting syncserverobjects to false in Connect

D:\VCronJobs\VCronJobs\bin\Release>VCronJobs.exe
There are 0/0 active jobs on isoapp100
Pass 1, Result False, Elapsed time 6764 ms
There are 0/0 active jobs on isoapp100
Pass 2, Result False, Elapsed time 323 ms
There are 0/0 active jobs on isoapp100
Pass 3, Result False, Elapsed time 387 ms
There are 0/0 active jobs on isoapp100
Pass 4, Result False, Elapsed time 388 ms
There are 0/0 active jobs on isoapp100
Pass 5, Result False, Elapsed time 342 ms
There are 0/0 active jobs on isoapp100
Pass 6, Result False, Elapsed time 374 ms
There are 0/0 active jobs on isoapp100
Pass 7, Result False, Elapsed time 356 ms
^C
D:\VCronJobs\VCronJobs\bin\Release>
Scroll to Top