简体   繁体   English

如何让SSIS作业与ASP.NET MVC网站通信?

[英]How can I have an SSIS job communicate with my ASP.NET MVC site?

When a certain thing happens in an SSIS job I have running, I need it to send internal messages out to users. 当我正在运行的SSIS作业中发生某件事时,我需要它将内部消息发送给用户。

What is the easiest way to setup my ASP.NET MVC site so my SSIS service can call some action on the site and pass in a few string parameters (recipients, etc). 设置ASP.NET MVC网站最简单的方法是什么,以便我的SSIS服务可以在该网站上调用某些操作并传递一些字符串参数(收件人等)。

Should I try and use a traditional web service, or WCF service, or a normal controller action or some other method? 我应该尝试使用传统的Web服务,WCF服务还是常规的控制器操作或其他方法?

Thanks for your help and advice! 感谢您的帮助和建议!

Why would you want the site to do this? 您为什么要网站这样做? A web site is something that takes HTTP requests and gives responses. 网站是接收HTTP请求并给出响应的东西。 That's not what you're trying to do with the SSIS job. 这不是您要对SSIS工作执行的操作。

Write some code in a script task, and have it executed by the SSIS job. 在脚本任务中编写一些代码,并使其由SSIS作业执行。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在ASP.NET MVC3网站上对我的Json结果进行单元测试? - How can I unit test my Json result in an ASP.NET MVC3 web site? 如何将 AdSense 代码添加到我的 ASP.NET MVC 网站? - How can I add AdSense code to my ASP.NET MVC site? 如何判断我的网站是否运行ASP.NET MVC或Web窗体? - How Can I Tell If My Site Is Running ASP.NET MVC or Web Forms? 2控制器如何与asp.net mvc中的1个视图进行通信 - How can 2 controllers communicate with 1 view in asp.net mvc 我有一个现有的asp.net mvc网站(在iis 7上),我可以在/ blog子目录中添加wordpress吗? - I have an existing asp.net mvc site (on iis 7), can I add wordpress on a /blog subdirectory? 我可以在MVC站点下的虚拟目录中使用传统的ASP.NET Web应用程序吗? - Can I have traditional ASP.NET Web Applications in Virtual Directories under MVC Site? 我可以在我的asp.net mvc网站触发的特定日期运行一次Azure功能吗? - Can I run a Azure function once on a specific date triggered by my asp.net mvc site? 如何为我的 asp.net MVC 站点的每个访问者添加 cookie? - How do I add a cookie for every visitor to my asp.net MVC site? 我应该如何存储我的ASP.NET MVC网站的设置? - How should I store my ASP.NET MVC site's settings? 如何识别从其他地方返回我的ASP.NET MVC网站的用户? - How do I identify a user returning to my ASP.NET MVC site from elsewhere?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM