When a certain thing happens in an SSIS job I have running, I need it to send internal messages out to users.
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).
Should I try and use a traditional web service, or WCF service, or a normal controller action or some other method?
Thanks for your help and advice!