<?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"
	>

<channel>
	<title>Nerfed Tech</title>
	<atom:link href="http://blog.internetubes.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.internetubes.net</link>
	<description>SharePoint Ok?</description>
	<pubDate>Tue, 21 Oct 2008 18:22:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>How to create a label in a SharePoint survey</title>
		<link>http://blog.internetubes.net/?p=28</link>
		<comments>http://blog.internetubes.net/?p=28#comments</comments>
		<pubDate>Tue, 21 Oct 2008 18:22:13 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[Annoying]]></category>

		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=28</guid>
		<description><![CDATA[This is not ideal. BUT, if you need to create a question that requires no answers, you can workaround there being no label field in sharepoint surveys.
1.  Use custom code / tool to programmatically create a SpChoiceField without choices, and switch the EditType to RadioButtons:
list.Fields.Add(&#8221;This is a label, no input options will be displayed!&#8221;, SPFieldType.Choice, [...]]]></description>
			<content:encoded><![CDATA[<p>This is not ideal. BUT, if you need to create a question that requires no answers, you can workaround there being no label field in sharepoint surveys.</p>
<p>1.  Use custom code / tool to programmatically create a SpChoiceField without choices, and switch the EditType to RadioButtons:</p>
<blockquote><p>list.Fields.Add(&#8221;This is a label, no input options will be displayed!&#8221;, SPFieldType.Choice, False)</p>
<p>Dim choicefield As SPFieldChoice = list.Fields(&#8221;This is a label, no input options will be displayed!&#8221;)</p>
<p>choicefield.EditFormat = SPChoiceFormatType.RadioButtons<br />
choicefield.Update()</p></blockquote>
<p>I have tested this, it works.</p>
<p>2. Edit your ~\12\TEMPLATE\LAYOUTS\qstnew.aspx. Remove the javascript validation at line 1077 that checks for no choices. <strong>I have not tested this.</strong></p>
<p>3. Maybe even create a new qstnew.aspx that does not validate the form input for no choices, and use that your self only.</p>
<p>Looking at all that&#8230;.it&#8217;s almost easier to create a custom field&#8230;</p>
<p>Oh well.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=28</wfw:commentRss>
		</item>
		<item>
		<title>SoapException and GetListItems and WebID</title>
		<link>http://blog.internetubes.net/?p=26</link>
		<comments>http://blog.internetubes.net/?p=26#comments</comments>
		<pubDate>Wed, 09 Apr 2008 16:10:42 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[Annoying]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=26</guid>
		<description><![CDATA[Having trouble using the MSDN documentation or the SDK documentation for making GetListItems work correctly?
It seems that the optional last parameter is not really optional, you have to include it. If you include it as a blank &#8220;&#8221; string or a null/nothing value, it still throws execptions&#8230;.
1. If you are catching Exceptions on SOAP calls, [...]]]></description>
			<content:encoded><![CDATA[<p>Having trouble using the MSDN documentation or the SDK documentation for making GetListItems work correctly?</p>
<p>It seems that the optional last parameter is not really optional, you have to include it. If you include it as a blank &#8220;&#8221; string or a null/nothing value, it still throws execptions&#8230;.</p>
<p>1. If you are catching Exceptions on SOAP calls, stop. Start catching System.Web.Services.Protocols.SoapException .  There&#8217;s a member called &#8220;Details&#8221; which will give you the actual error, and not the generic soap exceptions.</p>
<p>2. The documentation says that the WebID field, if not given, will use the URL property of the Lists web service reference object. Well that should work right ? Well no&#8230; i guess they changed the way this property works. It appears to not be set. It appears that in an app.config file there is a config parameter that corresponds to this URL parameter. Im guessing that when the empty URL parameter is found, it goes to the app.config to find it, but it&#8217;s already passed the test for WebID, and so now it&#8217;s required.</p>
<p>This seems to be a change from the way  WSS 2.0 worked. An uneeded change. A stupid change.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=26</wfw:commentRss>
		</item>
		<item>
		<title>DOCTYPE Declaration Breaks Edit in Datasheet and Export to Excel</title>
		<link>http://blog.internetubes.net/?p=25</link>
		<comments>http://blog.internetubes.net/?p=25#comments</comments>
		<pubDate>Fri, 22 Feb 2008 19:26:12 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[Annoying]]></category>

		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=25</guid>
		<description><![CDATA[http://www.heathersolomon.com/blog/archive/2007/02/21/6213.aspx
Grr.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.heathersolomon.com/blog/archive/2007/02/21/6213.aspx">http://www.heathersolomon.com/blog/archive/2007/02/21/6213.aspx</a></p>
<p>Grr.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=25</wfw:commentRss>
		</item>
		<item>
		<title>SharePoint List Filters and Formulas - Last Week or Week&#8217;s Events</title>
		<link>http://blog.internetubes.net/?p=24</link>
		<comments>http://blog.internetubes.net/?p=24#comments</comments>
		<pubDate>Tue, 05 Feb 2008 16:51:02 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=24</guid>
		<description><![CDATA[You ever wanted to create a status report view, that gives you all the &#8220;events&#8221; that happened last week? Look no further !
For each event that you want to limit to last week&#8217;s data, let&#8217;s go with &#8220;modified&#8221; for now, create two new fields:
ModifiedReportStart
Make it a calculated field, and give it the formula:
=Modified+7-WEEKDAY(Modified)
This will put [...]]]></description>
			<content:encoded><![CDATA[<p>You ever wanted to create a status report view, that gives you all the &#8220;events&#8221; that happened last week? Look no further !</p>
<p>For each event that you want to limit to last week&#8217;s data, let&#8217;s go with &#8220;modified&#8221; for now, create two new fields:</p>
<p><strong>ModifiedReportStart</strong></p>
<p>Make it a calculated field, and give it the formula:<br />
=Modified+7-WEEKDAY(Modified)</p>
<p>This will put this date at the start of the Next Week after &#8220;Modified&#8221;</p>
<p><strong>ModifiedReportEnd</strong></p>
<p>Make it a calculated field, and give it the formula:<br />
=Modified+14-WEEKDAY(Modified)</p>
<p>This will put this date at the end of the Next Week after &#8220;Modified&#8221;</p>
<p><strong>Create a View with a Filter</strong></p>
<p>Filter where:<br />
ModifiedReportStart is less than [Today]<br />
AND<br />
ModifiedReportend is greater than or equal to [Today]</p>
<p>Tada.</p>
<p>If you looking into trying to make these date filters dynamic, good luck, I haven&#8217;t figured or found that one out yet. BUT, here&#8217;s where you find the reference for filters and formulas in sharepoint lists on your sharepoint server: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="ProgId" content="Word.Document" /><meta name="Generator" content="Microsoft Word 12" /><meta name="Originator" content="Microsoft Word 12" /></p>
<link href="file:///C:%5CDOCUME%7E1%5Cjjester%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List" />
<link href="file:///C:%5CDOCUME%7E1%5Cjjester%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData" />
<link href="file:///C:%5CDOCUME%7E1%5Cjjester%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping" /><!--[if gte mso 9]><xml>  <w:WordDocument>   <w:View>Normal</w:View>   <w:Zoom>0</w:Zoom>   <w:TrackMoves/>   <w:TrackFormatting/>   <w:PunctuationKerning/>   <w:ValidateAgainstSchemas/>   <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>   <w:IgnoreMixedContent>false</w:IgnoreMixedContent>   <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>   <w:DoNotPromoteQF/>   <w:LidThemeOther>EN-US</w:LidThemeOther>   <w:LidThemeAsian>X-NONE</w:LidThemeAsian>   <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>   <w:Compatibility>    <w:BreakWrappedTables/>    <w:SnapToGridInCell/>    <w:WrapTextWithPunct/>    <w:UseAsianBreakRules/>    <w:DontGrowAutofit/>    <w:SplitPgBreakAndParaMark/>    <w:DontVertAlignCellWithSp/>    <w:DontBreakConstrainedForcedTables/>    <w:DontVertAlignInTxbx/>    <w:Word11KerningPairs/>    <w:CachedColBalance/>   </w:Compatibility>   <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>   <m:mathPr>    <m:mathFont m:val="Cambria Math"/>    <m:brkBin m:val="before"/>    <m:brkBinSub m:val="&#45;-"/>    <m:smallFrac m:val="off"/>    <m:dispDef/>    <m:lMargin m:val="0"/>    <m:rMargin m:val="0"/>    <m:defJc m:val="centerGroup"/>    <m:wrapIndent m:val="1440"/>    <m:intLim m:val="subSup"/>    <m:naryLim m:val="undOvr"/>   </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml>  <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267">   <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal"/>   <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>   <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>   <w:LsdException Locked="false" Priority="39" Name="toc 1"/>   <w:LsdException Locked="false" Priority="39" Name="toc 2"/>   <w:LsdException Locked="false" Priority="39" Name="toc 3"/>   <w:LsdException Locked="false" Priority="39" Name="toc 4"/>   <w:LsdException Locked="false" Priority="39" Name="toc 5"/>   <w:LsdException Locked="false" Priority="39" Name="toc 6"/>   <w:LsdException Locked="false" Priority="39" Name="toc 7"/>   <w:LsdException Locked="false" Priority="39" Name="toc 8"/>   <w:LsdException Locked="false" Priority="39" Name="toc 9"/>   <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>   <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title"/>   <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>   <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>   <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong"/>   <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>   <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid"/>   <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>   <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>   <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>   <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>   <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote"/>   <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>   <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6"/>   <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6"/>   <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6"/>   <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>   <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>   <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>   <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>   <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>   <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>   <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>   <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6"/>   <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>   <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6"/>   <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>   <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>   <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>   <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>   <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>   <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>   <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>   <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>  </w:LatentStyles> </xml><![endif]--><br />
<style> <!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-alt:"Calisto MT"; 	mso-font-charset:0; 	mso-generic-font-family:roman; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1107304683 0 0 159 0;} @font-face 	{font-family:Calibri; 	panose-1:2 15 5 2 2 2 4 3 2 4; 	mso-font-alt:"Century Gothic"; 	mso-font-charset:0; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:-1610611985 1073750139 0 0 159 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0in; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-fareast-font-family:"Times New Roman"; 	mso-bidi-font-family:"Times New Roman";} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-hansi-font-family:Calibri; 	mso-bidi-font-family:Calibri;} .MsoPapDefault 	{mso-style-type:export-only;} @page Section1 	{size:8.5in 11.0in; 	margin:1.0in 1.0in 1.0in 1.0in; 	mso-header-margin:.5in; 	mso-footer-margin:.5in; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --> </style>
<p><!--[if gte mso 10]></p>
<style>  /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} </style>
<p> <![endif]--></p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal">C:\Program Files\Microsoft Office\Office12\1033\STSLIST.CHM</p>
<p class="MsoNormal">&nbsp;</p>
<p class="MsoNormal">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=24</wfw:commentRss>
		</item>
		<item>
		<title>Search Scopes not Appearing in Search Dropdown Box</title>
		<link>http://blog.internetubes.net/?p=23</link>
		<comments>http://blog.internetubes.net/?p=23#comments</comments>
		<pubDate>Thu, 10 Jan 2008 20:40:13 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[Annoying]]></category>

		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=23</guid>
		<description><![CDATA[Thanks to http://insidesharepoint.blogspot.com/2007/06/and-now-another-word-form-our.html
I see a whole lots of posts concerning the search drop down box missing some of the defined scopes from SharedServices. I recently ran into the problem on our farm and I thought I would pass along the fix.

The best place to start is to ensure that you actually have a SearchCenter site [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to http://insidesharepoint.blogspot.com/2007/06/and-now-another-word-form-our.html</p>
<blockquote><p><span style="font-family: verdana; font-size: 85%">I see a whole lots of posts concerning the search drop down box missing some of the defined scopes from <span class="blsp-spelling-error" id="SPELLING_ERROR_0">SharedServices</span>. I recently ran into the problem on our farm and I thought I would pass along the fix.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">The best place to start is to ensure that you actually have a <span class="blsp-spelling-error" id="SPELLING_ERROR_1">SearchCenter</span> site installed on the site. Without this, there will be no place <span class="blsp-spelling-error" id="SPELLING_ERROR_2">fo</span><span class="blsp-spelling-error" id="SPELLING_ERROR_3">r the</span> scoped searches to land, and the scopes will not show up. </span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">Once you have ensured that <span class="blsp-spelling-error" id="SPELLING_ERROR_4">SearchCenter</span> is installed, then go to <span class="blsp-spelling-error" id="SPELLING_ERROR_5">SharedServices</span> and make sure that the scopes are there. With MOSS, you will usually get two defined scopes out of the box, All Sites and People. Make sure that the scopes are there and that there is data in them.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">If 1 and 2 are <span class="blsp-spelling-error" id="SPELLING_ERROR_6">ok</span> then next go to the base site for your collection. Log in as the <span class="blsp-spelling-error" id="SPELLING_ERROR_7">SysAdmin</span> and click on <span style="color: #cc6600">&#8220;Site Settings - Modify All Site Settings&#8221;</span>.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">From All Settings, find the <span style="color: #cc6600"><span class="blsp-spelling-corrected" id="SPELLING_ERROR_8">Search</span> Scopes</span> link in the <span style="color: #cc6600">Site Collection Administration</span> column and click on it.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">Sometimes <span class="blsp-spelling-error" id="SPELLING_ERROR_9">SharePoint</span> loses the scoping information, if it has lost it for your site collection, you will see your two scopes here in the <span class="blsp-spelling-corrected" id="SPELLING_ERROR_10">category</span> of <span style="color: #cc6600">Unused Scopes</span>. In order to reset your scopes correctly, click on the <span style="color: #cc6600">&#8220;New Display Group&#8221;</span> button on the menubar.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">In order for the Scopes to show up in the Search Drop Down, place <span style="color: #cc6600">&#8220;Search Dropdown&#8221;</span> in the Title box here. Place a description in the next field. Now check both of the scope <span style="color: #cc6600">&#8220;Display&#8221;</span> checkboxes and select a position for each (usually it is All Sites (1) and People(2). Make the default scope <span style="color: #cc6600">&#8220;All Sites&#8221;</span> and click on &#8220;OK&#8221;</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">When you return to the view you will see your defined scopes in the new Category: <span style="color: #cc6600">&#8220;Display Group: Search Dropdown(2)&#8221;</span>. And when you go to your site you will see that the scopes are now part of the dropdown box.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">To set up Advanced Search, create another Display Group. In this group place <span style="color: #cc6600">&#8220;Advanced Search&#8221;</span> in the title and check on <span style="color: #cc6600">&#8220;All Sites&#8221;</span> and make <span style="color: #cc6600">&#8220;All Sites&#8221;</span> the default, BOOM! Advanced search shows up.</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">Hopes this helps some of you frustrated Sharepoint people</span><br />
<span style="font-family: verdana; font-size: 85%"></span><br />
<span style="font-family: verdana; font-size: 85%">JMC</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=23</wfw:commentRss>
		</item>
		<item>
		<title>DCOM Errors</title>
		<link>http://blog.internetubes.net/?p=22</link>
		<comments>http://blog.internetubes.net/?p=22#comments</comments>
		<pubDate>Thu, 04 Oct 2007 17:03:19 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[Annoying]]></category>

		<category><![CDATA[SharePoint 2003]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=22</guid>
		<description><![CDATA[Thanks to http://soerennielsen.wordpress.com/2007/04/16/fixing-those-pesky-dcom-event-log-error-10016-in-a-sharepoint-farm-environment/
&#8212;&#8211;
Fixing those pesky DCOM event log error 10016 in a SharePoint farm environment

 Posted by Søren Nielsen under Deployment ,  SharePoint 2007 ,  Troubleshooting
I’m responsible for a couple of SharePoint 2007 (MOSS) farms where all SharePoint servers showed the following error in the system event log:

Event Type:     [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to http://soerennielsen.wordpress.com/2007/04/16/fixing-those-pesky-dcom-event-log-error-10016-in-a-sharepoint-farm-environment/<br />
&#8212;&#8211;</p>
<p><a href="http://soerennielsen.wordpress.com/2007/04/16/fixing-those-pesky-dcom-event-log-error-10016-in-a-sharepoint-farm-environment/" rel="bookmark" title="Permanent Link: Fixing those pesky DCOM event log error 10016 in a SharePoint farm environment">Fixing those pesky DCOM event log error 10016 in a SharePoint farm environment</a></p>
<blockquote>
<p class="post-info"> Posted by Søren Nielsen under <a href="http://wordpress.com/tag/deployment/" title="View all posts in Deployment" rel="category tag">Deployment</a> ,  <a href="http://wordpress.com/tag/sharepoint-2007/" title="View all posts in SharePoint 2007" rel="category tag">SharePoint 2007</a> ,  <a href="http://wordpress.com/tag/troubleshooting/" title="View all posts in Troubleshooting" rel="category tag">Troubleshooting</a></p>
<p class="snap_preview">I’m responsible for a couple of SharePoint 2007 (MOSS) farms where all SharePoint servers showed the following error in the system event log:</p>
<p><span style="color: red; font-size: 9pt"><br />
Event Type:            Error<br />
Event Source:         DCOM<br />
Event Category:                        None<br />
Event ID:                10016<br />
Date:                                        1/17/2007<br />
Time:                                        4:31:48 AM<br />
User:                                        <em>&lt;DOMAIN&gt;</em>\sa_adm<br />
Computer:              <em>&lt;SERVER&gt;</em><br />
Description:<br />
</span></p>
<p><span style="color: red; font-size: 9pt">The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID<br />
</span></p>
<p><span style="color: red; font-size: 9pt">{61738644-F196-11D0-9953-00C04FD919C1}<br />
</span></p>
<p><span style="color: red; font-size: 9pt"> to the user <em>&lt;DOMAIN&gt;</em>\sa_adm SID (S-1-5-21-162740987-2502514208-3469184634-1119). This security permission can be modified using the Component Services administrative tool.<br />
</span></p>
<p><span style="color: red; font-size: 9pt">For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.<br />
</span></p>
<p>The error would show up at regular intervals in clusters (4-12 at roughly the same time) and there would be a few more with other usernames and other class id’s. I had two fully functional farms with 3 SharePoint servers each and a number of standalone development machines. They all exhibited similar behavior.</p>
<p>The error listed above is that the user running the Central Administration web application doesn’t have access to activate (instantiate) the IIS WAMREG admin Service object (search the registry for the CLSID).</p>
<p>Strangely enough I didn’t observe any functional errors in the farms as a result of these errors – nothing seemed amiss (plenty of stuff didn’t work but none directly related to this).</p>
<p>An important note here is that the service users used in the farm are all standard domain accounts and only given additional local rights by the SharePoint installer and Central Administration (The one exception is that “aspnet_regiis -ga IIS_WPG” was executed after SharePoint install and initial configuration).</p>
<p>The following procedure removes the errors from the event log without compromising the entire security setup (yes, assign administrative rights for the service users would do the trick too) and has been verified by Microsoft consulting services.</p>
<p>On <strong>each</strong> SharePoint server do the following:</p>
<ol>
<li>Click Start, Click Run, type “dcomcnfg” and click ok</li>
<li>Expand Component Services / Computers / My Computer / DCOM Config</li>
<li>Right click IIS WAMREG admin Service and choose Properties</li>
<li>Click the Security tag</li>
<li>Click Edit under Launch and Activation Permissions</li>
<li>Click Add</li>
<li>In the Select Users, Computers or Groups type <em>computername\</em>WSS_WPG <strong>and</strong><br />
<em>computername</em>\WSS_ADMIN_WPG</li>
<li>Click ok</li>
<li>In the Permissions for <em>UserName</em> list, click to select the Allow check box</li>
<li>Click Ok twice.</li>
<li>Go back to the main Component Services window, right click the “netman” node and select Properties</li>
<li>Click the security tab</li>
<li>Click Edit under Activation Permissions</li>
<li>Click Add on the Launch Permissons Dialog</li>
<li>Enter “NETWORK SERVICE” in the edit box</li>
<li>Click Ok</li>
<li>Enable all the checkboxes for the NETWORK SERVICE</li>
<li>Click Ok twice</li>
<li>Finally, run “IISReset”</li>
</ol>
<p>That should be it!</p>
<p>A little less event log errors to worry about – there are plenty left on a reasonable complex SharePoint farm…</p>
<p>As a side note: The above error also shows up in other applications as well – I’ve heard about it for exchange servers as well and more applications are probably affected. In that case you’ll need to search the registry for the actual DCOM application and assign the rights to another local group (or username as a last resort).</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=22</wfw:commentRss>
		</item>
		<item>
		<title>stsadm -o import results in a error</title>
		<link>http://blog.internetubes.net/?p=21</link>
		<comments>http://blog.internetubes.net/?p=21#comments</comments>
		<pubDate>Tue, 28 Aug 2007 17:39:44 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=21</guid>
		<description><![CDATA[So we were getting an error where the import command was telling us the parent site didnt exist, and the import fails.
Looking into the Export log, we found:
Error: Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED))
at Microsoft.SharePoint.SPGlobal.HandleUnauthorizedAccessException(UnauthorizedAccessException ex)
at Microsoft.SharePoint.Library.SPRequest.GetFileAsByteArray(String bstrUrl, String bstrWebRelativeUrl, Boolean bHonorLevel, Byte iLevel, Boolean bUnprotected)
at Microsoft.SharePoint.Deployment.FileSerializer.SaveFile(SerializationInfo info, ExportObjectManager objectManager, ExportDataFileManager fileManager, SPExportSettings [...]]]></description>
			<content:encoded><![CDATA[<p>So we were getting an error where the import command was telling us the parent site didnt exist, and the import fails.</p>
<p>Looking into the Export log, we found:</p>
<blockquote><p>Error: Access is denied. (Exception from HRESULT: 0&#215;80070005 (E_ACCESSDENIED))<br />
at Microsoft.SharePoint.SPGlobal.HandleUnauthorizedAccessException(UnauthorizedAccessException ex)<br />
at Microsoft.SharePoint.Library.SPRequest.GetFileAsByteArray(String bstrUrl, String bstrWebRelativeUrl, Boolean bHonorLevel, Byte iLevel, Boolean bUnprotected)<br />
at Microsoft.SharePoint.Deployment.FileSerializer.SaveFile(SerializationInfo info, ExportObjectManager objectManager, ExportDataFileManager fileManager, SPExportSettings settings, SPWeb parentWeb, Boolean isGhosted, String setupPath, String setupPathUser, Byte setupPathVersion, String webRelativeFileUrl, Int32 size, Byte level)</p></blockquote>
<p>The import error was:</p>
<blockquote>
<p class="MsoNormal"><span style="color: #1f497d">Error: The file<span>  </span>cannot be imported because its parent web /sites/grizzly/SAISB/grizzly does not exist.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color: #1f497d">Progress: Importing File Lists/General Discussion/Threaded.aspx.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color: #1f497d"><span>  </span>[8/27/2007 3:20:18 PM]: Error: Current item failed in the export with the error message: Access is denied. (Exception from HRESULT: 0&#215;80070005 <o:p></o:p></span></p>
</blockquote>
<p>The fix was to grant the person doing the export site collection administrator status, then do the export.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=21</wfw:commentRss>
		</item>
		<item>
		<title>The document could not be opened for editing.</title>
		<link>http://blog.internetubes.net/?p=20</link>
		<comments>http://blog.internetubes.net/?p=20#comments</comments>
		<pubDate>Tue, 28 Aug 2007 17:33:42 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=20</guid>
		<description><![CDATA[So&#8230; some users were getting the
 The document could not be opened for editing. A Windows SharePoint Services compatible application could not be found to edit the document.
dialog box error message when trying to open a word document in document library using the &#8220;Edit in Microsoft Word&#8221; drop down command.
After some investigation it turned out [...]]]></description>
			<content:encoded><![CDATA[<p>So&#8230; some users were getting the</p>
<blockquote><p> The document could not be opened for editing. A Windows SharePoint Services compatible application could not be found to edit the document.</p></blockquote>
<p>dialog box error message when trying to open a word document in document library using the &#8220;Edit in Microsoft Word&#8221; drop down command.</p>
<p>After some investigation it turned out that they had created a HUGE URL trail in side the document library by creating folders with really long special character laden names. The URL was around 300 characters long or some such nonsense.  IE&#8217;s limit is around 2084 so its not IE, probably SharePoint or Word related limitation on URL length, or some special character interference.</p>
<p>I shortened all the directory names and took out some of the special characters and it seemed to clear up the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=20</wfw:commentRss>
		</item>
		<item>
		<title>Can not start a workflow from a survey in SharePoint 2007</title>
		<link>http://blog.internetubes.net/?p=19</link>
		<comments>http://blog.internetubes.net/?p=19#comments</comments>
		<pubDate>Mon, 27 Aug 2007 16:58:41 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[Annoying]]></category>

		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=19</guid>
		<description><![CDATA[How annoying is that???
http://support.microsoft.com/kb/926370
]]></description>
			<content:encoded><![CDATA[<p>How annoying is that???</p>
<p><a href="http://support.microsoft.com/kb/926370">http://support.microsoft.com/kb/926370</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=19</wfw:commentRss>
		</item>
		<item>
		<title>SharePoint Email Alerts being sent sporadically or not at all.</title>
		<link>http://blog.internetubes.net/?p=18</link>
		<comments>http://blog.internetubes.net/?p=18#comments</comments>
		<pubDate>Fri, 24 Aug 2007 18:07:48 +0000</pubDate>
		<dc:creator>Folly</dc:creator>
		
		<category><![CDATA[SharePoint]]></category>

		<category><![CDATA[SharePoint 2007]]></category>

		<guid isPermaLink="false">http://blog.internetubes.net/?p=18</guid>
		<description><![CDATA[Alerts from lists and sites were being sent sporadically or not at all. When i looked into the Timer Job Status page in central admin, i noticed that the set of jobs on 1 of our Load Balanced Web Front Ends were in bad states. Specifically, 2 of them were stuck in Initializing, and 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Alerts from lists and sites were being sent sporadically or not at all. When i looked into the Timer Job Status page in central admin, i noticed that the set of jobs on 1 of our Load Balanced Web Front Ends were in bad states. Specifically, 2 of them were stuck in Initializing, and 2 of them were stuck in Failed.</p>
<p>We restarted the Windows SharePoint Services Timer ( SPTimerV3 ) in Services Console, and this resolved the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.internetubes.net/?feed=rss2&amp;p=18</wfw:commentRss>
		</item>
	</channel>
</rss>
