DotNetShoutout - Stories tagged with WSS 3.0
2
Shouts

Hypnotized Developer: Microsoft.SharePoint.SPException : "Cannot complete this action.\n\nPlease try again."

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 12 hours, 52 minutes ago
Wednesday, October 06, 2010 8:25:04 PM GMT
Today I got the "Cannot complete this action.\n\nPlease try again." exception when trying to save data in a Document Library. The full exception is: Microsoft.SharePoint.SPException was caught Message="Cannot complete this action.\n\nPlease try again." Source="Microsoft.SharePoint" ErrorCode=-2147467259 StackTrace: at Microsoft.SharePoint.Library.SPRequest.GetListItemDataWithCallback(String bstrUrl, String bstrListName, String bstrViewName, String bstrViewXml, SAFEARRAYFLAGS fSafeA... (more)
category: Web Dev | clicked: 8 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Microsoft.SharePoint.SPException, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: How to get detailed COM Exception error message coming in SP2, MOSS 2007

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 12 hours, 53 minutes ago
Wednesday, October 06, 2010 8:24:06 PM GMT
To get detailed COM Exception error message in SP2, MOSS 2007, you need to implement the following application error handler that writes it to the browser screen (Otherwise, we can only see the detailed error message in the server application log recorded as a warning) : protected void Application_Error(object sender, EventArgs e) { Exception ex = Server.GetLastError().GetBaseException(); System.Web.HttpContext.Current.Response.Write( "MESSAGE: " + ex.Message + "SOURCE: " + ex.Sou... (more)
category: Web Dev | clicked: 0 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Sharepoint, COM Exception, MOSS 2007
2
Shouts

Hypnotized Developer: "Invalid text value. A text field contains invalid data. Please check the value and try again."

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 12 hours, 55 minutes ago
Wednesday, October 06, 2010 8:22:53 PM GMT
You may get the following exception when calling the Update method of the SPListItem class: Microsoft.SharePoint.SPException was caught Message="Invalid text value\n\nA text field contains invalid data. Please check the value and try again." Source="Microsoft.SharePoint" ErrorCode=-2130575336 StackTrace: at Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bUpdateNoV... (more)
category: Web Dev | clicked: 62 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, ErrorCode=-2130575336, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: Shrinking SharePoint Log Files

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 12 hours, 57 minutes ago
Wednesday, October 06, 2010 8:20:05 PM GMT
Many times the log files generated in an application takes considerable amount of disk space. To recover some storage area you need to run the following script inside concerned database's editor: BACKUP LOG [MOSSContent11000DE-DEV-MOSS] WITH TRUNCATEONLY GO DBCC SHRINKFILE (2,1, TRUNCATEONLY)GO (more)
category: Data | clicked: 0 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Sharepoint, Logs, MOSS 2007
2
Shouts

Hypnotized Developer: Free Tool to Copy/Extract dll from GAC

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 13 hours ago
Wednesday, October 06, 2010 8:17:45 PM GMT
When you are in the middle of the UAT to Production - Solution Deployment Phase, many times you will like to take a back up copy of the assemblies that are all ready deployed and are in GAC for back up purpose. Yesterday I found a very useful tool - GAC Extractor, it has started saving lot of my command prompt related times to copy Dll's from the GAC. The tool is available for download from the following location: Click here to download Free GAC Extractor Tool (more)
category: Web Dev | clicked: 3 | comment | | source: avikercode.blogspot.com
tags: WSS 3.0, Tool, assembly, GAC, Sharepoint, MOSS 2007
2
Shouts

Hypnotized Developer: Steps to follow when upgrading SharePoint 2007 Server Farm from SP1 to SP2

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 13 hours, 1 minute ago
Wednesday, October 06, 2010 8:16:22 PM GMT
A few days back we started the upgradtion process of one of our clients SharePoint 2007 server farm from Service Pack 1 to Service Pack 2. After studiyng a lot, discussing with Microsoft Support Team, we have summarized the steps and best practices that needed to be followed and they are listed below: FULL SQL Backup for all SharePoint related DBs (from SQL server -> management studio->Databases->backup) Run PREPARETOMOVE stsadm command on all content DB http://technet.microsoft.com/en-us/... (more)
category: Web Dev | clicked: 1 | comment | | source: avikercode.blogspot.com
tags: SP Service Pack 1, WSS 3.0, Service Pack, SP Service Pack 2, Sharepoint, MOSS 2007
2
Shouts

How to stream media files in SharePoint Blog Sites created with CKS:EBE

posted by http://avikercode.blogspot.com/http://avikercode.blogspot.com/ 961 days, 13 hours, 5 minutes ago
Wednesday, October 06, 2010 8:12:09 PM GMT
My last project was to create a few blogs in SharePoint 2007 platform for an USA based fashion house. Those blogs are different from the normal blogs – the main contents of the blogs are images and videos. In an average, each post consists of min 8 pictures, min 1 video and 1 or 2 single line of text. To provide them cost effective, rapidly developed, stunning UI based blog sites, we have used mainly 3 components -SharePoint Blog SitesThe Community Kit for SharePoint: Enhanced Blog Edition (V 2.0) andF... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: avikercode.blogspot.com
tags: SharePoint 2007, WSS 3.0, Sharepoint, MOSS 2007