<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Share IT!  Rodney Langley&#039;s SharePoint Weblog</title>
	<atom:link href="http://vspug.com/rlangley/feed/" rel="self" type="application/rss+xml" />
	<link>http://vspug.com/rlangley</link>
	<description>Just another VSPUG - Virtual SharePoint User Group weblog</description>
	<lastBuildDate>Thu, 18 Feb 2010 22:30:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Passed 70-630 and 70-631</title>
		<link>http://vspug.com/rlangley/2009/04/21/passed-70-630-and-70-631/</link>
		<comments>http://vspug.com/rlangley/2009/04/21/passed-70-630-and-70-631/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 13:31:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Easy as pie   Got&#160; a 1000 on one and 973 on the other..
Now I have all 4 SharePoint certs, if only I could afford the MCM!  
]]></description>
			<content:encoded><![CDATA[<p>Easy as pie <img src='http://vspug.com/rlangley/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Got&nbsp; a 1000 on one and 973 on the other..</p>
<p>Now I have all 4 SharePoint certs, if only I could afford the MCM! <img src='http://vspug.com/rlangley/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2009/04/21/passed-70-630-and-70-631/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Passed 70-541 and 70-542!!</title>
		<link>http://vspug.com/rlangley/2008/06/03/passed-70-541-and-70-542/</link>
		<comments>http://vspug.com/rlangley/2008/06/03/passed-70-541-and-70-542/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 17:55:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hey all,
Today I took the 70-541 and 70-542 exams. WSS App Development and MOSS 2007 App Development. 55 questions each.&#160; They weren&#39;t too bad. I took the WSS in VB (which was tougher, I&#39;m a C# guy!) and MOSS in C#. Got a 918 on the WSS and 948 on the MOSS. Each took around [...]]]></description>
			<content:encoded><![CDATA[<p>Hey all,</p>
<p>Today I took the 70-541 and 70-542 exams. WSS App Development and MOSS 2007 App Development. 55 questions each.&nbsp; They weren&#39;t too bad. I took the WSS in VB (which was tougher, I&#39;m a C# guy!) and MOSS in C#. Got a 918 on the WSS and 948 on the MOSS. Each took around 30 mins. Make sure you study up on the object model, XSLT, and the BDC before you take them.</p>
<p>&nbsp;</p>
<p>Next up, the admin tests. Hopefully, I can get to those pretty quickly!</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2008/06/03/passed-70-541-and-70-542/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding subfolders programmatically when a new folder is created</title>
		<link>http://vspug.com/rlangley/2008/05/16/adding-subfolders-programmatically-when-a-new-folder-is-created/</link>
		<comments>http://vspug.com/rlangley/2008/05/16/adding-subfolders-programmatically-when-a-new-folder-is-created/#comments</comments>
		<pubDate>Fri, 16 May 2008 22:22:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[add folders]]></category>
		<category><![CDATA[Event Handler]]></category>
		<category><![CDATA[MOSS]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[WSS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I was recently presented with the task of allowing subfolders to be created automatically whenever a new folder is added to a document library. I had my own ideas on how to go about this, and did some searching on the net to confirm, and found there were a couple of different snippets suggesting how [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently presented with the task of allowing subfolders to be created automatically whenever a new folder is added to a document library. I had my own ideas on how to go about this, and did some searching on the net to confirm, and found there were a couple of different snippets suggesting how to do it. Trouble is, in my instance, I needed an event handler that would create additional subfolders to the folder that was being created, at the time of creation. So I fooled around with it a bit, an voila! Here&#39;s what I came up with:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPSite site = web.Site;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPListItem listItem = properties.ListItem;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPList list = listItem.ParentList;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPDocumentLibrary docLib = (SPDocumentLibrary)list;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (properties.ListItem.ContentType.Name == &quot;Folder&quot; &amp;&amp; properties.ListItem.Folder.ParentFolder.ToString() == docLib.RootFolder.ToString())<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; String url = listItem.ParentList.RootFolder.ServerRelativeUrl.ToString();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPFolder curFolder = docLib.RootFolder.SubFolders[listItem.Name];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ////Create subfolders: <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPFolderCollection folders = web.GetFolder(url).SubFolders;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string folderURL = (site.Url+&quot;/&quot;+curFolder.ToString());<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPListItem newFolder = docLib.Items.Add(folderURL, SPFileSystemObjectType.Folder, &quot;Second Level 1&quot;);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPListItem newFolder2 = docLib.Items.Add(folderURL, SPFileSystemObjectType.Folder, &quot;Second Level 2&quot;);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; newFolder.Update();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; newFolder2.Update();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listItem.Update();</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>Granted, this may not be the most efficient code for the purpose intended, but it DOES work. Feel free to comment with anything you might suggest that I should change, and why you feel that way.</p>
<p>Hope this helps!</p>
<p>Rodney</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2008/05/16/adding-subfolders-programmatically-when-a-new-folder-is-created/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Update SPLIst Items with data from User Profiles</title>
		<link>http://vspug.com/rlangley/2008/04/24/update-splist-items-with-data-from-user-profiles/</link>
		<comments>http://vspug.com/rlangley/2008/04/24/update-splist-items-with-data-from-user-profiles/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 20:07:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Greetings! 
I know it&#39;s been a while since I&#39;ve posted, but I&#39;ve been saving up!  I recently repsonded to a post by a user on the SharePoint University message boards in regards to updating a SharePoint list with information in a users profile via an ItemAdded event handler. I hope someone can get some [...]]]></description>
			<content:encoded><![CDATA[<p>Greetings! </p>
<p>I know it&#39;s been a while since I&#39;ve posted, but I&#39;ve been saving up! <img src="/emoticons/emotion-19.gif" alt="Party!!!" /> I recently repsonded to a post by a user on the SharePoint University message boards in regards to updating a SharePoint list with information in a users profile via an ItemAdded event handler. I hope someone can get some use from this code. I found it very educating and entertaining to get it to work properly.</p>
<p>First, let&#39;s start with a list of available properties (by default) in a MOSS user profile:</p>
<p>UserProfile_GUID<br />SID<br />ADGuid<br />AccountName<br />FirstName<br />LastName<br />PreferredName<br />WorkPhone<br />Office<br />Department<br />Title<br />Manager<br />AboutMe<br />PersonalSpace<br />PictureURL<br />UserName<br />QuickLinks<br />WebSite<br />PublicSiteRedirect<br />SPS-Dotted-line<br />SPS-Peers<br />SPS-Responsibility<br />SPS-Skills<br />SPS-PastProjects<br />SPS-Interests<br />SPS-School<br />SPS-SipAddress<br />SPS-Birthday<br />SPS-MySiteUpgrade<br />SPS-DontSuggestList<br />SPS-ProxyAddresses<br />SPS-HireDate<br />SPS-LastColleagueAdded<br />SPS-OWAUrl<br />SPS-ResourceSID<br />SPS-ResourceAccountName<br />SPS-MasterAccountName<br />Assistant<br />WorkEmail<br />CellPhone<br />Fax<br />HomePhone</p>
<p>Of course, these can be added to with custom entries, but those are the defaults. Next, we look at how to get at these bad boys:</p>
<p>First, you have to reference Microsoft.Office.Server.UserProfiles and add the Microsoft.Office.Server dll to your project, as well as the standard stuff.</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; using (SPWeb web = properties.OpenWeb())<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Get the current site, list item being added, current user and context</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPSite site = web.Site;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPListItem listItem = properties.ListItem;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SPUser user = web.CurrentUser;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ServerContext Context = ServerContext.GetContext(site);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Get the user&#39;s profile manager from the current context and ignore privacy</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UserProfileManager upcm = new UserProfileManager(Context, true);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PropertyCollection props = upcm.Properties;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Get the user profile</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UserProfile userprof = upcm.GetUserProfile(user.LoginName);</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //Get the property you want the data from <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UserProfileValueCollection name = userprof[&quot;PreferredName&quot;];</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //write property value to list item<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listItem[&quot;Title&quot;] = name;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listItem.Update();</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</p>
<p>Of course, you can change the property to one from the list by changing PreferredName to something else.</p>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2008/04/24/update-splist-items-with-data-from-user-profiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Failure trying to sync</title>
		<link>http://vspug.com/rlangley/2007/10/10/failure-trying-to-sync/</link>
		<comments>http://vspug.com/rlangley/2007/10/10/failure-trying-to-sync/#comments</comments>
		<pubDate>Wed, 10 Oct 2007 18:02:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[
There&#39;s always a lesson to be learned.&#160; Such is the nature of the beast! The more we work with this wonderful product called SharePoint, the more we realize how sensitive it can be, and how wierd things just seem to &#34;happen&#34;. I&#39;ve ran into quite a few on this particular project, and decided to post [...]]]></description>
			<content:encoded><![CDATA[<p><font size="1"><font size="1"></p>
<p><font face="Times New Roman">There&#39;s always a lesson to be learned.&nbsp; Such is the nature of the beast! The more we work with this wonderful product called SharePoint, the more we realize how sensitive it can be, and how wierd things just seem to &quot;happen&quot;. I&#39;ve ran into quite a few on this particular project, and decided to post this in hopes of saving others some possible heartache.&nbsp; If you&#39;ve had errors in your event logs like these: </font></p>
<p><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">failure trying to synch site [SITE GUID} for ContentDB&nbsp;[contentdb GUID]&nbsp;WebApp [web app GUID]. Exception message was Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED</font></span></b></p>
<p><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman"></font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman"><img title="event id 5533" style="WIDTH:800px;HEIGHT:600px;" height="600" alt="event id 5533" src="/photos/rlangley/images/7147/original.aspx" width="800" align="baseline" />&nbsp;</font></span></b> </p>
<p><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">or</font></span></b></p>
<p><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">&nbsp;</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">A runtime exception was detected. Details follow. </font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">Message: Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED))</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">Techinal Details:</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED))</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPGlobal.HandleUnauthorizedAccessException(UnauthorizedAccessException ex)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.Library.SPRequest.AddField(String bstrUrl, String bstrListName, String bstrSchemaXml, Int32 grfAdd)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPFieldCollection.AddFieldAsXmlInternal(String schemaXml, Boolean addToDefaultView, SPAddFieldOptions op)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPFieldCollection.AddFieldAsXml(String schemaXml, Boolean addToDefaultView, SPAddFieldOptions op)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPFieldCollection.AddFieldAsXml(String strXml)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPFieldCollection.AddInternal(String strDisplayName, SPFieldType type, Boolean bRequired, Boolean bCompactName, Guid lookupListId, Guid lookupWebId, StringCollection choices)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPFieldCollection.Add(String strDisplayName, SPFieldType type, Boolean bRequired, Boolean bCompactName, StringCollection choices)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.SharePoint.SPFieldCollection.Add(String strDisplayName, SPFieldType type, Boolean bRequired)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.Office.Server.UserProfiles.SiteSynchronizer.UserSynchronizer.TryAddFieldToUserInfoListWithInternalName(String strWSSInternalName, SPFieldType fieldType)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.Office.Server.UserProfiles.SiteSynchronizer.UserSynchronizer.AddFieldToUserInfoList(String strProfilePropName, SPFieldType fieldType)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.Office.Server.UserProfiles.SiteSynchronizer.UserSynchronizer.PushSchemaToList(Boolean&amp; bAddedColumn)</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.Office.Server.UserProfiles.SiteSynchronizer.UserSynchronizer.SynchFull()</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.Office.Server.UserProfiles.SiteSynchronizer.Synch()</font></span></b><b style="mso-bidi-font-weight:normal;"><span style="FONT-SIZE:8pt;"><font face="Times New Roman">at Microsoft.Office.Server.Diagnostics.FirstChanceHandler.ExceptionFilter(Boolean fRethrowException, TryBlock tryBlock, FilterBlock filter, CatchBlock catchBlock, FinallyBlock finallyBlock)</font></span></b> </p>
<p><font face="Times New Roman"><img title="evevt id 7888" style="WIDTH:784px;HEIGHT:633px;" height="600" alt="evevt id 7888" src="/photos/rlangley/images/7148/original.aspx" width="800" align="baseline" />&nbsp;</font></p>
<p><font face="Times New Roman">there&#39;s a good chance that you have a profile synchronization issue (or several).&nbsp; Here are the steps I took to correct these errors:</font></p>
<p style="MARGIN-LEFT:19.5pt;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo1;"><font face="Times New Roman"><span style="mso-list:Ignore;"><font>1.</font><span style="FONT:7pt &#39;Times New Roman&#39;;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><font>I downloaded a wonderful, free (yes, FREE!) utility called SharePoint Inspector, created by Gat Bouveret. His blog with a link to the codeplex download site can be found </font></font><a href="http://www.gatweb.fr/"><font face="Times New Roman">here.</font></a><font><font face="Times New Roman"><span style="">&nbsp; </span>I used this tool to identify the web applications and sites referred to by their GUID <span style="">&nbsp;</span>in the event log errors. </font></font></p>
<p style="MARGIN-LEFT:19.5pt;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo1;"><font face="Times New Roman"><span style="mso-list:Ignore;"><font>2.</font><span style="FONT:7pt &#39;Times New Roman&#39;;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><font>I opened a command prompt and typed stsadm- o preparetomove -Site </font></font><a href="http://whatevertheguiltysiteis/"><font face="Times New Roman">http://whatevertheguiltysiteis</font></a><font face="Times New Roman"> -OldContentDb <span style="">&nbsp;&nbsp;</span>&lt;GUID of the contentdb listed in event log error&gt;</font></p>
<p style="MARGIN-LEFT:19.5pt;TEXT-INDENT:-0.25in;mso-list:l0 level1 lfo1;"><font face="Times New Roman"><span style="mso-list:Ignore;"><font>3.</font><span style="FONT:7pt &#39;Times New Roman&#39;;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span><font>After this completed successfully, I ran stsadm -o sync -deleteolddatabases 0 (note: Depending on how long you&#39;ve been seeing these errors, you may be able to use a switch greater than zero. If it&#39;s been 2 days since it synched last, you can use 2. You can tell this by typing stsadm -o sync -listolddatabases &lt;number of days you think&gt; and look for the offending content db guid.</font></font></p>
<p><font><font face="Times New Roman">In my case, there were 4 &#8220;my site&#8221; sites that were not syncing with the profile database. After<span style="">&nbsp; </span>performing these steps, I rechecked the event log at the top of the hour to see if the errors had reoccurred. GONE!<span style="">&nbsp; </span></font></font></p>
<p><font face="Times New Roman">A little something extra: I have also had to do this on occasions where a web application was deleted, leaving the content db intact, and re-created attaching to the same content db without first running the prepare to move command. Same steps apply.</font></p>
<p><font face="Times New Roman">Hope this helps!</font></p>
<p>&nbsp;</p>
<p></font></font></p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2007/10/10/failure-trying-to-sync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>psconfig and database creation</title>
		<link>http://vspug.com/rlangley/2007/09/19/psconfig-and-database-creation/</link>
		<comments>http://vspug.com/rlangley/2007/09/19/psconfig-and-database-creation/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 15:50:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[A few days ago, a colleague and I were rolling out a MOSS test enviornment for one of our clients, who wanted to name the Admin Content db something other than the default (which includes a nice, long&#160;GUID). Of course, we used the PSCONFIG utility to create our dbs before hand. Upon execution, my colleague [...]]]></description>
			<content:encoded><![CDATA[<p>A few days ago, a colleague and I were rolling out a MOSS test enviornment for one of our clients, who wanted to name the Admin Content db something other than the default (which includes a nice, long&nbsp;GUID). Of course, we used the PSCONFIG utility to create our dbs before hand. Upon execution, my colleague was receiving authentication errors when executing the utility. Our first thought was that the account we were using had not been given sufficient priveleges on the SQL server. We spoke to the DBA who checked and verified that the correct permissions were there, so I had her check the SQL server logs&nbsp;to see what was happening when we were trying to hit it. Here is the error message that was logged:</p>
<p><strong><em>Login failed for user &#39;DomainUsername&quot;. The user is not associated with a trusted SQL Server connection. [CLIENT: 192.168.1.5]</em></strong></p>
<p>I then reviewed the script my colleague had wrote to execute the psconfig utility, and found that he was using the -dbuser and -dbpassword switches instead of -user and<br />-password.&nbsp; Since it was a windows authentication account, this was causing the problem. DBUSER is only to be used with a <em>SQL Authentication</em> account. </p>
<p>&nbsp;Hope this helps <img src='http://vspug.com/rlangley/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>Rod</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2007/09/19/psconfig-and-database-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This item is currently being updated by..</title>
		<link>http://vspug.com/rlangley/2007/08/06/this-item-is-currently-being-updated-by/</link>
		<comments>http://vspug.com/rlangley/2007/08/06/this-item-is-currently-being-updated-by/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 22:11:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Have you ever made changes to your MOSS enviornment and attempted to make a change in the Central Administration tool afterwards, and have an error page pop up telling you that it was unable to make the change because it was being currently being updated by Domainusername (probably your own!)? I ran into this a [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever made changes to your MOSS enviornment and attempted to make a change in the Central Administration tool afterwards, and have an error page pop up telling you that it was unable to make the change because it was being currently being updated by Domainusername (probably your own!)? I ran into this a few times and found a solution. If you open the C:Documents and SettingsAll UsersApplication DataMicrosoftSharePointConfig there will be a folder with&nbsp;sort of a&nbsp;GUID name. I cut that folder out and pasted it on my desktop (to&nbsp;ensure nothing was needed) and ran the process again, and BAM!&nbsp;it worked! It appears to just contain XML files that keep track of&nbsp;the changes you make that (possibly) use the OWSTIMER. When one of those services gets choked up or doesn&#39;t complete, it kinda &quot;locks you out&quot; of making other changes.</p>
<p>&nbsp;Hope this helps!</p>
<p>Rodney&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2007/08/06/this-item-is-currently-being-updated-by/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Workflows, SSPs, and IIS Nightmares</title>
		<link>http://vspug.com/rlangley/2007/08/04/workflows-ssps-and-iis-nightmares/</link>
		<comments>http://vspug.com/rlangley/2007/08/04/workflows-ssps-and-iis-nightmares/#comments</comments>
		<pubDate>Sat, 04 Aug 2007 15:06:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[What a week!&#160;
I have had many challenges throughout my IT carrer, but this week has to rank near the top as one of the most stressful. I decided to take an offer with a new company, and turned in my 2 week notice. I hate leaving loose ends, and definitely don&#39;t want to leave my [...]]]></description>
			<content:encoded><![CDATA[<p>What a week!&nbsp;</p>
<p>I have had many challenges throughout my IT carrer, but this week has to rank near the top as one of the most stressful. I decided to take an offer with a new company, and turned in my 2 week notice. I hate leaving loose ends, and definitely don&#39;t want to leave my present company in bind, so I have a few projects that I wanted to complete before I left. Well, one of those projects included creating a workflow for a custom list for one of our departments. When I saved the workflow to the server and created a new record to test it, I found that it wasn&#39;t working. &quot;Failed on Start&quot; was all that was showing. </p>
<p>&nbsp;</p>
<p>I looked at the code and everything checked out so I dug a little deeper and found that NONE of the workflows were working throughout the entire portal! ARGH! What happened? I started digging through the log files and they weren&#39;t much help at all. This is the only thing that was showing for workflows:</p>
<p>&nbsp;</p>
<p><em>2/2007 14:11:51.52 w3wp.exe (0&#215;10A8)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&#215;05BC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CMS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Publishing&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 7fz4&nbsp;&nbsp;&nbsp; High&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WARNING: Cannot change FormContext.FormMode to [Invalid] because it is already set to [Edit]&nbsp; </em></p>
<p>&nbsp;</p>
<p><em>08/02/2007 14:11:55.05 &nbsp;&nbsp;&nbsp; w3wp.exe (0&#215;10A8)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&#215;0EB4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Windows SharePoint Services&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Workflow Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 72fs&nbsp;&nbsp;&nbsp; Unexpected&nbsp; RunWorkflow: System.ArgumentException: Value does not fall within the expected range.&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWorkflowActivationProperties..ctor(SPWorkflow workflow, Int32 runAsUserId, String associationData, String initiationData)&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWinOEWSSService.MakeActivation(SPWorkflow workflow, SPWorkflowEvent e)&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWinOeEngine.RunWorkflow(Guid trackingId, SPWorkflowHostService host, SPWorkflow workflow, Collection`1 events, TimeSpan timeOut)&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow originalWorkflow, SPWorkflow workflow, Collection`1 events, SPRunWorkflowOptions runOptions)</em>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp; </p>
<p><em>08/02/2007 14:11:55.05 &nbsp;&nbsp;&nbsp; w3wp.exe (0&#215;10A8)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&#215;0EB4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Windows SharePoint Services&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Workflow Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 98d7&nbsp;&nbsp; Unexpected&nbsp; System.ArgumentException: Value does not fall within the expected range.&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWorkflowActivationProperties..ctor(SPWorkflow workflow, Int32 runAsUserId, String associationData, String initiationData)&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWinOEWSSService.MakeActivation(SPWorkflow workflow, SPWorkflowEvent e)&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWinOeEngine.RunWorkflow(Guid trackingId, SPWorkflowHostService host, SPWorkflow workflow, Collection`1 events, TimeSpan timeOut)&nbsp;&nbsp;&nbsp;&nbsp; at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow originalWorkflow, SPWorkflow workflow, Collection`1 events, SPRunWorkflowOptions runOptions</em>)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p>&nbsp;</p>
<p>Well, to back track a little and set the scene, I had an issue a couple&nbsp;of weeks ago that caused me to have to do a&nbsp;restore from backup. &nbsp;Upon the restore, I got my usernames for the shared services and application pools a litlte mixed up and wound up assigning the wrong username to the main portal app pool. To the best of my knowledge, they have the same permissions, but apparently one is missing something somewhere. (There&#39;s a lot of permissions to set on a farm implementation) I attempted to change it using the Central Admin interface, but to no avail. It didn&#39;t change in IIS. So, against the grain (totally taboo in the MOSS world), I tried to change the username and password for the main application pool in IIS. I clicked apply, ok, then did an IISRESET, and went back to check it at WHAM! Somehow, miraculously, it had changed itself back to the previous username and password! How is that possible? After a week of beating myself up over this, and hoping that it was somehow related to my worfklow issue, I called Microsoft Premier Support.&nbsp; The fellow I spoke with was very knowledgeable and friendly, but had never seen this issue before either. We spent 3.5 hours working on it one day and another 3 hours the following day. We found that if we created a new app pool in IIS and assigned the&nbsp;main web application in SharePoint to that pool with the proper identity, workflows started working!! However, I digress.. </p>
<p>&nbsp;</p>
<p>That was not satisfactory as it was not supported by the MS team. So we deleted that app pool, and proceeded to delete the current web application using the Central Admin tool and recreate it, attaching the current content DB.&nbsp; Once done, the workflows were broken again! We checked the IIS app pool and it was back to the wrong identity! We tried changing it manually with the same result as before, failure after IISRESET.&nbsp; He put me on mute while he discussed options with colleagues because we were all bumfuzzled at that time. While I was waiting,&nbsp; I started skimming through my MOSS Administrator&#39;s Companion and stumbled on a section instructing someone on how to change the username and password for an SSP. I thought to myself, &quot;Surely, you&#39;ve checked that, but let&#39;s do it again just in case&#8230;&quot; Sure enough, there was the SSP credentials running under the same username as the app pool. I changed it to the correct one, did the same for the main app pool in IIS, did another IISRESET and BOOYAH! IT WORKED!!!! </p>
<p>&nbsp;</p>
<p>So Ladies and Gentlemen, the morale of the story is this: If you do a restore from backup, make sure to use the same usernames and password for everything, but if you don&#39;t, change the username and pass for the main SSP, change it for IIS, and reset and you&#39;ll be back to normal. On one hand, I love SSPs for the additional load balancing functionallity, but they are truly a pain in the rear.</p>
<p>&nbsp;</p>
<p>I hope this helps someone, if so please feel free to leave feedback/comments!</p>
<p>Rod</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2007/08/04/workflows-ssps-and-iis-nightmares/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://vspug.com/rlangley/2007/06/30/welcome/</link>
		<comments>http://vspug.com/rlangley/2007/06/30/welcome/#comments</comments>
		<pubDate>Sat, 30 Jun 2007 12:58:00 +0000</pubDate>
		<dc:creator>Rodney</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello everyone and welcome to Sharepoint Squared, my online rant about my favorite topic, as well as other things that may come about from time to time.
It&#39;s great to have Sharepointblogs.com back up and running!&#160; Thanks to Dustin and whoever else helped in the process of bring it back online! This site has been such [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone and welcome to Sharepoint Squared, my online rant about my favorite topic, as well as other things that may come about from time to time.</p>
<p>It&#39;s great to have Sharepointblogs.com back up and running!&nbsp; Thanks to Dustin and whoever else helped in the process of bring it back online! This site has been such a wonderful place of information for me, that I felt it only right to &quot;share&quot; some of that knowledge with the rest of you (pardon the pun <img src="/emoticons/emotion-4.gif" alt="Stick out tongue" />)</p>
<p>My name is Rodney Langley and currently I&#39;m the SharePoint Webmaster for The Road Home Program, the largest recovery effort in history. We have over 2600 users and 235 Sharepoint sites running MOSS 2007, working hard every day to help the folks of the state of Louisiana rebuild thier homes which were damaged or destroyed by hurricanes Rita and Katrina. As you can imagine, it&#39;s a pretty busy job for one fellow (me) to administer and develop for. I&#39;ll do my best to blog often, but spare time is indeed a luxury so check back often!</p>
<p>As always, feel free to post questions or comments on anything and I&#39;ll respond as soon as I can!</p>
<p>&nbsp;Rodney Langley</p>
]]></content:encoded>
			<wfw:commentRss>http://vspug.com/rlangley/2007/06/30/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
