Thursday, December 15, 2011
Wednesday, November 02, 2011
401 Unauthorized when calling SharePoint web services
Had a problem with a previously working installation calling the lists.asmx service. Switched the authentication from Kerberos to NTLM in the web application settings which resolved the problem.
Tuesday, October 25, 2011
User profile service connections disappear
Monday, October 24, 2011
Thursday, October 13, 2011
Forcing AD Image Sync in SharePoint 2010
- Make sure the image is in AD (use the Dovestones tool to check)
- Make sure the properties is mapped in the User Profile Service to the thumbNail photo for Import for the Picture property
- Perform a full Synchronisation against AD
- Check the FIM front-end for errors during sync - see Harbars
- Ensure that the permissions for the account which will run the Powershell commandlet has appropriate permissions - see Donal Conlon
- Use the Update-SPProfilePhotoStore commandlet to perform the updates
- Run a full people crawl in Search
Monday, May 30, 2011
CRM 4.0 Dependency Properties
Property name must be the same as the registered name plus “Property” ????
public static DependencyProperty smtpServerProperty = DependencyProperty.Register("smtpServer", typeof(System.String), typeof(SendQuoteToCustomer));
[CrmInput("Smtp Server")]
[CrmDefault("2010wss64nickg")]
public string smtpServer
{
get
{
return (string)base.GetValue(smtpServerProperty);
}
set
{
base.SetValue(smtpServerProperty, value);
}
}
Friday, May 06, 2011
ClickOnce publication via. external web-site
When publishing a ClickOnce application on an external web-server it is necessary to set the Installation Folder Url in the Signing panel of the VStudio Project Properties.
Feedburner RSS