I am in the process of trying to update my application to use the DevForce 2010. I am getting the following error in the callback routine from a call to ExecuteAsync
Key 'CMISENTITIES': Parameter 'connectionString' is not valid. String arguments cannot be empty.
Parameter name: connectionString Check that either a connectionStrings element or EdmKey is defined for this key in the configuration file, or implement a custom IDataSourceKeyResolver.
I'm assuming this means there is no connection string definition in my web.config file. Previously the connectionstring was added automatically to the edmKey section of the web.config file as follows:
<edmKeys>
<edmKey name="Default" connection="metadata=res://OrianaHouse.CMIS.Data.DataModel.CMISModelEF/CMISModel.csdl|res://OrianaHouse.CMIS.Data.DataModel.CMISModelEF/CMISModel.ssdl|res://OrianaHouse.CMIS.Data.DataModel.CMISModelEF/CMISModel.msl;provider=System.Data.SqlClient;provider connection string="Data Source=UDSSRV1\UDSLAB1;Initial Catalog=CMIS;Persist Security Info=True;User ID=xxxxx;Password=xxxxx;MultipleActiveResultSets=True"" containerName="OrianaHouse.CMIS.Data.DataModel.CMISEntities">
<probeAssemblyNames>
<probeAssemblyName name="OrianaHouse.CMIS.Data.DataModel.CMISModelDF"/>
<probeAssemblyName name="OrianaHouse.CMIS.Data.DataModel.CMISModelEF"/>
</probeAssemblyNames>
</edmKey>
</edmKeys>
How do I get this to automatically occur now or is this something I now need to do manually?