Question

I have an orchestration that is started by a public port published as service. Everytime somebody calls this service the orchestration starts

I need to start the orchestration every 30 minutes too.

Whats is the better approach? I've seen some here but I would like something more simple

Was it helpful?

Solution

As the blog post you referenced states, BizTalk doesn't really do scheduling. Besides the approaches referenced in that post, I don't think there is really an easier approach to this problem. You mention your orchestration is published as a service. Could you create a simple command line application that calls your service and run that via Windows Schedule or SQLAgent?

OTHER TIPS

There is a reason it does not do things every X minutes. It would be a wrong usage of BizTalk. BizTalk is publish and subscribe. The repetitive process is for WIndows Services and if they need processing then, send to BizTalk from Windows Server.

When you do not publish, you do not receive.

This behaviour can be achieved, however, by an orchestration subscribing to an inbound port (file for example) and then drop a file back at the end.

Write a batch file with reference to windows sheduler

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top