Friday, January 4, 2013

Error while deploying BCS data model

Error 22 Error occurred in deployment step 'Add Solution': The default web application could not be determined. Set the SiteUrl property in feature Feature1 to the URL of the desired site and retry activation.
Parameter name: properties



Solution: Follow these steps

1) Open your Feature Designer
2) Click on the Manifest tab
3) Click on Edit Options to append your changes to the manifest file
3) Add the SiteUrl property in the manifest template
<Properties>
<Property Key=”SiteUrl” Value=”http://<your-site-name>” />
</Properties>


http://go4answers.webhost4life.com/Example/error-deploying-bcs-model-sharepoint-132591.aspx
http://weblogs.asp.net/jan/archive/2010/05/07/sharepoint-2010-bdc-model-deployment-issue-the-default-web-application-could-not-be-determined.aspx

No comments:

c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch

 If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...