Microsoft - SharePoint
Tuesday, October 11, 2011
MOSS 2007, WSS 3.0 Service Pack 3 (SP3)
Wednesday, October 13, 2010
This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms
Tuesday, September 14, 2010
SharePoint 2010 Installation Error - FIPS cryptographic algorithm
An exception of type System.InvalidOperationException was thrown. Additional exception information: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.
System.InvalidOperationException: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.
I checked out few blogs, but was not able to resolve the issue.
These were the blogs/links I referred to:
Amol's blog:
http://sharepointknowledgebase.blogspot.com/2009/04/this-implementation-is-not-part-of.html,
this pointed me to this KB article http://support.microsoft.com/kb/911722. The KB article talks about adding a section to your web.config, but in my case, the central admin site is also still not created so there is no web.config.
I also referred to another link which suggested to disable the FIPS compliance related Local security policy, but in my case it was already disabled.
I will troubleshoot this further and keep updating this post.
Update Oct 11th,2010.
We re-imaged our virtual server, basically got a new server and tried again, same problem again.
I have posted a question in technet
Tuesday, August 31, 2010
SharePoint Item Level Permission
SPRoleDefinition oRoleDefinition_Read = workflowProperties.Web.RoleDefinitions["Read"];
//loop through the user and groups at list level
foreach (SPRoleAssignment oRoleAssignment in workflowProperties.List.RoleAssignments)
{
//Remove all definitions(permissions)associated with the Role Assigments(Users and group)
oRoleAssignment.RoleDefinitionBindings.RemoveAll();
//Add the read only definition to role assignment
oRoleAssignment.RoleDefinitionBindings.Add(oRoleDefinition_Read);
//bind the the new role assignment to the item.
workflowProperties.Item.RoleAssignments.Add(oRoleAssignment);
}
3.) Then update the item and you are done.
Monday, June 15, 2009
Anonymous access for a list
I had followed these steps to resolve the issue:
1.) Navigated to CA ->Application Management ->Authentication Providers
Enabled anonymous access in the right zone.
2.) Went to the site were my survey list is and navigated to
Site Settings-> Advanced Permissions->Settings>Anonymous Access
selected the option List and Libraries
3.) Then I navigated to my Survey List->Settings->Permission for the List->Actions Edit permission, broke the inheritance, then navigated to Settings->Anonymous Access
But the Anonymous user options were greyed out.
So I verified all the above steps again .But found no mistakes.
Then I went to Survey List -> Settings -> Advanced Settings
Since I selected the option which allows users to view only their response, the anonymous user options in the list setting was greyed out. Once I changed this option to "All Responses", I was able to check the appropriate box in the survey list anonymous settings page.