<?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>NetworkedPlanet Blog</title>
	<atom:link href="http://blogs.networkedplanet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.networkedplanet.com</link>
	<description>Insights into developing with NetworkedPlanet products</description>
	<lastBuildDate>Fri, 30 Jul 2010 08:58:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Web3 and Concepts for SharePoint 1.0 Releases Now Available</title>
		<link>http://blogs.networkedplanet.com/sharepoint-module/web3-and-cfs-1-0-release/</link>
		<comments>http://blogs.networkedplanet.com/sharepoint-module/web3-and-cfs-1-0-release/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 08:58:31 +0000</pubDate>
		<dc:creator>Kal</dc:creator>
				<category><![CDATA[Product Announcements]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[Web3]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=188</guid>
		<description><![CDATA[We are very pleased to announce the immediate availability of the 1.0 release of our Web3 Platform and Concepts for SharePoint products.
The Web3 Platform is our "next-generation" structured information server built on the foundation of topic maps but with support for Linked Data standards including RDF and the SPARQL query language. The Web3 Platform provides [...]]]></description>
			<content:encoded><![CDATA[<p>We are very pleased to announce the immediate availability of the 1.0 release of our Web3 Platform and Concepts for SharePoint products.</p>
<p>The Web3 Platform is our "next-generation" structured information server built on the foundation of topic maps but with support for Linked Data standards including RDF and the SPARQL query language. The Web3 Platform provides a fully-featured REST API making it possible to create applications in almost any programming language and to quickly and easily integrate structured information into existing applications and websites. The Web3 service provides full support for the topic maps data model and support for browsing content as Linked Data RDF as well as providing a SPARQL endpoint that implements support for querying topic map data as RDF as well as querying at the detailed topic map data model level.</p>
<p>Concepts for SharePoint is simply the best way to organise, search for and find content on a SharePoint 2010 server. It integrates with and extends the taxonomy features of SharePoint 2010, allowing users to create richly interconnected data models that reflect the business in which they work. Unlike the tags in a standard SharePoint 2010 taxonomy, the concepts in Concepts for SharePoint can be made available as published pages complete with links to other concepts and to related content across the whole SharePoint server.</p>
<p>Both products are available for evaluation. <a href="http://www.networkedplanet.com/downloads/">Download them now!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/sharepoint-module/web3-and-cfs-1-0-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using HTTP Verbs to describe Server Side Transactions</title>
		<link>http://blogs.networkedplanet.com/theory-and-practice/using-http-verbs-to-describe-server-side-transactions/</link>
		<comments>http://blogs.networkedplanet.com/theory-and-practice/using-http-verbs-to-describe-server-side-transactions/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 07:21:14 +0000</pubDate>
		<dc:creator>Graham Moore</dc:creator>
				<category><![CDATA[Theory and Practice]]></category>
		<category><![CDATA[Web3]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=193</guid>
		<description><![CDATA[One of the challenges of putting together a REST service is how to let clients make transactional updates that involve two or more resources. One approach to this problem is to create a resource that is 'a collection of transactions'. A client can post a representation of a new transaction to this resource. The transaction [...]]]></description>
			<content:encoded><![CDATA[<p>One of the challenges of putting together a REST service is how to let clients make transactional updates that involve two or more resources. One approach to this problem is to create a resource that is 'a collection of transactions'. A client can post a representation of a new transaction to this resource. The transaction becomes a 'child' of the 'transactions' resource and can be accessed via a returned URL.</p>
<p>Making the transaction explicit is good as it allows the transaction to be addressed and its status checked, it also allows for the service to return immediately and process the transaction in the background.</p>
<p>This basic pattern is good but it has a drawback in that for each different system you build you need to define the transaction language.</p>
<p>Our solution to this is to use HTTP verbs, URIs and resource representations as the building blocks of our transaction language. A transaction representation contains a number of operations. Each operation contains information about its Method, e.g. POST, PUT, DELETE, the resource URI to operate on and the request body.</p>
<p>&lt;transaction&gt;</p>
<p>&lt;operation id="a1" method="POST" Resource="http://...../somecollection"&gt;</p>
<p>&lt;body&gt;&lt;!-- resource representation --&gt;&lt;/body&gt;</p>
<p>&lt;/operation&gt;</p>
<p>.. more operations</p>
<p>&lt;/transaction&gt;</p>
<p>The server processes a transaction by looking at each operation construct and operating on it as though the request has come from a client. The only difference is that all of the operations listed occur in a single transaction.</p>
<p>Each operation has a local id. When an operation completes the return URL from the operation is bound to that identifier. The identifier can then be used later in the transaction. This is especially useful when you want to create two new resources and then associate them together all in the same transaction.</p>
<p>After a transaction is processed the representation can be retrieved. The representation contains the URLs of newly created resources, as well as an errors information that occurred when processing the transaction.</p>
<p>This is a very powerful model that removes the need to create a domain specific transaction language for different applications, can reuse  existing resource processing code and is very descriptive.</p>
<p>For more information about this approach, download and review the REST service documentation for the <a href="http://www.networkedplanet.com/products/web3">Web3 Platform</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/theory-and-practice/using-http-verbs-to-describe-server-side-transactions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New NetworkedPlanet Support Forums</title>
		<link>http://blogs.networkedplanet.com/services/new-networkedplanet-support-forums/</link>
		<comments>http://blogs.networkedplanet.com/services/new-networkedplanet-support-forums/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 10:40:46 +0000</pubDate>
		<dc:creator>Kal</dc:creator>
				<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=185</guid>
		<description><![CDATA[We have added new discussion forums for support questions about NetworkedPlanet products. We hope that by having more questions answered on these discussion groups we can help our customers find the answers to common issues more quickly. The old route for support (email to support@networkedplanet.com) also still works but we would encourage people to post [...]]]></description>
			<content:encoded><![CDATA[<p>We have added new discussion forums for support questions about NetworkedPlanet products. We hope that by having more questions answered on these discussion groups we can help our customers find the answers to common issues more quickly. The old route for support (email to support@networkedplanet.com) also still works but we would encourage people to post questions to the forum wherever possible.<br />
The forums are available at <a title="Link to the NetworkedPlanet Support site" href="http://support.networkedplanet.com/">http://support.networkedplanet.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/services/new-networkedplanet-support-forums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Module 3.2 now available</title>
		<link>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-2/sharepoint-module-3-2-now-available/</link>
		<comments>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-2/sharepoint-module-3-2-now-available/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 15:48:07 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[SharePoint Module 3.2]]></category>
		<category><![CDATA[2007]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=183</guid>
		<description><![CDATA[NetworkedPlanet are pleased to annouce the release of version 3.2 of the TMCore SharePoint Module.
The TMCore SharePoint Module is a tight integration between Microsoft SharePoint and the TMCore information management server that greatly improves the way information is organised, classified and located with Microsoft SharePoint solutions.
This new release includes all the features and enhancements of [...]]]></description>
			<content:encoded><![CDATA[<p>NetworkedPlanet are pleased to annouce the release of version 3.2 of the TMCore SharePoint Module.<br />
The TMCore SharePoint Module is a tight integration between Microsoft SharePoint and the TMCore information management server that greatly improves the way information is organised, classified and located with Microsoft SharePoint solutions.<br />
This new release includes all the features and enhancements of the SharePoint Module 3.1 hotfix 6, and is packaged to be installed on either SharePoint 2007 or <strong>SharePoint 2010</strong>.</p>
<p>Any future hotfixes to the module will be released for version 3.2 and no further codebase changes will be made on version 3.1.<br />
The new version is available as an upgrade for all customers with a current maintenance contract. For more information and download details please <a style="outline-width: 0px; outline-style: initial; outline-color: initial; vertical-align: baseline; background-image: initial; background-attachment: initial; background-origin: initial; background-clip: initial; background-color: transparent; color: #807d7a; background-position: initial initial; background-repeat: initial initial; padding: 0px; margin: 0px; border: 0px initial initial;" href="mailto:contact@networkedplanet.com">email us</a> specifying the version of SharePoint that you will be installing the SharePoint Module on.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-2/sharepoint-module-3-2-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web3 Platform Beta Now Available!</title>
		<link>http://blogs.networkedplanet.com/news/web3-platform-beta-now-available/</link>
		<comments>http://blogs.networkedplanet.com/news/web3-platform-beta-now-available/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 16:26:01 +0000</pubDate>
		<dc:creator>Kal</dc:creator>
				<category><![CDATA[Product Announcements]]></category>
		<category><![CDATA[Web3]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=181</guid>
		<description><![CDATA[The Networked Planet Web3 Platform is a complete solution for creating, organising and publishing structured semantic data. The Web3 platform stores and manages data in a schema less data store, allowing complete flexibility of the shape of the data stored.
This is the first public beta of the NetworkedPlanet Web3 Platform. This beta version is licensed [...]]]></description>
			<content:encoded><![CDATA[<p>The Networked Planet Web3 Platform is a complete solution for creating, organising and publishing structured semantic data. The Web3 platform stores and manages data in a schema less data store, allowing complete flexibility of the shape of the data stored.</p>
<p>This is the first public beta of the NetworkedPlanet Web3 Platform. This beta version is licensed for use until 31st July 2010. We are planning to refresh this Beta release on a regular basis up until the final 1.0 release is available. To keep track of update announcements please subscribe to the RSS feed of this blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/news/web3-platform-beta-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TMCore EPiServer Module v6.0.0 Released</title>
		<link>http://blogs.networkedplanet.com/episerver/episerver-module/tmcore-episerver-module-v6-0-0-released/</link>
		<comments>http://blogs.networkedplanet.com/episerver/episerver-module/tmcore-episerver-module-v6-0-0-released/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 09:06:12 +0000</pubDate>
		<dc:creator>andyturl</dc:creator>
				<category><![CDATA[EPiServer]]></category>
		<category><![CDATA[EPiServer Module]]></category>
		<category><![CDATA[episervermodule]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=174</guid>
		<description><![CDATA[TMCore EPiServer Module v6.0.0 is now for EPiServer CMS 6.  This version of the module brings compatibility with CMS 6 and is only intended for this version of EPiServer CMS. EPiServer CMS 5 R1 and later is still supported by the previous TMCore EPiServer Module which is currently v3.3.0.40.
The minimum requirements for TMCore EPiServer Module [...]]]></description>
			<content:encoded><![CDATA[<p>TMCore EPiServer Module v6.0.0 is now for EPiServer CMS 6.  This version of the module brings compatibility with CMS 6 and is only intended for this version of EPiServer CMS. EPiServer CMS 5 R1 and later is still supported by the previous TMCore EPiServer Module which is currently v3.3.0.40.</p>
<p>The minimum requirements for TMCore EPiServer Module v6.0.0 are;</p>
<p>- TMCore07 SP4</p>
<p>- EPiServer CMS 6</p>
<p>Customers with a current maintenance contract should contact <a href="mailto:support@networkedplanet.com">support@networkedplanet.com</a> to obtain the latest version module.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/episerver/episerver-module/tmcore-episerver-module-v6-0-0-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Module 3.1 Hotfix 6 now available</title>
		<link>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-1/sharepoint-module-3-1-hotfix-6-now-available/</link>
		<comments>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-1/sharepoint-module-3-1-hotfix-6-now-available/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 10:06:14 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Product Announcements]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[SharePoint Module 3.1]]></category>
		<category><![CDATA[hotfix]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[spmodule]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=172</guid>
		<description><![CDATA[A new hotfix package is available for version 3.1 of the TMCore SharePoint Module. This package addresses a small number of bugs and provides new features. The full change list can be found below.
Systems Affected
This hotfix should be applied to any installation of the TMCore SharePoint Module 3.1 downloaded before 15th March 2010. If you [...]]]></description>
			<content:encoded><![CDATA[<p>A new hotfix package is available for version 3.1 of the TMCore SharePoint Module. This package addresses a small number of bugs and provides new features. The full change list can be found below.</p>
<h3 style="font-size: 1.17em;">Systems Affected</h3>
<p>This hotfix should be applied to any installation of the TMCore SharePoint Module 3.1 downloaded before 15th March 2010. If you downloaded your copy of the software from our site on or after this date, the hotfix is included in the package and you do not need to apply it again.<br />
To determine if your system is affected, check the File Version property of the assembly NetworkedPlanet.SharePoint in the GAC (browse to C:\Windows\ASSEMBLY, locate the NetworkedPlanet.SharePoint assembly, right-click and choose Properties. The File Version can be found on the Version tab above Description and Copyright). This hotfix updates the File Version of the NetworkedPlanet.SharePoint assembly to 2.1.6.0 - if the file version shown is greater than or equal to 2.1.6.0, then you do not need to apply this hotfix.</p>
<p><strong>Pre-Requisites</strong></p>
<p>Upgrade to <a title="TMCore Service Pack 5" href="http://blogs.networkedplanet.com/tmcore/tmcore07/tmcore07-sp5-released/" target="_self">TMCore SP5</a> (if running an earlier version) to avoid issues with faceted search components in the SharePoint Module.</p>
<h3 style="font-size: 1.17em;">Upgrade Instructions</h3>
<p>1. <a title="NetworkedPlanet SharePoint Module 3.1 Hotfix 6" href="http://www.networkedplanet.com/download/SPModule/NetworkedPlanet.SharePoint.3.1.Hotfix6.zip">Download the Hotfix 6 package</a>.<br />
2. The package is provided in a compressed ZIP file. Unzip the package on a machine in the server farm.<br />
3. Upgrade the NPSharePoint.wsp solution. The exact command-line you use will depend on how you want to schedule the upgrade, but will be similar to:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;">stsadm -o upgradesolution -name NPSharePoint.wsp -filename NPSharePoint.wsp -allowgacdeployment -allowcaspolicies -local</pre>
<p>4. Restart IIS and Windows SharePoint Services Timer</p>
<h3 style="font-size: 1.17em;"><strong>Change Log</strong></h3>
<ul>
<li>ENHANCEMENT: Optimized update of associated topic fields to reduce the number of database writes required when saving a SharePoint list item.
<p>Added more logging of SharePoint object close and disposal.</li>
<li>ENHANCEMENT: Added check to ItemUpdated event receiver to check whether a double event was caused by a check-in. If so, do not do processing for check-in events.</li>
<li>BUGFIX: Amended the site deletion code so that topics for sub sites are correctly marked as superceded if the site is the root site of a site collection. This allows the WebCleanUp timer task to successfully remove any topics of the superceded sites on its next run.</li>
<li>BUGFIX: Site deletion - if a site deletion fails in SharePoint for any reason, the WebCleanUp 	timer task that runs 2 minutes after the delete event will now also check whether the site still exists and if so set the psi back to PUBLISHED.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-1/sharepoint-module-3-1-hotfix-6-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TMCore07 SP5 Released</title>
		<link>http://blogs.networkedplanet.com/tmcore/tmcore07/tmcore07-sp5-released/</link>
		<comments>http://blogs.networkedplanet.com/tmcore/tmcore07/tmcore07-sp5-released/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 09:02:19 +0000</pubDate>
		<dc:creator>Kal</dc:creator>
				<category><![CDATA[Product Announcements]]></category>
		<category><![CDATA[TMCore07]]></category>
		<category><![CDATA[hotfix]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=161</guid>
		<description><![CDATA[NetworkedPlanet today announces the release of latest version of the TMCore topic map engine. TMCore is the premiere toolkit for developers on .NET looking to harness the full power of Topic Maps in their applications. Built from the ground-up using .NET technologies, TMCore provides a flexible set of APIs and builds on the robustness, scalability, [...]]]></description>
			<content:encoded><![CDATA[<p>NetworkedPlanet today announces the release of latest version of the TMCore topic map engine. TMCore is the premiere toolkit for developers on .NET looking to harness the full power of Topic Maps in their applications. Built from the ground-up using .NET technologies, TMCore provides a flexible set of APIs and builds on the robustness, scalability, performance of Microsoft's SQL Server.</p>
<p>The new SP5 release of TMCore07 fixes a packaging issue found with the SP4 release that may prevent the faceted search features of the TMCore SharePoint Module from working correctly. Customers having a current support contract or currently evaluating TMCore may receive TMCore07 SP5 free of charge.</p>
<p>For download details please email us at contact@networkedplanet.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/tmcore/tmcore07/tmcore07-sp5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Module 3.1 Hotfix 4 now available</title>
		<link>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-1/sharepoint-module-3-1-hotfix-4-now-available/</link>
		<comments>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-1/sharepoint-module-3-1-hotfix-4-now-available/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 14:21:36 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Product Announcements]]></category>
		<category><![CDATA[SharePoint Module 3.1]]></category>
		<category><![CDATA[hotfix]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[releases]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[spmodule]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=143</guid>
		<description><![CDATA[A new hotfix package is available for version 3.1 of the TMCore SharePoint Module. This package addresses a small number of bugs and provides new features. The full change list can be found below.
Systems Affected
This hotfix should be applied to any installation of the TMCore SharePoint Module 3.1 downloaded before 10th December 2009. If you [...]]]></description>
			<content:encoded><![CDATA[<p>A new hotfix package is available for version 3.1 of the TMCore SharePoint Module. This package addresses a small number of bugs and provides new features. The full change list can be found below.</p>
<h3>Systems Affected</h3>
<p>This hotfix should be applied to any installation of the TMCore SharePoint Module 3.1 downloaded before 10th December 2009. If you downloaded your copy of the software from our site on or after this date, the hotfix is included in the package and you do not need to apply it again.<br />
To determine if your system is affected, check the File Version property of the assembly NetworkedPlanet.SharePoint in the GAC (browse to C:\Windows\ASSEMBLY, locate the NetworkedPlanet.SharePoint assembly, right-click and choose Properties. The File Version can be found on the Version tab above Description and Copyright). This hotfix updates the File Version of the NetworkedPlanet.SharePoint assembly to 2.1.4.0 - if the file version shown is greater than or equal to 2.1.4.0, then you do not need to apply this hotfix.</p>
<h3>Upgrade Instructions</h3>
<p>1. <a title="NetworkedPlanet SharePoint Module 3.1 Hotfix 4" href="http://www.networkedplanet.com/download/SPModule/NetworkedPlanet.SharePoint.3.1.Hotfix4.zip">Download the Hotfix 4 package</a>.<br />
2. The package is provided in a compressed ZIP file. Unzip the package on a machine in the server farm.<br />
3. Upgrade the NPSharePoint.wsp solution. The exact command-line you use will depend on how you want to schedule the upgrade, but will be similar to:</p>
<pre>stsadm -o upgradesolution -name NPSharePoint.wsp -filename NPSharePoint.wsp -allowgacdeployment -allowcaspolicies -local</pre>
<p>4. Upgrade the NPOfficeServer.wsp solution. Use the following STSADM command:</p>
<pre>stsadm -o upgradesolution -name NPOfficeServer.wsp -filename NPOfficeServer.wsp -allowgacdeployment -allowcaspolicies -local</pre>
<p>5. Run the following stsadm command:</p>
<pre style="font: normal normal normal 12px/18px Consolas, Monaco, 'Courier New', Courier, monospace;">stsadm -o copyappbincontent</pre>
<p>6. Restart IIS and Windows SharePoint Services Timer<br />
7. Reactivate the NPDiagnostics feature by running the stsadm command:</p>
<pre>stsadm -o activatefeature -name NPDiagnostics -force</pre>
<p>8. Upgrade Enterprise Services to the version included with the hotfix, the new version of Enterprise Services is 1.1.2.0</p>
<p>9. Restart the Topic Map Index Service</p>
<h3><strong>Change Log</strong></h3>
<ul>
<li>BUGFIX: One hop and two hop web parts were intermittently returning Deadlock errors. These have<br />
now been changed to sleep and retry up to a maximum of three times when encountering<br />
deadlock issues with the database.</li>
<li>ENHANCEMENT: Url Mappings can now feature more than one publish URL for a web application by using<br />
the zones set up when extending the SharePoint web application.</li>
<li>ENHANCEMENT: Additional diagnostic logging has been added to Url Mapping. The <strong>NPDiagnostics<br />
feature must be reactivated on the farm</strong> for this to take affect.</li>
<li>FEATURE: The stsadm remapurls command now has an optional parameter which when used skips the url<br />
remapping on content type to topic type mappings.</li>
<li>NOTE: The new hotfix of Enterprise Services has been included with this hotfix. This fixes issues with<br />
results display and ordering when using advanced faceted search restriction sets.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/sharepoint-module/sharepoint-module-3-1/sharepoint-module-3-1-hotfix-4-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enterprise Services 1.1 Hotfix 2 released</title>
		<link>http://blogs.networkedplanet.com/uncategorized/enterprise-services-1-1-hotfix-2-released/</link>
		<comments>http://blogs.networkedplanet.com/uncategorized/enterprise-services-1-1-hotfix-2-released/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 14:21:16 +0000</pubDate>
		<dc:creator>Jen</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Enterprise Services]]></category>
		<category><![CDATA[hotfix]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://blogs.networkedplanet.com/?p=156</guid>
		<description><![CDATA[We have just released a new version of Enterprise Services available for download. This release changes the way topics passed in from a result set are processed so that the search results retain the ordering of the topics passed in.
Please check the instructions contained in UPGRADE.TXT for important information on the upgrade process.
Download the updated [...]]]></description>
			<content:encoded><![CDATA[<p>We have just released a new version of Enterprise Services available for download. This release changes the way topics passed in from a result set are processed so that the search results retain the ordering of the topics passed in.<br />
Please check the instructions contained in UPGRADE.TXT for important information on the upgrade process.<a title="NetworkedPlanet Enterprise Services 1.1 Hotfix 2" href="http://www.networkedplanet.com/download/ES/NetworkedPlanet.EnterpriseServices.1.1.2.0.zip"><br />
Download the updated package</a> .</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.networkedplanet.com/uncategorized/enterprise-services-1-1-hotfix-2-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
