2

Is it possible calling a service (web service or wcf service) via a ssis package in order to schedule running it as a job?

Thank you for any sugestions

odiseh
  • 25,407
  • 33
  • 108
  • 151

1 Answers1

1

Yes, you can invoke a web service from an SSIS package.

http://msdn.microsoft.com/en-us/library/ms140114.aspx

http://www.codeproject.com/KB/database/webservicessis.aspx

Whether or not that's a good design decision is another question:

  • Does it couple the tiers too tightly?
  • Is it secure? (probably, if you are only making outgoing calls, or calling an internal service)
Tim M.
  • 53,671
  • 14
  • 120
  • 163