Scheduled events configuration in linux environment.

0
As per mentioned in documentation (Configure server in linux environment) to configure scheduled event execution we have to specify scheduled event as comma separated list in configuration file (m2ee.yaml). I specified as below ScheduledEventExecution: SPECIFIED MyScheduledEvents: "eForm.TransferSynchronizationDetails, eFrom.SendSMS, CommunityCommons.releaseOldLocks, UserStatistics.ConcurrentUserPolling" I found in log, all scheduled event is working fine except eForm.SendSMS. Its not starting at all. eForm.SendSMS Configuration :- Startdate/Time 6/15/2012 8:30:00 AM UTC time enabled Repeat true Interval 2 Minute Please check log as below. 2012-08-27 10:24:12.007 INFO - Core: Successfully ran after-startup-action. 2012-08-27 10:24:12.007 INFO - ActionManager: ActionFactory: NOT scheduling DeepLink.CleanUp (not enabled in configuration) 2012-08-27 10:24:12.007 INFO - ActionManager: ActionFactory: NOT scheduling eForm.HandleImportedActions (not enabled in configuration) 2012-08-27 10:24:12.007 INFO - ActionManager: ActionFactory: NOT scheduling eForm.HandleReceivedApplications (not enabled in configuration) 2012-08-27 10:24:12.007 INFO - ActionManager: ActionFactory: NOT scheduling eForm.SendSMS (not enabled in configuration) 2012-08-27 10:24:12.010 INFO - ActionManager: Scheduling CommunityCommons.releaseOldLocks every 5 minutes, starting from 2011-01-27 12:58:53 (UTC) 2012-08-27 10:24:12.036 INFO - ActionManager: Scheduling eForm.TransferSynchronizationDetails every 3 minutes, starting from 2012-06-01 20:50:35 (UTC) 2012-08-27 10:24:12.042 INFO - ActionManager: Scheduling UserStatistics.ConcurrentUserPolling every 1 hour, starting from 2011-09-16 14:00:00 (UTC) 2012-08-27 10:24:12.057 INFO - Core: Runtime successfully started, the application is now available.
asked
2 answers
2

You have a typo in the list of scheduled events to run - should be eForm, not eFrom

answered
0

The scheduled event is either disabled in the server configuration or in the modeler is the scheduled event 'enabled' checkbox not checked. (Dispite the fact the the modeler states that that should not matter, it does matter when deploying to a server)

For server configuration, see here: documentation

answered