<?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>Communicate Through Technology &#187; Sharepoint WSS</title>
	<atom:link href="http://www.marbleblue.co.uk/category/sharepoint-wss/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marbleblue.co.uk</link>
	<description>Web Development, Database Development, Sharepoint Development, Creating websites and we applications using the latest and greatest technologies, Hertfordshire, London, England, UK, Developers and Programmers.</description>
	<lastBuildDate>Sun, 28 Aug 2011 21:20:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Component to Connect to Active Directory with Sharepoint WSS</title>
		<link>http://www.marbleblue.co.uk/sharepoint-wss-and-active-directory/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=sharepoint-wss-and-active-directory</link>
		<comments>http://www.marbleblue.co.uk/sharepoint-wss-and-active-directory/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 18:40:20 +0000</pubDate>
		<dc:creator>Kushel</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Sharepoint WSS]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[Assembly]]></category>
		<category><![CDATA[component]]></category>
		<category><![CDATA[connection details]]></category>
		<category><![CDATA[connection string]]></category>
		<category><![CDATA[global assembly]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[SafeControl]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[sharepoint server]]></category>
		<category><![CDATA[string username]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[View]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WSS]]></category>
		<category><![CDATA[WSS 3.0]]></category>

		<guid isPermaLink="false">http://www.marbleblue.co.uk/blog/?p=10</guid>
		<description><![CDATA[Download a component for your Sharepoint (WSS) Intranet to connect to the Active Directory(AD) via LDAP. This component will allow users to search for colleagues in the AD. It will also allow users to update their own contact details. This component requires Window Authenticated access to your Intranet.

Click on the title above to read more...


Related posts:<ol><li><a href='http://www.marbleblue.co.uk/failure-adding-assembly-to-the-cache-unknown-error/' rel='bookmark' title='Permanent Link: Failure adding assembly to the cache: Unknown Error &#8211; GACUtil'>Failure adding assembly to the cache: Unknown Error &#8211; GACUtil</a> <small>A solution for: Failure adding assembly to the cache: Unknown Error - when adding an Assembly to the Global Assembley Cache (GAC) Click on the title to read more......</small></li><li><a href='http://www.marbleblue.co.uk/sharepoint-wss-intranet-portal/' rel='bookmark' title='Permanent Link: Sharepoint WSS 3.0 Intranet Portal and Document Repository'>Sharepoint WSS 3.0 Intranet Portal and Document Repository</a> <small>A Sharepoint WSS 3.0 based Intranet Portal and Document Repository for Pulse Healthcare. Click on the title above to read more......</small></li><li><a href='http://www.marbleblue.co.uk/alphabet-selector-web-server-control/' rel='bookmark' title='Permanent Link: Alphabet Selector Web Server Control'>Alphabet Selector Web Server Control</a> <small>A free control will display the alphabet, A to Z, where each letter is clickable. On clicking a letter, an event is raised detailing the letter which was clicked. This letter can then be captured and used as needed, for example to display a set of results beginning with the specific letter. Click the title above to read more......</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p>A set of three component for your Sharepoint (WSS) Intranet to connect to the Active Directory(AD) via LDAP. This component will allow users to search for colleagues in the AD. It will also allow users to update their own contact<span id="more-10"></span> details. This component requires Window Authenticated access to your Intranet.</p>
<p>Click <a href="http://www.marbleblue.co.uk/Downloads/SharepointADComponents/Kushel.Com.ADUserComponents.zip">HERE</a> to download.</p>
<p>Summary:</p>
<ul>
<li>search for AD users using LDAP</li>
<li>view details of a selected AD user using LDAP</li>
<li>allow AD user&#8217;s to edit only their own AD contact details using LDAP</li>
</ul>
<p><center><img src="http://www.marbleblue.co.uk/Downloads/SharepointADComponents/dirsearch.gif" alt="Directory Search" /></center></p>
<p>Before using any of these components, you will need to know your LDAP connection string, username and password. Once the components have been added to your Sharepoint site as web parts, you will need to &#8216;Modify the web part&#8217;, to add the connection details.</p>
<p>Once downloaded, copy each dll into the global assembly cache on your Sharepoint server(C:\Windows\Assembley). Right click on the assembly in the GAC to retrieve the &#8216;Public Key Token&#8217; from the properties.</p>
<p>Add the following entries to the web.config file of your Sharepoint site (change the public key tokens if necessary):</p>
<p><code></p>
<pre class="vb">SafeControl Assembly="ActiveDirectorySearch, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=81cbcca0d610705b"
Namespace="Kushel.Com.WSSADSearch" TypeName="*" Safe="True"

SafeControl Assembly="ActiveDirectoryUserProfile, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=b5bf2e0d7a1500e2"
Namespace="Kushel.Com.WSSADUserProfile" TypeName="*" Safe="True"

SafeControl Assembly="ActiveDirectoryEditUserProfile, Version=1.0.0.0,
Culture=neutral, PublicKeyToken=4a6f057aa1895b65"
Namespace="Kushel.Com.WSSADEditUserProfile" TypeName="*" Safe="True"
</pre>
<p></code></p>
<p>Please note, these components are very simple and not excessively configurable. If you need help in using them, or want the code to expand on yourself, please add a comment below (and if you have twitter, please hit the tweet button at the start of the article).</p>


<p>Related posts:<ol><li><a href='http://www.marbleblue.co.uk/failure-adding-assembly-to-the-cache-unknown-error/' rel='bookmark' title='Permanent Link: Failure adding assembly to the cache: Unknown Error &#8211; GACUtil'>Failure adding assembly to the cache: Unknown Error &#8211; GACUtil</a> <small>A solution for: Failure adding assembly to the cache: Unknown Error - when adding an Assembly to the Global Assembley Cache (GAC) Click on the title to read more......</small></li><li><a href='http://www.marbleblue.co.uk/sharepoint-wss-intranet-portal/' rel='bookmark' title='Permanent Link: Sharepoint WSS 3.0 Intranet Portal and Document Repository'>Sharepoint WSS 3.0 Intranet Portal and Document Repository</a> <small>A Sharepoint WSS 3.0 based Intranet Portal and Document Repository for Pulse Healthcare. Click on the title above to read more......</small></li><li><a href='http://www.marbleblue.co.uk/alphabet-selector-web-server-control/' rel='bookmark' title='Permanent Link: Alphabet Selector Web Server Control'>Alphabet Selector Web Server Control</a> <small>A free control will display the alphabet, A to Z, where each letter is clickable. On clicking a letter, an event is raised detailing the letter which was clicked. This letter can then be captured and used as needed, for example to display a set of results beginning with the specific letter. Click the title above to read more......</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.marbleblue.co.uk/sharepoint-wss-and-active-directory/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Failure adding assembly to the cache: Unknown Error &#8211; GACUtil</title>
		<link>http://www.marbleblue.co.uk/failure-adding-assembly-to-the-cache-unknown-error/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=failure-adding-assembly-to-the-cache-unknown-error</link>
		<comments>http://www.marbleblue.co.uk/failure-adding-assembly-to-the-cache-unknown-error/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 10:16:15 +0000</pubDate>
		<dc:creator>Kushel</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Sharepoint WSS]]></category>
		<category><![CDATA[Assembly]]></category>
		<category><![CDATA[dll]]></category>
		<category><![CDATA[Failure adding assembly to the cache]]></category>
		<category><![CDATA[Failure adding assembly to the cache: Unknown Error]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[framework software]]></category>
		<category><![CDATA[framework version]]></category>
		<category><![CDATA[GACUtil]]></category>
		<category><![CDATA[global assembly]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[Sharepoint]]></category>
		<category><![CDATA[software development kit]]></category>
		<category><![CDATA[WSS]]></category>
		<category><![CDATA[WSS 3.0]]></category>

		<guid isPermaLink="false">http://www.marbleblue.co.uk/blog/?p=5</guid>
		<description><![CDATA[A solution for: Failure adding assembly to the cache: Unknown Error - when adding an Assembly to the Global Assembley Cache (GAC)

Click on the title to read more...


Related posts:<ol><li><a href='http://www.marbleblue.co.uk/sharepoint-wss-and-active-directory/' rel='bookmark' title='Permanent Link: Component to Connect to Active Directory with Sharepoint WSS'>Component to Connect to Active Directory with Sharepoint WSS</a> <small>Download a component for your Sharepoint (WSS) Intranet to connect to the Active Directory(AD) via LDAP. This component will allow users to search for colleagues in the AD. It will also allow users to update their own contact details. This component requires Window Authenticated access to your Intranet. Click on the title above to read more......</small></li><li><a href='http://www.marbleblue.co.uk/alphabet-selector-web-server-control/' rel='bookmark' title='Permanent Link: Alphabet Selector Web Server Control'>Alphabet Selector Web Server Control</a> <small>A free control will display the alphabet, A to Z, where each letter is clickable. On clicking a letter, an event is raised detailing the letter which was clicked. This letter can then be captured and used as needed, for example to display a set of results beginning with the specific letter. Click the title above to read more......</small></li><li><a href='http://www.marbleblue.co.uk/add-featured-video-to-wordpress-home/' rel='bookmark' title='Permanent Link: Adding a Featured Video Section to a Wordpress Homepage'>Adding a Featured Video Section to a Wordpress Homepage</a> <small>Instructions on how I created the Featured Video section on my homepage. Click the title above to read more......</small></li></ol>]]></description>
			<content:encoded><![CDATA[<p><strong>GACUtil.exe /if</strong></p>
<p>gives you:<em> Failure adding assembly to the cache: Unknown Error</em><br />
<span id="more-5"></span><br />
If you come across this error when attempting to add an assembly (such as a Sharepoint Web Part) to your Global Assembly Cache (GAC), one possibility could be that you are not using the GACUtil utility for the correct .Net Framework version you need (check the path to your GACUtil utility).</p>
<p>If the above is true, install the .Net Framework Software Development Kit (SDK) for the .Net Framework version you require, then use the GACUtil that comes with this.</p>
<p>(I was attempting to use GACUtil from my .Net Framework 1.14.. directory. There was no other GACUtil on my system. My default .Net Framework was v2.0 &#8211; downloaded Framework 2.0 sdk and bang, used the GACUtil that came with this successfully).</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=fe6f2099-b7b4-4f47-a244-c96d69c35dec&#038;displaylang=en" target="_blank"><em>.Net Framework 2.0 SDK</em></a></p>
<p><!--more--></p>


<p>Related posts:<ol><li><a href='http://www.marbleblue.co.uk/sharepoint-wss-and-active-directory/' rel='bookmark' title='Permanent Link: Component to Connect to Active Directory with Sharepoint WSS'>Component to Connect to Active Directory with Sharepoint WSS</a> <small>Download a component for your Sharepoint (WSS) Intranet to connect to the Active Directory(AD) via LDAP. This component will allow users to search for colleagues in the AD. It will also allow users to update their own contact details. This component requires Window Authenticated access to your Intranet. Click on the title above to read more......</small></li><li><a href='http://www.marbleblue.co.uk/alphabet-selector-web-server-control/' rel='bookmark' title='Permanent Link: Alphabet Selector Web Server Control'>Alphabet Selector Web Server Control</a> <small>A free control will display the alphabet, A to Z, where each letter is clickable. On clicking a letter, an event is raised detailing the letter which was clicked. This letter can then be captured and used as needed, for example to display a set of results beginning with the specific letter. Click the title above to read more......</small></li><li><a href='http://www.marbleblue.co.uk/add-featured-video-to-wordpress-home/' rel='bookmark' title='Permanent Link: Adding a Featured Video Section to a Wordpress Homepage'>Adding a Featured Video Section to a Wordpress Homepage</a> <small>Instructions on how I created the Featured Video section on my homepage. Click the title above to read more......</small></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.marbleblue.co.uk/failure-adding-assembly-to-the-cache-unknown-error/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

