C# and web services with SSIS

  • Can you use custom C# assemblies with SSIS and if so how, and when calling web services with SSIS and are there any caveats?

  • 1. Yes. An example: http://www.texastoo.com/post/Create-a-custom-assembly-in-SSIS.aspx

    2. Yes. You can use the Web Service Task. (what's in a name?)

    For all the rest, I refer you to the almighty Google.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • With 2005 SSIS i am not sure, you can with 2008, you would just include them like you normally would. Use a Script task and include them as part of the script.

    I have never had much luck with the SSIS component to call webservices, I generally find that it easier and more flexable to write my own methods to call the webservice in VSA script task

  • steveb. (9/21/2010)


    With 2005 SSIS i am not sure, you can with 2008, you would just include them like you normally would. Use a Script task and include them as part of the script.

    I have never had much luck with the SSIS component to call webservices, I generally find that it easier and more flexable to write my own methods to call the webservice in VSA script task

    Don't you need to add them to the GAC before 'including' (I presume you mean referencing) them?

    The absence of evidence is not evidence of absence
    - Martin Rees
    The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
    - Phil Parkin

  • Phil Parkin (9/21/2010)


    steveb. (9/21/2010)


    With 2005 SSIS i am not sure, you can with 2008, you would just include them like you normally would. Use a Script task and include them as part of the script.

    I have never had much luck with the SSIS component to call webservices, I generally find that it easier and more flexable to write my own methods to call the webservice in VSA script task

    Don't you need to add them to the GAC before 'including' (I presume you mean referencing) them?

    And possibly restarting the Integration Services service so that you can actually see and use them.

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

  • Phil Parkin (9/21/2010)


    steveb. (9/21/2010)


    With 2005 SSIS i am not sure, you can with 2008, you would just include them like you normally would. Use a Script task and include them as part of the script.

    I have never had much luck with the SSIS component to call webservices, I generally find that it easier and more flexable to write my own methods to call the webservice in VSA script task

    Don't you need to add them to the GAC before 'including' (I presume you mean referencing) them?

    Good point . thanks..

  • Yep you have to throw it in the GAC

    Lee

  • Though Microsoft has a provided Web Service Task..I also has made a provision of ST/SC...the only limit is data staging designers imagination!!! 🙂

    Raunak J

Viewing 8 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic. Login to reply