Posts

Showing posts from August, 2012

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

Could not load file or assembly 'ChilkatDotNet4.dll' or one of its dependencies

When trying to use ChilkatDotNet4 from a BizTalk solution we get the following errror. We are trying to use the 64 bit version. System.IO.FileNotFoundException: Could not load file or assembly 'ChilkatDotNet4.dll' or one of its dependencies. The specified module could not be found. File name: 'ChilkatDotNet4.dll' I am using BizTalk 2010 on Win Server 2008. I found simular problem but not in BizTalk  with solution here.  http://stackoverflow.com/questions/3104988/trouble-registering-chilkatdotnet4-dll-to-the-gac . The solution is however the same: I changed the host from 64 to 32 bit.