How to run biztalk orchestration every X minutes

2019-07-22 01:23发布

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

3条回答
乱世女痞
2楼-- · 2019-07-22 02:03

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?

查看更多
劳资没心,怎么记你
3楼-- · 2019-07-22 02:15

Write a batch file with reference to windows sheduler

查看更多
smile是对你的礼貌
4楼-- · 2019-07-22 02:18

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.

查看更多
登录 后发表回答