WCF-SQL"Action is not understood"
This is an oldie but goodie.
When tryin to deliver data to SQL Server using WCF-SQL on need to be carefull when configuring the sendport. The operation needs to be the same name as used in the orchestration. When adding the action configuration this is how you do it:
< BtsActionMapping >
< Operation Name =”THIS NEEDS TO BE THE SAME AS IN THE ORC” Action = “TheAction” \ >< /BtsActionMapping >
This is how to do it
There is an article at msdn explaining the details here
When tryin to deliver data to SQL Server using WCF-SQL on need to be carefull when configuring the sendport. The operation needs to be the same name as used in the orchestration. When adding the action configuration this is how you do it:
< BtsActionMapping >
< Operation Name =”THIS NEEDS TO BE THE SAME AS IN THE ORC” Action = “TheAction” \ >< /BtsActionMapping >
This is how to do it
There is an article at msdn explaining the details here
Comments
Post a Comment