Get parameters which is returned by "out" keyword in SSIS

  • how get parameter which is returned by "out" keyword in c# method by using SSIS?this is my function:

    bool Authenticate(string Username, string Password, out string Message,out string AuthenticationToken)

    I need the "AuthenticationToken" or "token" as output (not input), in here:

  • rezmes - Tuesday, January 23, 2018 3:11 AM

    how get parameter which is returned by "out" keyword in c# method by using SSIS?this is my function:

    bool Authenticate(string Username, string Password, out string Message,out string AuthenticationToken)

    I need the "AuthenticationToken" or "token" as output (not input), in here:

    Looks like you are configuring the 'input' section. Have you tried working with the 'output' section?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Thank you for your reply Phil,
    Yes I've already checked 'output' and because the main out put of function is "True or False" (as result of 'bool' function) so in "Web Service Task Editor" (in SSIS) the only out put is 'True/False' and it is introducing the token parameter as an 'input'.

    Not sure but it seems there is not any out of the box solution in SSIS to get the 'token' parameter from this function and I think there should be a script solution for extracting the that 'token', But I do not know how.

    Is there anyone who can help me to get it?

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

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