You are not logged in.
Pages: 1
Hi
How do I setup X-Scheduler to do a ServiceBroker Trigger ?
Stephan
Offline
Got to work.
By using the class's in X-Scheduler you can trigger the flowing in X-Scheduler DbDataCopy, FTP, SFTPFetch, SFTPSend, ServiceBrokerTrigger.
Here is an example for a ServiceBroker Trigger
<Schedule name="test"> ---> EntryPoint "test" in the ServiceBrokerTrigger.xml file.
<AT>*/5 * * * *</AT> ---> Runs ever 5 min
<Action>
<Path>C:\Program Files\SXI\X-Scheduler\tasks</Path> -------> Where the Class file is.
<Command>ServiceBrokerTrigger.class</Command>
<Arguments>test</Arguments> ---> EntryPoint "test" in the ServiceBrokerTrigger.xml file.
</Action>
</Schedule>
Stephan
Last edited by StephanB (26-03-2019 20:15:52)
Offline
Pages: 1