June 29, 2009 at 1:17 pm
i am trying to use webservice task in my ssis package.
the webservice i am accessing need an certificate.
how do i do i thru Webservice task in ssis? Please let me know.
June 30, 2009 at 7:09 am
keywestfl9 (6/29/2009)
i am trying to use webservice task in my ssis package.the webservice i am accessing need an certificate.
how do i do i thru Webservice task in ssis? Please let me know.
The Web service Task uses HTTP Connection Manager for communication. You can specify your client certificate in the HTTP Connection Manager.
June 30, 2009 at 7:50 pm
Thanks a lot.
i think i can't use web service task as i have pass parameter and i dont think web service accepts parameter from table.
if i have to do thru script task how do i do it? Please let me know
June 30, 2009 at 8:54 pm
keywestfl9 (6/30/2009)
Thanks a lot.i think i can't use web service task as i have pass parameter and i dont think web service accepts parameter from table.
if i have to do thru script task how do i do it? Please let me know
Web service task supports parameters. Check the documentation.
July 1, 2009 at 8:58 am
Thanks for the documentation.
Can you please tell me if i have to do the input parameter from a table column value, how do i do it?
July 1, 2009 at 11:21 am
keywestfl9 (7/1/2009)
Thanks for the documentation.Can you please tell me if i have to do the input parameter from a table column value, how do i do it?
You have to load the column value in a package variable and then you can set the variable as input to the web service method.
July 8, 2009 at 10:17 am
i created an execute sql task and taking the particular column i need and storing it to a package variable(user::people) with datatype as object
Then i have a for each loop container in collection i select the above variable i selected and in variable mappings i created another variable (user::lastname) and index as 0 since i need the first column
Now when i put webservice task and use user::lastname as the input variable it throws an error saying there is no lastname and it shows user::lastname
Please let me know how to pass the user::lastname to the webservice task
July 8, 2009 at 10:33 am
keywestfl9 (7/8/2009)
i created an execute sql task and taking the particular column i need and storing it to a package variable(user::people) with datatype as objectThen i have a for each loop container in collection i select the above variable i selected and in variable mappings i created another variable (user::lastname) and index as 0 since i need the first column
Now when i put webservice task and use user::lastname as the input variable it throws an error saying there is no lastname and it shows user::lastname
Please let me know how to pass the user::lastname to the webservice task
What you are doing is incorrect. The variable mapping is for passing parameters to the SQL statement you are executing. You have to store the column in the result set's variable. You should not use for each loop container. Your next step should be the web service task, passing the variable you used in the Execute SQL Task result set.
July 8, 2009 at 3:04 pm
Thanks for the help.
i created an variable in package level with datatype as object
created an execute sql task
resultset as fullresulset , connection and the sql statement
in the resultset : Resultsetname = 0 and the variable name as user::resultset
then i connected to webservice task
i did the http connection, wsdl download
in input task screen -- i selected service, method nothing showed up in webmethoddocumentation
i see two parameters and i tried entering the user::resultset under the value column and i get an exception and not the data.
Can you please tell me what i am doing wrong?
July 8, 2009 at 3:06 pm
Thanks for the help.
i created an variable in package level with datatype as object
created an execute sql task
resultset as fullresulset , connection and the sql statement
in the resultset : Resultsetname = 0 and the variable name as user::resultset
then i connected to webservice task
i did the http connection, wsdl download
in input task screen -- i selected service, method nothing showed up in webmethoddocumentation
i see two parameters and i tried entering the user::resultset for one under the value column and the other parameter i can hardcode and i get an exception and not the data.
Can you please tell me what i am doing wrong?
July 9, 2009 at 4:35 pm
February 22, 2012 at 6:49 am
You can do all the tasks by using ssis script task. You can write C# code inside the script task and pass the credentials for the certificate.
Viewing 12 posts - 1 through 11 (of 11 total)
You must be logged in to reply to this topic. Login to reply