<?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>Of Ones and Zeros &#187; admin</title>
	<atom:link href="http://www.ofonesandzeros.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ofonesandzeros.com</link>
	<description>a discussion of technology and software development</description>
	<lastBuildDate>Thu, 10 Nov 2011 21:19:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>XSL for Displaying Raw XML in XsltListViewWebPart</title>
		<link>http://www.ofonesandzeros.com/2011/10/31/xsl-for-displaying-raw-xml-in-xsltlistviewwebpart/</link>
		<comments>http://www.ofonesandzeros.com/2011/10/31/xsl-for-displaying-raw-xml-in-xsltlistviewwebpart/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 18:39:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.ofonesandzeros.com/?p=224</guid>
		<description><![CDATA[I am writing this post so that I can hopefully save myself time in the future from trying to track down this little snippet that will take the incoming XML to an XsltListViewWebPart and render it out. This is the snippet: &#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62; &#60;xsl:stylesheet version=&#34;1.0&#34; xmlns:xsl=&#34;http://www.w3.org/1999/XSL/Transform&#34;&#62; &#60;xsl:output method=&#34;xml&#34; version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; indent=&#34;yes&#34;/&#62; &#60;xsl:template match=&#34;/&#34;&#62; &#60;xmp&#62;&#60;xsl:copy-of [...]<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2011/10/31/xsl-for-displaying-raw-xml-in-xsltlistviewwebpart/' addthis:title='XSL for Displaying Raw XML in XsltListViewWebPart '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></description>
			<content:encoded><![CDATA[<p>I am writing this post so that I can hopefully save myself time in the future from trying to track down this little snippet that will take the incoming XML to an XsltListViewWebPart and render it out.  This is the snippet:</p>
<pre class="brush: xml">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
 &lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;
 &lt;xsl:output method=&quot;xml&quot; version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; indent=&quot;yes&quot;/&gt;
 &lt;xsl:template match=&quot;/&quot;&gt;
 &lt;xmp&gt;&lt;xsl:copy-of select=&quot;*&quot;/&gt;&lt;/xmp&gt;
 &lt;/xsl:template&gt;
 &lt;/xsl:stylesheet&gt;
</pre>
<p>This snippet comes from a community content comment on MSDN:  http://msdn.microsoft.com/en-us/library/ff602042.aspx.</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2011/10/31/xsl-for-displaying-raw-xml-in-xsltlistviewwebpart/' addthis:title='XSL for Displaying Raw XML in XsltListViewWebPart '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ofonesandzeros.com/2011/10/31/xsl-for-displaying-raw-xml-in-xsltlistviewwebpart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use A Records for SharePoint Sites When Using Kerberos</title>
		<link>http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/</link>
		<comments>http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 01:53:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[kerberos]]></category>

		<guid isPermaLink="false">http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/</guid>
		<description><![CDATA[When given the choice between using an A DNS record or a CNAME DNS record for your SharePoint web applications, favor an A record particularly if you are using Kerberos authentication.&#160; Reference the following TechNet article: http://technet.microsoft.com/en-us/library/gg502606.aspx Of particular interest in this article is the following passage: Kerberos authentication and DNS CNAMEs There is a [...]<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/' addthis:title='Use A Records for SharePoint Sites When Using Kerberos '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></description>
			<content:encoded><![CDATA[<p>When given the choice between using an A DNS record or a CNAME DNS record for your SharePoint web applications, favor an A record particularly if you are using Kerberos authentication.&#160; Reference the following TechNet article:</p>
<p><a title="http://technet.microsoft.com/en-us/library/gg502606.aspx" href="http://technet.microsoft.com/en-us/library/gg502606.aspx">http://technet.microsoft.com/en-us/library/gg502606.aspx</a></p>
<p>Of particular interest in this article is the following passage:</p>
<blockquote><h6>Kerberos authentication and DNS CNAMEs</h6>
<p>There is a known issue with some Kerberos clients (Internet Explorer 7 and 8 included) that attempt to authenticate with Kerberos enabled services that are configured to resolve using DNS CNAMEs instead of A Records. The root of the problem is the client does not correctly form the SPN in the TGS request by creating it using the host name (A Record) instead of the alias name (CNAME). </p>
<p>Example:</p>
<p>A Record: wfe01.contoso.com</p>
<p>CNAME: intranet.contoso.com (aliases wfe01.contoso.com)</p>
<p>If the client attempts to authenticate with http://intranet.contoso.com, the client does not correctly form the SPN and requests a Kerberos ticket for http/wfe01.contoso.com instead of http/intranet.contoso.com </p>
<p>Details regarding the issue can be found in the following articles:</p>
<p><a href="http://support.microsoft.com/kb/911149/en-us">http://support.microsoft.com/kb/911149/en-us</a></p>
<p><a href="http://support.microsoft.com/kb/938305/en-us">http://support.microsoft.com/kb/938305/en-us</a></p>
<p>To work around this issue, configure Kerberos enabled services using DNS A records instead of CNAME aliases. The hotfix mentioned in KB article will correct this issue for Internet Explorer but will not correct the issue for the .NET framework (which is used by Microsoft Office SharePoint Server for web service communication).</p>
</blockquote>
<p>What me and my team experienced is that a customer had a customization which interfaced with Exchange.&#160; The browser authentication to the web application appeared to be working fine, but the double-hop to Exchange was failing with a 401 error.&#160; All SPNs appeared to be correct.&#160; We changed the DNS records from CNAME records to A records and the authentication began to work as expected.</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/' addthis:title='Use A Records for SharePoint Sites When Using Kerberos '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ofonesandzeros.com/2011/07/12/use-a-records-for-sharepoint-sites-when-using-kerberos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Couple &#8220;Gotchas&#8221; with Console Applications and SharePoint 2010</title>
		<link>http://www.ofonesandzeros.com/2011/07/12/couple-gotchas-with-console-applications-and-sharepoint-2010/</link>
		<comments>http://www.ofonesandzeros.com/2011/07/12/couple-gotchas-with-console-applications-and-sharepoint-2010/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 01:32:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.ofonesandzeros.com/?p=219</guid>
		<description><![CDATA[Wrote a console application today that synchronizes a SQL database with task information from a SharePoint farm as part of a task aggregation solution for a client. Came across two small &#8220;issues&#8221; with Visual Studio 2010/SharePoint 2010 and console applications. I am primarily writing this to remind myself later, but perhaps it will help someone [...]<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2011/07/12/couple-gotchas-with-console-applications-and-sharepoint-2010/' addthis:title='Couple &#8220;Gotchas&#8221; with Console Applications and SharePoint 2010 '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></description>
			<content:encoded><![CDATA[<p>Wrote a console application today that synchronizes a SQL database with task information from a SharePoint farm as part of a task aggregation solution for a client.  Came across two small &#8220;issues&#8221; with Visual Studio 2010/SharePoint 2010 and console applications.  I am primarily writing this to remind myself later, but perhaps it will help someone else as well.  </p>
<p>First &#8220;gotcha&#8221;:  Make sure you set the target .NET Framework to 3.5.  By default Visual Studio 2010 is going to select 4.0 and it will then do a bunch of complaining about not finding Microsoft.SharePoint.dll.  Yes, the compiler will give a pretty detailed error which may or may not reference the fact that you need to target 3.5, but it had me scratching my head for awhile so I figure its worth capturing.</p>
<p>Second &#8220;gotcha&#8221;:  You need to target x64 platform.  I was getting all kinds of crazy behavior when targeting x86.  When I would try to create SPSite objects I would get &#8220;FileNotFound&#8221;.  If I would try to use SPWebService.Locate I would get permissions issues.  Switch the platform to x64 and everything started working like magic!  </p>
<p>That&#8217;s it, hope this saves someone some time (preferably me on a later project <img src="http://dfcv747gi313t.cloudfront.net/wp-includes/images/smilies/icon_wink.gif?9d7bd4" alt=';-)' class='wp-smiley' />  ).</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2011/07/12/couple-gotchas-with-console-applications-and-sharepoint-2010/' addthis:title='Couple &#8220;Gotchas&#8221; with Console Applications and SharePoint 2010 '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ofonesandzeros.com/2011/07/12/couple-gotchas-with-console-applications-and-sharepoint-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IIS and Windows 2003 Mismatched Service Packs</title>
		<link>http://www.ofonesandzeros.com/2008/09/11/iis-and-windows-2003-mismatched-service-packs/</link>
		<comments>http://www.ofonesandzeros.com/2008/09/11/iis-and-windows-2003-mismatched-service-packs/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 20:00:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.ofonesandzeros.com/2008/09/11/iis-and-windows-2003-mismatched-service-packs/</guid>
		<description><![CDATA[I have this nagging feeling that I have been down this road before, so I need to blog it so maybe, just maybe, I won&#8217;t waste another hour troubleshooting something I&#8217;ve done before. Scenario: You browse to Central Admin, or any Site Collection really, and you are prompted incessantly for  your user credentials.  After about [...]<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2008/09/11/iis-and-windows-2003-mismatched-service-packs/' addthis:title='IIS and Windows 2003 Mismatched Service Packs '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></description>
			<content:encoded><![CDATA[<p>I have this nagging feeling that I have been down this road before, so I need to blog it so maybe, just maybe, I won&#8217;t waste another hour troubleshooting something I&#8217;ve done before.</p>
<p><strong>Scenario:</strong></p>
<p>You browse to Central Admin, or any Site Collection really, and you are prompted incessantly for  your user credentials.  After about 5-8 times, the page comes up.  You are NOT presented with a Forbidden message.</p>
<p>You check your IIS log files, and you see several 401 errors for WebResource.axd.</p>
<p>You remember something about installing SP2 when IIS wasn&#8217;t on the box, then installing IIS from a source that did not have the Service Pack slipstreamed.  Hmmm.  Might be relevant.</p>
<p><strong>Solution:</strong></p>
<p>Explained thoroughly by Paul Culmsee on his blog <a href="http://www.cleverworkarounds.com">www.cleverworkarounds.com</a>, <a href="http://www.cleverworkarounds.com/2007/11/15/darn-iis-and-service-packs/">http://www.cleverworkarounds.com/2007/11/15/darn-iis-and-service-packs/</a>.  If it wasn&#8217;t foreshadowed by the last sentence of the Scenario, reinstalling Windows Server 2003 SP2 was the solution.</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2008/09/11/iis-and-windows-2003-mismatched-service-packs/' addthis:title='IIS and Windows 2003 Mismatched Service Packs '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ofonesandzeros.com/2008/09/11/iis-and-windows-2003-mismatched-service-packs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer (IE) crashing accessing SharePoint lists</title>
		<link>http://www.ofonesandzeros.com/2008/03/04/internet-explorer-ie-crashing-accessing-sharepoint-lists/</link>
		<comments>http://www.ofonesandzeros.com/2008/03/04/internet-explorer-ie-crashing-accessing-sharepoint-lists/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 15:47:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.ofonesandzeros.com/2008/03/04/internet-explorer-ie-crashing-accessing-sharepoint-lists/</guid>
		<description><![CDATA[If you have clients with a mix of Office 2003 and Office 2007 components (for instance Word 2003, Excel 2003, but SharePoint Designer 2007), they may experience intermittent Internet Explorer crashes.&#160; The following hotfix from Microsoft corrects this issue: http://support.microsoft.com/kb/938888<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2008/03/04/internet-explorer-ie-crashing-accessing-sharepoint-lists/' addthis:title='Internet Explorer (IE) crashing accessing SharePoint lists '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></description>
			<content:encoded><![CDATA[<p>If you have clients with a mix of Office 2003 and Office 2007 components (for instance Word 2003, Excel 2003, but SharePoint Designer 2007), they may experience intermittent Internet Explorer crashes.&#160; The following hotfix from Microsoft corrects this issue:</p>
<p><a href="http://support.microsoft.com/kb/938888">http://support.microsoft.com/kb/938888</a></p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2008/03/04/internet-explorer-ie-crashing-accessing-sharepoint-lists/' addthis:title='Internet Explorer (IE) crashing accessing SharePoint lists '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ofonesandzeros.com/2008/03/04/internet-explorer-ie-crashing-accessing-sharepoint-lists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Import Spreadsheet &#8211; &#8220;Cannot connect to the server at this time.&#8221;</title>
		<link>http://www.ofonesandzeros.com/2008/03/04/import-spreadsheet-cannot-connect-to-the-server-at-this-time/</link>
		<comments>http://www.ofonesandzeros.com/2008/03/04/import-spreadsheet-cannot-connect-to-the-server-at-this-time/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 15:31:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blog.ofonesandzeros.com/2008/03/04/import-spreadsheet-cannot-connect-to-the-server-at-this-time/</guid>
		<description><![CDATA[Ran into an issue today with trying to import an Excel 2003 spreadsheet into a SharePoint list.&#160; SharePoint would load Excel, then you select the cells in Excel that you want to import, you click Import and Excel responds with &#34;Cannot connect to the server at this time.&#34;&#160; After a long while searching for a [...]<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2008/03/04/import-spreadsheet-cannot-connect-to-the-server-at-this-time/' addthis:title='Import Spreadsheet &#8211; &#8220;Cannot connect to the server at this time.&#8221; '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></description>
			<content:encoded><![CDATA[<p>Ran into an issue today with trying to import an Excel 2003 spreadsheet into a SharePoint list.&#160; SharePoint would load Excel, then you select the cells in Excel that you want to import, you click Import and Excel responds with &quot;Cannot connect to the server at this time.&quot;&#160; After a long while searching for a solution, I came across the following link: </p>
<p><a href="http://wss.asaris.de/sites/walsh/Lists/WSS%20FAQ/DispForm.aspx?ID=188&amp;Source=http%3A%2F%2Fwss%2Easaris%2Ede%2Fsites%2Fwalsh%2FLists%2FWSS%2520FAQ%2FIII%2520Administration%2Easpx">WSS FAQ &#8211; I cannot import from Excel 2003 to WSS. What&#8217;s&#8230;</a> </p>
<p>Basically the solution was 2 workarounds:</p>
<p>a.) Import the spreadsheet into a root site, then create a list template and use that to create the list within a subsite.</p>
<p>or</p>
<p>b.) Use Excel&#8217;s List Publishing feature to publish directly to the subsite.</p>
<p>I tested both options and they each worked equally well, I ultimately went with option B as it seemed a cleaner solution.</p>
<div><a class="addthis_button" href="//addthis.com/bookmark.php?v=250" addthis:url='http://www.ofonesandzeros.com/2008/03/04/import-spreadsheet-cannot-connect-to-the-server-at-this-time/' addthis:title='Import Spreadsheet &#8211; &#8220;Cannot connect to the server at this time.&#8221; '><img src="//cache.addthis.com/cachefly/static/btn/v2/lg-share-en.gif?9d7bd4" width="125" height="16" alt="Bookmark and Share" style="border:0"/></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.ofonesandzeros.com/2008/03/04/import-spreadsheet-cannot-connect-to-the-server-at-this-time/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic
Database Caching 1/23 queries in 0.061 seconds using disk: basic
Object Caching 672/717 objects using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: dfcv747gi313t.cloudfront.net

Served from: www.ofonesandzeros.com @ 2012-02-05 11:53:30 -->
