Make simple HTTP call from SSIS?

  • I am sure this is probably an easy question for someone, I am just not finding the information online. I have a need to make a call to a webpage at the end of an SSIS package. I don't need to download anything or upload anything, I just need to hit the URL.

    What is the best way to do this?

    🙂

    I should mention that I am editing an existing package in VS 2012.

  • You could use a Script Task and use the WebClient class. Should not be too much code.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • use namespace System.Net.WebClient to make the Http request with the help of Script Task in SSIS

  • Thank you both for your replies!

Viewing 4 posts - 1 through 3 (of 3 total)

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