The connection string you posted is tied to using Entity Framework's EDMX designers. If you aren't using that then this connection string won't work. Please post the relevant code that is trying to load the connection string.
WorkFlowActions.xamlx keep giving Keyword not supported: 'metadata'.
Hi all,
I'm working with Sequential WindowsWorkFlow.xamlx, once I want to run the Workflow, it's keep giving error "Keyword not supported: 'metadata'."
I checked the connection string and it is as below:
<add name="MyEntities" connectionString="metadata=res://*/ENT.csdl|res://*/ENT.ssdl|res://*/ENT.msl;provider=System.Data.SqlClient;provider connection string="data source=****;initial catalog=****;user id=***;password=****;multipleactiveresultsets=True;application name=EntityFramework"" providerName="System.Data.EntityClient" />
Please help...
3 answers
Sort by: Most helpful
-
-
Khalid Salameh 1 Reputation point
2021-11-28T14:04:11.707+00:00 I tried this also:
osql -S <server_name> -U sa -P <password> -d <database_name> -i C:\Windows\Microsoft.NET\Framework\v4.0.30319\SQL\en\SQLWorkflowInstanceStoreSchema.sqlstill given "Login failed for user 'sa' "
-
leo del ciello 66 Reputation points
2022-04-19T07:26:01.877+00:00 I guess you should have an entry in the <services> section of your web.config too, something like :
<service name="ManageWorkFlowActions"> <endpoint address="" binding="basicHttpBinding" bindingConfiguration="pdp_basicHttpBinding" contract="IManageWorkFlowActions" /> </service>
where "IManageWorkFlowActions" is a placeholder for the name of the Interface implementing your service.
If you used the right workflow template to develop your application this entry should have been inserted automatically in your web. config ....