Tuesday, August 21, 2007

Sydney SharePoint User Group August

This months Sydney SharePoint user group sees a double team from LivePoint with Brad Saide presenting on the Business Data Catalogue and Han Duong hosting a discussion on Customising SharePoint Themes.

Following on from this Jey from K2 will be showcasing their BPM Product K2 'blackpearl'.

For more information see http://sps.uniqueworld.net/Sydney/default.aspx

technorati tags:, , , , , , , ,

Blogged with Flock

Wednesday, August 15, 2007

Debugging in SharePoint

A recent project required us getting a good understanding of existing code and sorting out some bugs that we're occuring. In order to get a handle on what was occuring we had to setup debugging and add some expectation to the 'Unexpected Errors'!

The first step is to enable debugging in the web applications web.config by making the following changes;

<SafeMode MaxControls="200" CallStack="false" ...> <!-- Becomes -->
<SafeMode MaxControls="200" CallStack="true" ...>

<customErrors mode="On" /> <!-- Becomes -->
<customErrors mode="Off" />

<compilation batch="false" debug="false"> <!-- Becomes -->
<compilation batch="true" debug="true">

Kudos to Renaut Comte on this tip.

There is also a Killer post from Vince Rothwell with a whole bunch of tips for debugging SharePoint exceptions.

And of course, with features being the new black, there has been a feature created that you can simply install and activate on your server and see it surface in the Site Actions menu. "The feature provisions a simple page, which executes the System.Diagnostics.Debugger.Launch statement, causing an exception to be thrown and the debugger to be auto-attached." Very Cool!

Head on over to the SharePoint Team blog for more information on this;
http://blogs.msdn.com/sharepoint/archive/2007/04/10/debugger-feature-for-sharepoint.aspx

The feature is part of a bigger SharePoint 2007 Features pack available on CodePlex

technorati tags:, , ,

Blogged with Flock

Wednesday, August 01, 2007

Request a Hotfix web form

Im sure many of us have had to request a hotfix at some stage ;-) now its even easier than making a call to the product support line - you can request it using a web form!

https://support.microsoft.com/contactus2/emailcontact.aspx?scid=sw;en;1410&WS=hotfix

Simply provide a few details such as the country/region, KB article number and a hotfix will be emailed to the email address provided.


technorati tags:,

Blogged with Flock