tipsattricks.blogspot.com
Tips And Tricks: August 2009
http://tipsattricks.blogspot.com/2009_08_01_archive.html
Thursday, August 20, 2009. WSP Builder Extension Error (System.Workflow.ComponentModel.Compiler.ITypeProvider). Solving the error :The service 'System.Workflow.ComponentModel.Compiler.ITypeProvider' must be installed for this operation to succeed. Please ensure that this service is available. To fix this issue you have to edit your project file :. Goto project propertygroup :. For VB Project Project :. Labels: System.Workflow.ComponentModel.Compiler.ITypeProvider. Wednesday, August 19, 2009. Use Activato...
tipsattricks.blogspot.com
Tips And Tricks: Shrinking SQL Server Database and Transaction Log
http://tipsattricks.blogspot.com/2009/11/shrinking-sql-server-database-and.html
Thursday, November 19, 2009. Shrinking SQL Server Database and Transaction Log. I was spending time on shrinking the transaction log and DB, some of our developer boxes didnt have enough space.After a while i just figured so i thought of sharing with others. Backup log [DataBase Name] with truncate only - Not supported in 2008. DBCC SHRINKDATABASE ([Data Base Name], 10, TRUNCATEONLY). SQL Server 2008 use different approach because its no longer supports backup log with truncate only. SET RECOVERY SIMPLE;.
sharepoint2010shyju.blogspot.com
Sharepoint 2010: Features in Sharepoint 2010
http://sharepoint2010shyju.blogspot.com/2010/06/features-in-sharepoint-2010.html
Thursday, June 24, 2010. Features in Sharepoint 2010. Performance Monitoring and Request Throttling. Silverlight Integration and Cross-Domain Data Access. Windows PowerShell for SharePoint. Custom Field Rendering Enhancements. Mobile Device Development Enhancements. Enterprise Content Management (ECM) Enhancements. SharePoint Enterprise Search Enhancements. User Profiles Enhancements and Social Data. Databases per Web App and App Pools per Server. Subscribe to: Post Comments (Atom). Ajax Integration with...
tipsattricks.blogspot.com
Tips And Tricks: String or StringBuilder to stream/memorystrem
http://tipsattricks.blogspot.com/2009/11/string-or-stringbuilder-to.html
Tuesday, November 24, 2009. String or StringBuilder to stream/memorystrem. String myString = sb.ToString();. Byte[] myByteArray = System.Text.Encoding.UTF8.GetBytes(myString);. MemoryStream ms = new MemoryStream(myByteArray);. Subscribe to: Post Comments (Atom). String or StringBuilder to stream/memorystrem. Shrinking SQL Server Database and Transaction Log. View my complete profile. Configuring Search In Sharepoint (MOSS 2007). String or StringBuilder to stream/memorystrem. WSP Builder Extension Error (...
shyjumohan.blogspot.com
Configuring Search In Sharepoint (MOSS 2007): Configuring Sharepoint Service Provider (MOSS 2007 SSP)
http://shyjumohan.blogspot.com/2007/03/configuring-sharepoint-service-provider.html
Configuring Search In Sharepoint (MOSS 2007). Monday, March 19, 2007. Configuring Sharepoint Service Provider (MOSS 2007 SSP). Configuring Sharepoint service provider is one of the important task when you are setting up a sharepoint server (MOSS 2007). The following steps will help you in creating and configuring SSP. What are the prerequisites for configuration? The important one is the user account . Configuring the SSP (Shared Service Provider). 3 Click on New SSP. 5 Select Create a new IIS web site.
sharepointinstallation.blogspot.com
MOSS 2007- Sharepoint: Deploying Solution Package Using STSADM
http://sharepointinstallation.blogspot.com/2009/07/deploying-solution-package-from-stsadm.html
Wednesday, July 15, 2009. Deploying Solution Package Using STSADM. Now there are different way you can deploy your solution package into sharepoint.If you are looking for WSP Builder Project You can download it from following link http:/ wspbuilder.codeplex.com/Release/ProjectReleases.aspx? Its a visual studio extension. Playing with STSADM for solution deployment. We can use our sweet and dirty comandline tool STSADM. Step1 : Add the solution pack (Only added solution pack can be deployed). The deleteso...
sharepointinstallation.blogspot.com
MOSS 2007- Sharepoint: October 2009
http://sharepointinstallation.blogspot.com/2009_10_01_archive.html
Wednesday, October 7, 2009. 100 – Generic List. 101 – Document Library. 102 – Survey. 103 – Links List. 104 – Announcements List. 105 – Contacts List. 106 – Events List. 107 – Tasks List. 108 – Discussion Board. 109 – Picture Library. 110 – Data Sources. 111 – Site Template Gallery. 112 – User Information List. 113 – Web Part Gallery. 114 – List Template Gallery. 115 – XML Form Library. 116 – Master Pages Gallery. 117 – No-Code Workflows. 118 – Custom Workflow Process. 119 – Wiki Page Library. I always f...
sharepointinstallation.blogspot.com
MOSS 2007- Sharepoint: Minimal Permission required to execute the code in Sharepoint
http://sharepointinstallation.blogspot.com/2010/12/minimal-permission-required-to-execute.html
Friday, December 3, 2010. Minimal Permission required to execute the code in Sharepoint. I always faced the access permission issue in consuming the Sharepoint object model from a exe or webservice or windows service with a user who have limited access.Each time i figured out the permission required then forget blog it so all the time i have to Dig again to find the permission.So let see what should we do in each type of application. Add to WSS ADMIN WPG group. Web Service / WCF Service. We are bound to ...
sharepointinstallation.blogspot.com
MOSS 2007- Sharepoint: August 2009
http://sharepointinstallation.blogspot.com/2009_08_01_archive.html
Sunday, August 23, 2009. Sharepoint comes with handfull of option to store the information with ease.When we are thinking about storing configuration information then first item comes to our mind is web.config.But when we look at sharepoint perspective, there is one more usfull option called propertybag is available.It can store the information at different levels such as. 8226; Web Application. 8226; Site Collection. Using (SPSite site = new SPSite(SPContext.Current.Web.Url). Add a property entry. Label...