How to call a web service (.asmx ) or a wcf service (.svc) via ssis package?

拜拜、爱过 提交于 2019-12-12 17:39:49

问题


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


回答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)


来源:https://stackoverflow.com/questions/8691964/how-to-call-a-web-service-asmx-or-a-wcf-service-svc-via-ssis-package

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!