Dave Hunter Profile    

Blog Title Thinking out aloud - Dave Hunter's Blog: Posts
Blog Description RSS feed for the Posts list.
Blog URL http://www.davehunter.co.uk/blog/
RSS Feed http://feeds.feedburner.com/ThinkingOutAloud-DaveHuntersBlogPosts
Validate Feed Validate this feed: feedvalidator.org or validator.w3.org
Feed Last Checked Jul 30, 2010 11:06:36 AM EST.
Realtime Update
Landed Here Oct 02, 2009
Location Oxford, United Kingdom
Posts: # / 1st / Latest 52 - Nov 04, 2007 - Apr 01, 2010
Total Hits 173
I’ve been Awarded a MVP for SharePoint
Dave Hunter
Body: I’m proud to announce that I have been awarded a Microsoft Most Valuable Professional (MVP) for my efforts in the community. “Congratulations! We are pleased to present you with the 2010 Microsoft® MVP Award! This award is given to exceptional technical community leaders who actively share their high quality, real world expertise with others. We appreciate your outstanding contributions in SharePoint Services technical communities during the past year” I hope to continue my efforts [read].
Posted: Thu, Apr 1st '10
SharePoint 2010 Training on Microsoft E-Learning
Dave Hunter
Body: I can’t believe I’ve only just came across this … The free SharePoint 2010 developer training on Microsoft E-Learning today.  Have a look at: Clinic 10277: What’s New in Microsoft SharePoint 2010 for Developers https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=160329&tab=overview Also one for IT Pros https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=161467&tab=overview Apparently the offer is only available for a limited time. En [read].
Posted: Mon, Mar 15th '10
SharePoint UK User Group - Thursday 27th August London Meeting
Dave Hunter
Body: I was planning to attend the SharePoint UK User Group on Thursday for the Best Practices in Gathering Requirements for SharePoint Projects.  The event had Dux speaking at the event. Important news, Dux can't make the event so its now going to be a virtual event instead of being held at Microsoft's offices in Victoria London.  Please see an update here http://suguk.org/forums/thread/20502.aspx. Category: SharePoint - General Published: 25/08/2009 17:56 [read].
Posted: Tue, Aug 25th '09
CAML Query that filters on the current user
Dave Hunter
Body: CAML Queries are troublesome at the best of times.  I find it best to use a tool or a tried and tested method like the one I use here Tip - Creating CAML Queries - Thinking out aloud - Dave Hunter's. When you create a view and you want to show only items that have been created by the current user you use the [Me] keyword.  For example: filter by "Author" equals [Me]. How can I do this using a CAML query? The [Me] keyword is represented in CAML by the following .  In the CAML query for [read].
Posted: Thu, Jul 23rd '09
Microsoft Ramp Up Free SharePoint Developer Training
Dave Hunter
Body: Microsoft Ramp Up http://msdn.microsoft.com/en-us/rampup/default.aspx has been about for a while now but not everyone knows about this training.  Microsoft Ramp Up offers free online community based learning to help you build up on your development skills.  There are many tracks which include: Move from ASP to ASP.NET Learn ASP.NET: for PHP Developers Web Development with ASP.NET Develop Windows Mobile 6 Applications SharePoint for Developers Part 1 SharePoint for Developers Part 2 Visu [read].
Posted: Wed, Jul 22nd '09
How To: Change a SharePoint Application Pool Programmatically
Dave Hunter
Body: Central Administration has a screen allow users to change the application pool identity, but doesn't allow you to change the application pool which the web application uses.  You can modify manually by opening IIS, changing the application pool and making changes to the metabase.xml.  But how do I make these changes programmatically? Theory An IIS Web Site in SharePoint is represented by the SPWebApplication class http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.administratio [read].
Posted: Tue, Jul 7th '09
SharePoint Forums Topping 100 Answers
Dave Hunter
Body: I haven't been very active on the blog for a while as I have been busy with work and active on the SharePoint Forums, particularly the SharePoint Developer Forum http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/threads.  It's rewarding to help people with their SharePoint issues.  Recently I got credited with answering 120 questions in 30 days, this isn't just a reply to the question, its to provide a resolution to their issue helping them solve their problem. My prof [read].
Posted: Mon, Jul 6th '09
Find out the SharePoint Internal Name for a Column or Site Column
Dave Hunter
Body: When you create a column on a list or site column in SharePoint through the user interface you enter the column name, type and any other properties.  The name is used for the internal name and display name.  The internal name is escaped to remove any special characters and spaces.  The table below displays the list of characters and their escaped version. Character Hex Code Escaped Version [space] 20 _X0020_ | 7C _X007C_ - 2D _X002D_ \ 5C _X005C_ ( 28 _X002 [read].
Posted: Thu, May 28th '09
Delving into Deploying SharePoint Artifacts with Features
Dave Hunter
Body: I've seen many posts on forums with features deploying site collection features scoped at the web level.  Admittedly there is confusing factors, articles freely use the term site for a site collection and site for a sub site.  I hope by the end of reading this article it will be more clear. The feature framework can deploy the following: Masterpages Page Layouts Stylesheets Images Documents WebPart Pages WebPart Definitions  List Definitions List Instances Content Types Site Columns Cu [read].
Posted: Fri, Apr 24th '09
SharePoint - Connecting MySites with the Portal
Dave Hunter
Body: With your typical intranet with MySites scenario you have two front-end web applications, one hosting your intranet and the other hosting your MySites.  These are two separate components.  MySites are a shared service, they are designed to be consumed by one or many web applications.  Out of the box they aren't linked to a web application hosting your intranet. When a user creates a MySite they may ask you "how do I get back to the intranet?".  You can do this by setting the Portal Con [read].
Posted: Fri, Apr 24th '09
SharePoint Event Receivers By Example - Email Validation
Dave Hunter
Body: A while ago I wrote the article Delving into SharePoint 2007 Event Receivers its a popular article but lacks something, which I believe are some real world examples people can see in action and relate to ... Introducing the next series of articles SharePoint Event Receivers By Example. One of the out of the box libraries in SharePoint is the contact list.  This holds contact information such as First Name, Last Name, Telephone, Email etc.  The email column is a standard single line of te [read].
Posted: Thu, Mar 12th '09
Creating a Tree View Control WebPart
Dave Hunter
Body: I had a requirement to create a tree view control to rollup document libraries into a single view.  I chose to use the System.Web.UI.WebControls.TreeView web control. Once you define the tree view control you add nodes, for example: TreeNode childNode = new TreeNode(file.Name, "", "~/_layouts/images/" + file.IconUrl, file.ServerRelativeUrl.ToString(), ""); treeView.ChildNodes.Add(childNode);   I wanted to get all document libraries for a current web, I used the SPWeb.GetListsOfType me [read].
Posted: Wed, Mar 11th '09
Display a page without any navigation
Dave Hunter
Body: It's a common requirement to want a page which is print friendly or a page which doesn't display any navigation.  I had a similar requirement for a tree view control to be displayed with scrollbars, at first you may not think these are related, but the way I designed it to cater for the scrollbars made it similar.  I split this requirement into two parts: 1. The tree view control and 2. Using the Page Viewer webpart and displaying a page without navigation, header and footer (just the co [read].
Posted: Wed, Mar 11th '09
Navigation only showing 50 sites
Dave Hunter
Body: You may of come across this behaviour with navigation or the Table of Contents WebPart.  These webparts use a Portal Site Map Provider for their datasource.  By default these have limits for the dynamic and static navigation behaviour.  You can override these by specifying StaticChildLimit="" DynamicChildLimit="" 0 represents no limit, whereas 100 states there can be 100 children. For example: The web.config is usually found in c:\inetpub\wwwroot\wss\VirtualDirectories\sitename\.  [read].
Posted: Tue, Mar 10th '09
Adding a file to a document library with meta data
Dave Hunter
Body: There are many ways to upload a file using the API but finding which is the correct method takes time and effort.  You first start looking for a collection to add your SPFile to.  For example:  You can use the SPWeb.Files or Folder.Files.  The SDK use the latter if (oWebsite.GetFolder("Shared Documents").Exists) { SPFolder oFolder = oWebsite.GetFolder("Shared Documents"); oFolder.Files.Add(strFilename, binFile, true); } from http://msdn.microsoft.com/en-us/library/microsoft.sh [read].
Posted: Wed, Feb 4th '09
Re-published my MOSS Content Types Viewer on CodePlex
Dave Hunter
Body: I've re-published my Content Types Viewer on CodePlex.  This release includes full source code (currently it's POC standard, I will update soon).  http://www.codeplex.com/MOSS2K7CTypesViewer   For more information please see: Using the Content Types Viewer http://www.davehunter.co.uk/Blog/Lists/Posts/Post.aspx?ID=16 Creating Content Types using the Content Types Viewer http://www.davehunter.co.uk/Blog/Lists/Posts/Post.aspx?ID=20 Andrew Connell has a great extension for generating sit [read].
Posted: Sun, Oct 26th '08
Visio Shapes for SharePoint
Dave Hunter
Body: I was looking to expand my toolbox for designing SharePoint solutions, I've found the following Visio Shapes, enjoy! Shapes for wireframes Source Description TamTam - Ferry Shapes for wireframing page level functionality. Download it here http://www.den-dopper.com/2008/10/14/visio-template-and-stencil-for-designing-sharepoint-moss-2007-portals-and-sites/ Nick Finck This is a generic set of IA shapes but still relevant. Please see http://nickfinck.com/stencils/   Shapes [read].
Posted: Sat, Oct 25th '08
SharePoint vNext – Rumours, Speculation and Confirmed Features
Dave Hunter
Body: The table below lists the known facts about what we can expect in SharePoint vNext and their probability of happening or making the version. Feature Summary Probability Source(s) 64 bit only SharePoint vNext will be a 64 bit version only. CONFIRMED TechNet Silverlight Silverlight 2.0 webparts or UI will be present. MOST PROBABLY Speculation Super-Lists SQL tables-like behaviour for SharePoint lists PROBABLY Bill Gates Groove Integration If the user has Groo [read].
Posted: Fri, Oct 24th '08
Use InfoPath to author XML schemas (XSD)
Dave Hunter
Body: From guowu It is very easy to use InfoPath as an XML schema editor: Choose Design a form… from the File Menu in InfoPath. In the Design a new form task pane, select New Blank Form. Note, if you want to derive a schema from existing XML document or data connection, choose one of the New from… options and skip to step 4) below. On the Design Tasks pane, click on Data Source to show the Data Source Pane. Right click on the myFields element, you will see a shortcut menu. Starting t [read].
Posted: Thu, Jun 12th '08
K2 BlackPearl - Update Design Templates
Dave Hunter
Body: When you upgrade your K2 environment to the latest release (for example 803), you can update a process developed in a previous version by updating the design templates. You can do this by: Please see the note below before continuing. Right clicking on the design surface Select "Update Design Templates" (pictured below). You can then select the top node to update everything or specify particular activities etc to update and then click Finish Note: What it doesn't tell you is that t [read].
Posted: Fri, Jun 6th '08
SharePoint 2007 Escaped Column Names
Dave Hunter
Body: Most developers who have experience of SharePoint will know that when naming columns using the user interface will result in the actual column name will be an escaped version of what the user entered as the column name. The most common replacement is a space is replaced with "_x0020_". For example: A user enters "Published Date". The display name will remain as "Published Date" but the underlying name of the column will be "Published_x0020_Date". The table below lists some of the commonl [read].
Posted: Wed, Jun 4th '08
Powershell SharePoint 2007 Backup Script
Dave Hunter
Body: I’m still not bought on the whole Powershell and SharePoint idea but I’m getting there.  I found this example script that cleans up the old backup files and then performs a full farm backup of MOSS. When performing backups of SharePoint using Central Administration or STSADM, backup files are created in a specified UNC path.  If you don’t keep an eye on this location and delete/archive old backups this can grow out of control.  Cleaning up backup files isn’t straightforward eit [read].
Posted: Fri, May 30th '08
SharePoint 2007 Delving into Articles
Dave Hunter
Body: You may have read some of my articles in the series of "Delving into".  These articles provide an indepth view on an area in SharePoint 2007.   Articles already in this series: Delving into SharePoint 2007 Event Receivers Delving into SharePoint 2007 Lists and their Features Delving into SharePoint 2007 Personalisation Articles Coming Soon Delving into SharePoint 2007 Features Delving into SharePoint 2007 Site Columns Delving into SharePoint 2007 Content Types Category: SharePoint - G [read].
Posted: Tue, Apr 15th '08
Delving into SharePoint 2007 Personalisation
Dave Hunter
Body: In SharePoint there are two types of modifications to sites; customisation and personalisation.  Customisation relates to changes for all users, this view of SharePoint is the "shared view".  The Shared View is a standard view of the page available to everyone.  Personalisation relates to a change made by an individual user on a per user basis, this view is the "personal view". Enabling Personalised Views Before you can start personalising pages you will need to enabling personalisa [read].
Posted: Wed, Apr 2nd '08
I've enabled comments
Dave Hunter
Body: Just a quick note to let you know that I've enabled comments on my blog.  I'm looking forward to receiving your feedback.   If you are having issues please post on the UK SharePoint User Group http://suguk.org/forums/, of which I am an active member of a good community of users (including some MVPs).  Look out for dhunter on the user group. Category: Misc Published: 02/04/2008 13:05 [read].
Posted: Wed, Apr 2nd '08
Backup Script for K2 BlackPearl Databases
Dave Hunter
Body: It's important to backup K2's databases before you deploy any new workflows.  At the moment there isn't a tool to remove K2 BlackPearl Workflow Process definitions deployed to a server.   If you have a backup of the databases then you can restore to that point in time.  K2 BlackPearl has 14 databases so it's easier to run a script to perform the backup rather than using Microsoft SQL Server Management Studio.   Here's my backup script ....   /* declare the variables */ declare @dbna [read].
Posted: Fri, Mar 14th '08
Design Considerations for using the SharePoint UserProfileManager
Dave Hunter
Body: I'm writing this post based on my experience with the UserProfileManager in SharePoint 2007.  I've seen many posts about people having issues using the UserProfileManager for normal users in SharePoint.   I will start with showing you how to access the user profiles using the UserProfileManager.  There are three ways to loop through the User Profiles, which are:   1.  For Each // get the server context Microsoft.Office.Server.ServerContext ctx = Microsoft.Office.Server.ServerContex [read].
Posted: Thu, Mar 13th '08
SharePoint and Silverlight
Dave Hunter
Body: Some interesting articles and source code have been release recently regarding SharePoint and Silverlight.   Silverlight BluePrint for SharePoint   At the time of writing this post this site contains 6 samples for using Silverlight with SharePoint, these include: Hello Silverlight Web Parts and the SilverlightPart Silverlight Navigation Controls Silverlight Social Networking Web Part Visual How-To center with Silverlight Picture Viewer sample Silverlight Custom Field Types All samples [read].
Posted: Wed, Mar 12th '08
K2 BlackPearl Tip - Defining Rules
Dave Hunter
Body: When defining the rule on an outcome and comparing the text of a Workflow Field, K2 converts "TRUE" to "True".   Let me just take a step back to explain the process.  I have several activities within my workflow process.  One of them I want it to run several times one after the other (like a while loop).  I define an activity with some child events etc and a outcome pointing to itself.  In the outcome I add a rule ... like the screenshot below.     So when "Outcome" field equals [read].
Posted: Fri, Feb 29th '08
Changing the URL (host header) in SharePoint 2007
Dave Hunter
Body: I have a SharePoint portal with the host header "http://intranet", I want to change this to "http://intranet.mycompany.com".     What's the process?   After some investigation, I changed it using the steps below:   1. Open Central Administration. 2. Browse to "Operations" and then to "Alternate Access Mappings".   3. Click on the dropdown displaying "Show All", select "Change Alternate Access Mapping Collection".   4. Choose the URL you wish to modify. 5. Select "Edit Public U [read].
Posted: Fri, Feb 29th '08
Branding SharePoint Error Pages
Dave Hunter
Body: Before Christmas I wrote an article about consistent branding.  This used the AlternateCssUrl property of a SPWeb.  You can also set this using the administration pages or via code using a SPFeatureReceiver.     Using this technique applies branding to SharePoint front end and back end pages, but didn't affect SharePoint's error page.  The error page uses Simple.master.  Simple.master can be located in C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE [read].
Posted: Thu, Feb 21st '08
Displaying ASP.NET Error Pages
Dave Hunter
Body: When debugging errors with SharePoint 2007, you can have a hard time finding out what the actual error message is.  SharePoint displays the “An unexpected error has occurred”, but this isn't helpful.   You can wade through the SharePoint log files and find the actual error message.  This is time consuming and maybe tricky due to the amount of information written to the log.   You can modify the web.config so that you get the standard ASP.NET helpful error message.  You will need [read].
Posted: Wed, Feb 20th '08
K2 BlackPearl - Enabling Logging
Dave Hunter
Body: K2 BlackPearl can be run as a service or a console application.  The console application is best for developers while interrogating a process.  The default for logging is set to Info.  This should be increased so that information can be displayed in the console window.     1. The configuration for logging is stored in HostServerLogging.config which is located in C:\Program Files\K2 blackpearl\Host Server\Bin\.  Remember to replace C:\ with the install drive of BlackPearl.   2. Ope [read].
Posted: Thu, Feb 7th '08
SharePoint 2007 Versions
Dave Hunter
Body: Before Christmas one of my clients had a major disaster with their SharePoint environment.  Through implementing a good disaster plan we had backups of the databases and SharePoint farm.  Unfortunately the server that went down was hosting the Central Administration.  We decided to rebuild the environment and restore the content (sites).   When we restored the content database, we received an error about cannot install a newer version of SharePoint.  After some googling and invest [read].
Posted: Tue, Jan 29th '08
K2 BlackPearl - Unable to connect to the Workspace
Dave Hunter
Body: I've been working with K2 BlackPearl since August last year.  This is the first of many (hopefully) posts on BlackPearl.   After you install K2 BlackPearl and open the workspace you may see the following error message "Unable to connect to server name on port 5252 No connection could be made because the target machine actively refused it."     To resolve this issue you need to start the K2 windows service.  Starting the K2 server console also fixes the issues but is designed to be u [read].
Posted: Tue, Jan 29th '08
Content Deployment Walkthrough
Dave Hunter
Body: One of the new features of SharePoint 2007 is content deployment.  In MCMS 2002 you needed to export a SDO (Solution Deployment Object) that contained the Postings, Templates and Resources you wished to deploy to another environment.   Key points: Content Deployment keeps the same GUIDs for the objects so you cannot deploy to the same web application (due to the uniqueness of the objects in the same database) unless the site has its own content database.  For more information please [read].
Posted: Thu, Jan 24th '08
Passed 070-541 and 070-630 exams
Dave Hunter
Body: I was busy taking exams yesterday.  I sat the 070-541 WSS Application Development and the 070-630 MOSS Configuration.  I passed them both with high scores!   I revised for both exams using Microsoft e-learning collection courses http://www.microsoft.com/learning/elearning.mspx and MPress books   Inside Microsoft Windows Sharepoint Services 3.0 by T. Pattison and D. Larson.   Inside Microsoft Office Sharepoint Server 2007 by P. Tissegham   The WSS book by Ted Pattison is written ver [read].
Posted: Thu, Jan 24th '08
Delving into SharePoint 2007 Event Receivers
Dave Hunter
Body:   What are they?   SharePoint 2007 Event Receivers are a type of feature which listens for certain events on a site, list or list item.  Event Receivers are the MOSS version of document event handlers (also known as Event Sink) in SharePoint V2 technologies (WSS and SPS).  Previously the document event handlers were only available for document libaries.  Event receivers are now available for any type of list.    What can they be used for?   SharePoint 2007 Event Receivers add b [read].
Posted: Tue, Jan 8th '08
Delving into SharePoint 2007 Lists and their Features
Dave Hunter
Body: In simplest terms, as most of you know a list is defined by a list schema which is made available in SharePoint by a feature.  Important attributes of a list type definition are the Type ID and GUID. The Type ID assigns a number to identify that the list has a custom definition. The GUID of the list feature uniquely identifies the feature within the SharePoint farm. The table shows the lists available in MOSS (some also available in WSS), their Type IDs and GUIDs.   Type I [read].
Posted: Sat, Jan 5th '08
DCOM and COM class factory error messages in the event log
Dave Hunter
Body: After giving my SharePoint server a reboot I started to receive DCOM errors in the system event log and Office SharePoint Server and Windows SharePoint Services 3 errors in the application event log.   The error details were as follows: DCOM errors ---------------- Event Type: Error Event Source: DCOM Event Category: None Event ID: 10016 Date:  18/12/2007 Time:  17:01:50 User:  MOSS\MOSSSvc Computer: WIN2K3BASE001 Description: The application-specific permission settings [read].
Posted: Thu, Dec 20th '07
Robots.txt and MOSS
Dave Hunter
Body: You learn something new every day.  I knew that a robots.txt file lived in the root of a web site and provided the crawler or bot with instructions to index or exclude certain files or paths.  I didn't know that SPS 2003 and MOSS supports and fully respects the instructions in the robots.txt.   Microsoft have an article HOW TO article that covers this.  How to customize SharePoint Portal Server 2003 or Office SharePoint Server 2007 by using IFilters, noise word files, and thesaurus [read].
Posted: Mon, Dec 3rd '07
Preview into WSS 3.0 SP1 and SharePoint Server 2007 SP1
Dave Hunter
Body: The Microsoft SharePoint team have released some details about the much awaited release of Service Pack 1 for MOSS and WSS V3.  For more information please see: http://blogs.msdn.com/sharepoint/archive/2007/11/29/preview-into-wss-3-0-sp1-and-sharepoint-server-2007-sp1.aspx.   Quick summary: Windows 2008 Support and Compatibility. Support and Compatibility for ASP.NET for AJAX (including AJAX Control Toolkit for ASP.NET and AJAX 1.0 Extenstions). New STSADM commands Merge content Ren [read].
Posted: Sun, Dec 2nd '07
Tip - Creating CAML Queries
Dave Hunter
Body: CAML queries are used with SPQuery and SPSiteDataQuery.  This is a faster and more efficient way of retrieving items based on known criteria rather than using for each on the SPListItemsCollection and checking for the criteria.   The problem is CAML query syntax / schema is complicated.  The CAML Query schema is here http://msdn2.microsoft.com/en-us/library/ms467521.aspx.  It basically consists of:             Tip - Constructing a query   Lists are also defined with CAM [read].
Posted: Tue, Nov 27th '07
SharePoint UK User Group
Dave Hunter
Body: I frequently view and post information to the UK SharePoint User Group http://suguk.org/.   The community is great, full of SharePoint experts including some MVPs.   View the forums here http://suguk.org/forums/default.aspx and look out for meetings near you (if your UK based) http://suguk.org/forums/7/ShowForum.aspx.   Look out for any posts by dhunter :) Category: SharePoint - General Published: 24/11/2007 16:30 [read].
Posted: Sat, Nov 24th '07
Publishing InfoPath forms to SharePoint 2007
Dave Hunter
Body: Whilst publishing an InfoPath form to a test environment I received the following error message:   "The followin URL is not valid: http://portal/sites/hr".   After spending some time troubleshooting the issue, (checking permissions of the current user deploying the InfoPath form and checking the SharePoint log files) there seems to be two ways in which to resolve this issue. If you are publishing to a child site collection make sure there is a site collection at the root level.  Fo [read].
Posted: Fri, Nov 23rd '07
Changing the boundaries
Dave Hunter
Body: Site Collections by default are stored in the content database for the web application.  The diagram below illustrates this.     Using the administration user interface you cannot create a new site collection with its own content database.  This may lead you to create many web applications for your SharePoint site collections so that each one has its own database that can be backed up using SQL Server database backups and SharePoint backup and restore.   Restoring the backups may be [read].
Posted: Fri, Nov 23rd '07
Consistent branding in SharePoint
Dave Hunter
Body: Recently I've been working on applying Governance to SharePoint.  Microsoft have some great resources out there for planning and understanding what Governance is and how to apply it.   Governance Information http://technet.microsoft.com/en-us/office/sharepointserver/bb507202.aspx   Sample Governance Plan http://go.microsoft.com/fwlink/?linkid=92333&clcid=0x409   Governance Checklist http://go.microsoft.com/fwlink/?linkid=91896&clcid=0x409   One of the areas to Governance is a [read].
Posted: Fri, Nov 23rd '07
Confusing API object names
Dave Hunter
Body: When programming against SharePoint's API you may have some confusion to which class names you should use, for example: SPWeb is a site SPSite is a site collection SPSite.RootWeb is the top level site of a site collection SPVirtualServer is a web application These names relate to previous versions of SharePoint (mainly STS version 1). Category: SharePoint - Development Published: 18/11/2007 19:59 [read].
Posted: Sun, Nov 18th '07
Technorati Charts - SharePoint 2007
Dave Hunter
Body: Technorati has a charting feature that allows you to see the volume of blog posts during a period of time graphically. Here's a few SharePoint 2007 related charts .... Posts that contain SharePoint 2007 per day for the last 30 days. Posts that contain SharePoint 2007 ECM per day for the last 30 days. Posts that contain SharePoint 2007 Search per day for the last 30 days. Posts that contain SharePoint 2007 Business Intelligence per day for the last 30 days. Posts that contain Sha [read].
Posted: Sun, Nov 4th '07
SharePoint 2007 Hotfix KB 936867
Dave Hunter
Body: I recently had problems when the security inheritance was broken for a document library on a WSS site for a MOSS 2007 installation. After raising a support request Microsoft issued a hot fix. The hotfix package also addresses KB 934577, 935958, 937038. 934577 - Not public 936867 - http://support.microsoft.com/kb/936867 935958 - http://support.microsoft.com/kb/935958 937038 - http://support.microsoft.com/kb/937038 I received an email from "ISA IT Department" on this post http://forum [read].
Posted: Sun, Nov 4th '07
SharePoint 2007 Forms Authentication with Sql Server
Dave Hunter
Body: Dan Attis has two great articles about configuring forms authentication against SQL Server with MOSS. Part one - Configuring Forms Authentication with SharePoint Part two - Configuring Forms Authentication with MySites Points to note: If you cant resolve your SQL users in the Central Administration you need to grant database access to the identity (user) that runs under the application pool account and make sure you have added Membership provider and Role Manager to the central admini [read].
Posted: Sun, Nov 4th '07
SharePoint 2007 Maximum Limitations
Dave Hunter
Body: The following is a list of names and other parameters with the maximum allowable size of each Entity Max Permissible Size Site Name 128 characters Site URL 255 characters Display name 128 characters Connections diving 384 characters Email address 128 characters Version numbers 64 characters Virtual Server Friendly Name 64 characters SQL Database Name 123 characters If during your course of using the product, you inadvertently cross these limits, then you [read].
Posted: Sun, Nov 4th '07



Blogs
S.S. Ahmed
Eric Alexander
Reza Alirezaei
Owen Allen
Paul Andrew
Axceler Blog
Tariq Ayad
William Baer
Todd Baginski
Jose Barreto
Alexander Bautz
Becky Bertram
Urs Bertschy
Simon Binaryjam
Darrin Bishop
Chrissy Blanco
Todd Bleeker
Michael Blumenthal
Robert Bogue
Christian Buckley
Gary Bushey
Sean Cantellay
Joe Capka
Mauro Cardarelli
Todd Carter
Eric Charran
Liam Cleary
Communardo Techblog
Renaud Comte
Andrew Connell
William Cornwill
Matthew Cosier
Penny Coventry
Paul Culmsee
Stephen Cummins
Marek Czarzbon
Jeff Dalton
Gabriele Del Giovine
Tim Dobrinski
Stacy Draper
Zlatan Dzinic
Erika Ehrli
Enterprise Search
eusp2010
Christopher Even
Lars Fastrup
Mike Fitzmaurice
Torsten Flegel
Rob Foster
Bob Fox
Toni Frankola
Bjorn Furuknap
Amar Galla
Paul Galvin
Mike Gannotti
Rob Garrett
Sebastian Gerling
Get the Point
Stefan Gossner
Brian Gough
Michael Greth
Matthias Groenert
Daniele Guarneri
Portals & Integration
Mike Hamilton
Spencer Harbar
Richard Harbridge
Marcus Hass
René Hézser
Sascha Henning
Susan Henry
Mike Herrity
Tim Heuer
Ben Hickman
Ed Hild
Thomas Hildebrandt
Scot Hillier
Kevin Hoffman
John Holiday
Greg Hughes
Christophe Humbert
Dave Hunter
Randall Isenhour
Becky Isserman
Barry Jinks
Chris Johnson
Kit Kai
Mattias Karlsson
Paul Keijzers
George Khalil
Noorez Khamis
Todd Klindt
Steffen Krause
Westin Kriebel
Larry Kuhn
Chandima Kulathilake
Andre Lage
Gary Lapointe
Daniel Larson
Eric Legault
Dan Lewis
Paul Liebrand
Bryant Likes
David Lim
Locatech
Angus Logan
Serge Luca
Gregory MacBeth
Igor Macori
Ricardo Magalh
Sahil Malik
Giuseppe Marchi
Waldek Mastykarz
Jean-Francois Mathieu
Andrew May
Ali Mazaheri
Matthew McDermott
Daniel McPherson
Jason Medero
Oscar Medina
Alexander Meijers
Robin Meure
Ryan Miller
Bob Mixon
Agnes Molnar
Adam Morgan
Ian Morish
Mart Muller
Amanda Murphy
Arno Nel
Mads Nissen
Chris O'Brien
Michael O'Donovan
Joel Oleson
Henry Ong
Doug Ortiz
Mike Oryszak
Paul Papanek Stork
Joris Peolmans
Shane Perran
Pieter Pieter
Steve Pietrek
Maurice Prather
Stuart Preston
Romeo Pruno
Chris Quick
Shereen Qumsieh
Dux Raymond
Tom Resing
Keith Richie
Namwar Rizvi
Tom Rizzo
Eli Robillard
Lance Robinson
Patrick Rogers
Eugene Rosenfeld
Zach Rosenfield
Ishai Sagi
Paul Schaeflein
Arnt Schoning
Brendon Schwartz
Carlos Segura Sanz
Philippe Sentenac
Arpan Shah
Itay Shakury
End User SharePoint
To The SharePoint
SharePoint and Tech Blog
SharePoint Blues
Sharepoint Design Team
Sharepoint Developer
SharePoint Magazine
SharePoint Product Team
Sharepoint Solutions
SharePointHosting Blog
Steve Sheppard
Eric Shupps
Bill Simser
Scott Singleton
Patrick Sledz
Heather Solomon
Thomas Sondergaard
Clare Stone
Nick Swan
Marwan Tarek
Jeremy Thake
Jan Tielen
Tools for Collaboration
Torsten Hufsky
UK SharePoint Team
Understanding SharePoint
Dan Usher
Serge van den Oever
Cornelius van Dyk
Xavier Vanneste
Geoff Varosky
Pierre Vivier-Merle
Natalya Voskresenskaya
JD Wade
Kris Wagner
Mike Walsh
Doug Ware
Michael Watson
Bart Wessels
Phil Wicklund
Wictor Wilen
Ivan Wilson
Woody Windischman
Daniel Winter
Andrew Woodward
Shane Young
Mohamed Zaki
Tobias Zimmer


SharePoint Resources


Inside the Index and Search Engines: Microsoft Office SharePoint Server 2007 (PRO-Developer) by Patrick Tisseghem


Advanced Microsoft Content Management Server MCMS: Working with the Publishing API, Placeholders, Search, Web Services, RSS, and Sharepoint Integration by Lim Mei Ying


Professional Microsoft Search: SharePoint 2007 and Search Server 2008 (Wrox Professional Guides) by Tom Rizzo


Google Sites & Chrome For Dummies (For Dummies (Computer/Tech)) by Ryan Teeter


SharePoint 2007 User's Guide: Learning Microsoft's Collaboration and Productivity Platform by Seth Bates


Microsoft Office SharePoint Server 2007 Best Practices by Ben Curry


Microsoft® Office SharePoint® Designer 2007 Step by Step by Penelope Coventry


Essential SharePoint 2007: A Practical Guide for Users, Administrators and Developers by Jeff Webb


Professional Microsoft Office SharePoint Designer 2007 (Wrox Programmer to Programmer) by Woodrow W. Windischman


Beginning SharePoint 2007: Building Team Solutions with MOSS 2007 (Programmer to Programmer) by Amanda Murphy


Microsoft® Windows® SharePoint® Services 3.0 Step by Step (Step By Step (Microsoft)) by Olga Londer


Microsoft SharePoint 2007 Unleashed by Michael Noel


Microsoft SharePoint 2007 For Dummies (For Dummies (Computer/Tech)) by Vanessa L. Williams


The SharePoint Shepherd's Guide for End Users by Robert Bogue


The Microsoft SharePoint Step by Step Kit: Microsoft Windows SharePoint Services 3.0 Step by Step and Microsoft Office SharePoint Designer 2007 (Bpg-Other) by Olga Londer


SharePoint for Project Management: How to Create a Project Management Information System (PMIS) with SharePoint by Dux Sy


Beginning SharePoint 2007 Administration: Windows SharePoint Services 3.0 and Microsoft Office SharePoint Server 2007 by Göran Husman


Professional SharePoint 2007 Development (Programmer to Programmer) by John Holliday


Inside Microsoft Windows SharePoint Services 3.0 (Pro Developer) by Ted Pattison; Daniel Larson


Microsoft® Office SharePoint® Server 2007 Administrator's Companion by Bill English


Professional SharePoint 2007 Design (Wrox Professional Guides) by Jacob J. Sanford


Inside Microsoft Office SharePoint Server 2007 by P. Tisseghem


Real World SharePoint 2007: Indispensable Experiences From 16 MOSS and WSS MVPs (Programmer to Programmer) by Robert Bogue


Mastering Windows SharePoint Services 3.0 by C. A. Callahan


Pro SharePoint Solution Development: Combining .NET, SharePoint and Office 2007 (Expert's Voice in Sharepoint) by Ed Hild


Seamless Teamwork: Using Microsoft® SharePoint® Technologies to Collaborate, Innovate, and Drive Business in New Ways (BP-Other) by Michael Sampson


Professional SharePoint 2007 Web Content Management Development: Building Publishing Sites with Office SharePoint Server 2007 (Wrox Programmer to Programmer) by Andrew Connell


Building Web Applications with Microsoft® Office SharePoint® Designer 2007 Step by Step (Step By Step (Microsoft)) by John Jansen


Microsoft Office SharePoint Designer 2007 Bible by Vikram Kartik


SharePoint 2007: The Definitive Guide by James Pyles


Microsoft SharePoint 2003 For Dummies (For Dummies (Computer/Tech)) by Vanessa L. Williams


Office and SharePoint 2007 User's Guide: Integrating SharePoint with Excel, Outlook, Access and Word (Expert's Voice) by Michael Antonovich


Building Content Type Solutions in SharePoint 2007 by David Gerhardt


Microsoft Windows SharePoint Services Step by Step (Step By Step (Microsoft)) by Olga Londer


MCTS: Microsoft Office SharePoint Server 2007 Configuration Study Guide: Exam 70-630 by James Pyles


Inside SharePoint Administration by Steve Caravajal


Sams Teach Yourself Microsoft SharePoint 2003 in 10 Minutes by Colin Spence


Microsoft Windows SharePoint Services 3.0 Quick Source Guide by Quick Source


Microsoft SharePoint Products and Technologies Administrator's Pocket Consultant by Ben Curry


SharePoint 2007 Development Recipes: A Problem-Solution Approach (Expert's Voice in Sharepoint) by Mark Gerow


Essential SharePoint 2007 by Scott Jamison


Professional Microsoft SharePoint 2007 Workflow Programming by Dr. Shahram Khosravi





About - Blog Submission - FAQ