DotNetShoutout - Stories tagged with Sharepoint
7
Shouts

MSDN Magazine: Cloud Collaboration - Connecting SharePoint to Windows Azure with Silverlight Web Parts

published 928 days, 17 hours, 27 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 930 days, 23 hours, 48 minutes ago
Friday, November 05, 2010 5:51:43 PM GMT Wednesday, November 03, 2010 11:31:08 AM GMT
There are many ways to integrate Windows Azure applications with SharePoint 2010. We’ll walk you through one example: a Silverlight-based Web Part that consumes data from the cloud. (more)
category: Metro | clicked: 0 | comment | | source: msdn.microsoft.com
tags: Silverlight, Windows Azure, MSDN, Sharepoint, MSDN Magazine, Azure
3
Shouts

SharePoint AD Management is Made Easy!

posted by kisstechkisstech 932 days, 2 hours, 42 minutes ago
Tuesday, November 02, 2010 8:37:15 AM GMT
Add, modify, or delete the properties & tabs available in the web part; Make sure SharePoint Site’s Membership Stays Up-to-date as New Users Join and Leave the Organization. Check this great tool out by visiting SharePoint AD Management. (more)
category: Web Dev | clicked: 0 | comment | | source: www.sharepointboost.com
tags: SharePoint AD, Acitive Directory, Sharepoint
4
Shouts

SharePoint Performance Tuning – Part 2 | SharePoint Monitor

posted by JudoJudo 932 days, 18 hours, 17 minutes ago
Monday, November 01, 2010 5:02:05 PM GMT
In the previous part of the SharePoint Performance Tuning series we configured  file-based caching for the Web Front-End SharePoint server. Now, we still stay with the Front-EndEnabling Kerberos Authentication If your sites are serving numerous requests at a time, and you are experiencing a slow page load, you should consider switching the site-level authentication from NTLM to Kerberos. Whilst NTLM is good for small or medium sized sites, Kerberos is useful when your environment requires high workload ... (more)
category: Architecture | clicked: 0 | comment | | source: www.sharepointmonitor.com
tags: Performance, Sharepoint
6
Shouts

Creating a Delete Without Recycling Feature for List Items in SharePoint 2007 - Kirk Evans Blog

published 933 days, 12 hours, 8 minutes ago posted by StevesSteves 934 days, 14 hours, 20 minutes ago
Sunday, October 31, 2010 11:11:02 PM GMT Saturday, October 30, 2010 8:59:23 PM GMT
In my last post, I talked about errors you might encounter while trying to empty the second stage recycle bin with SharePoint 2007. My customer encountered this problem partially because a single site deletes upwards of 2,000 items per day. They saw items in the second stage recycle bin that were 8 months old and there were nearly 1 million items in the second stage recycle bin. The items could be deleted manually one at a time, but there was no way to bulk delete the items using the SharePoint web us... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: SharePoint 2010, Sharepoint
2
Shouts

SharePoint 2007 Limitations complete list

published 936 days, 16 hours, 44 minutes ago posted by PraveenPraveen 937 days, 57 minutes ago
Thursday, October 28, 2010 6:34:36 PM GMT Thursday, October 28, 2010 10:22:03 AM GMT
There are so many posts in the Internet describes about this. But, there is no place where I found all at once. So, I am planning to keep this post up to date with whatever I find. If I miss anything then please add here or let me know. That will be a great help. SharePoint maximum limitations Performance limits Scaling limits I think, the above three posts covers most of them. But, below are some of the things which we need to ... (more)
category: Architecture | clicked: 1 | comment | | source: praveenbattula.blogspot.com
tags: Sharepoint
5
Shouts

SharePoint Performance Tuning – Part 1

published 943 days, 9 hours, 55 minutes ago posted by JudoJudo 944 days, 6 hours, 1 minute ago
Friday, October 22, 2010 1:23:36 AM GMT Thursday, October 21, 2010 5:17:40 AM GMT
I was recently looking for the SharePoint 2010 performance articles on Microsoft pages and established blogs, and found that most of them weren’t covering all the details. Some of them simply described MS SQL-based tips, , some were straight system related, and it was extremely hard to find useful SharePoint-based performance tips. I’ve decided to try to fix this hole and provide you all the SharePoint performance steps and details I know in one place .SharePoint Hardware Planning Before you even start ... (more)
category: Architecture | clicked: 0 | comment | | source: www.sharepointmonitor.com
tags: Performance, SharePoint Performance, Sharepoint
6
Shouts

SharePoint 2010 Developer Training Course

published 943 days, 9 hours, 55 minutes ago posted by gpeipmangpeipman 944 days, 12 hours, 18 minutes ago
Friday, October 22, 2010 1:23:36 AM GMT Wednesday, October 20, 2010 11:00:36 PM GMT
20 SharePoint 2010 training videos in Channe9. These videos are targeted to developers and they should teach you enough to get your first developments done on 2010 line of tools. (more)
category: Web Dev | clicked: 2 | comment | | source: channel9.msdn.com
tags: Development, Sharepoint
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/ 958 days, 14 hours, 54 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/ 958 days, 14 hours, 55 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/ 958 days, 14 hours, 56 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: 61 | 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/ 958 days, 14 hours, 59 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/ 958 days, 15 hours, 1 minute 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/ 958 days, 15 hours, 3 minutes 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/ 958 days, 15 hours, 7 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
6
Shouts

MOSS 2007 Architecture and Requests

published 959 days, 23 hours, 53 minutes ago posted by sonukapoorsonukapoor 960 days, 14 hours, 40 minutes ago
Tuesday, October 05, 2010 11:25:29 AM GMT Monday, October 04, 2010 8:39:13 PM GMT
This article focus on MOSS 2007 technology stack architecture and SharePoint request routing. The article also sheds light on difference between different versions of SharePoint, SharePoint data store, key players involved in handling a request and terminologies like Ghosted and Unghosted pages. (more)
category: Architecture | clicked: 0 | comment | | source: dotnetslackers.com
tags: ghosted images, MOSS, Sharepoint
3
Shouts

How to Manage Self Site Creation Service and un used sites in your farm : The CodeGain

posted by codegaincodegain 961 days, 2 hours, 16 minutes ago
Monday, October 04, 2010 9:03:14 AM GMT
I was implementing Site Creation governance practices, and i came out with the idea of this post (more)
category: Architecture | clicked: 0 | comment | | source: www.codegain.com
tags: SharePoint 2007, SharePoint 2010, Sharepoint
2
Shouts

Why do we need managed accounts in SharePoint 2010 : The CodeGain

posted by codegaincodegain 961 days, 2 hours, 17 minutes ago
Monday, October 04, 2010 9:01:53 AM GMT
SharePoint 2010 shipped with a new feature called "Managed Accounts". Managed accounts is a feature that allow sharepoint farm admins and system engineers to manage service accounts/Services created for the sharepoint 2010. (more)
category: Architecture | clicked: 0 | comment | | source: www.codegain.com
tags: SharePoint 2007, Sharepoint
4
Shouts

Security Advisory (Vulnerability in ASP.NET) and SharePoint : The CodeGain

posted by codegaincodegain 967 days, 9 hours, 58 minutes ago
Tuesday, September 28, 2010 1:21:07 AM GMT
We recently released a Microsoft Security Advisory about a security vulnerability in ASP.NET. This post explains the impact on SharePoint and documents a recommended workaround. (more)
category: Web Dev | clicked: 0 | comment | | source: www.codegain.com
tags: Sharepoint, ASP.NET
2
Shouts

ASP.NET Security Vulnerability & SharePoint

posted by dotnetfundadotnetfunda 972 days, 19 hours, 17 minutes ago
Wednesday, September 22, 2010 4:01:38 PM GMT
This post targets SharePoint vulnerability because of ASP.NET security threat. User can find probable threat and solution for the same. (more)
category: Web Dev | clicked: 0 | comment | | source: www.dotnetfunda.com
tags: Sharepoint
2
Shouts

Setup File Icons for all non Office files (Like PDF, mp3, mpeg, flv etc)

posted by dotnetfundadotnetfunda 974 days, 8 hours, 28 minutes ago
Tuesday, September 21, 2010 2:51:04 AM GMT
This post will help non developer IT professionals to add new File type icons in SharePoint like PDF which is not supported by SharePoint by default. (more)
category: Web Dev | clicked: 0 | comment | | source: www.dotnetfunda.com
tags: Sharepoint