Job Scheduler with asp.net mvc

后端 未结 2 1008
被撕碎了的回忆
被撕碎了的回忆 2021-01-16 07:04

Every 30 minutes their server generates an XML file with product inside, so my site every half hour would make a request to the URL given to me, their server will generate t

2条回答
  •  不知归路
    2021-01-16 07:22

    You could simulate a Windows Service using ASP.NET to download and import the XML at scheduled intervals. Otherwise, use a dedicated scheduler like Quartz.NET (already mentioned by Mendy), or build your own Windows Service, or run an import script using Windows Task Scheduler.

提交回复
热议问题