<?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>Search Nuggets &#187; FAST Search for SharePoint</title>
	<atom:link href="http://blog.comperiosearch.com/blog/tag/fast-search-for-sharepoint/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.comperiosearch.com</link>
	<description>A blog about Search as THE solution</description>
	<lastBuildDate>Mon, 13 Jun 2016 08:59:45 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
	<item>
		<title>Content Enrichment Web Service SharePoint 2013 &#8211; Advantages and Challenges</title>
		<link>http://blog.comperiosearch.com/blog/2016/04/26/content-enrichment-web-service-sharepoint-2013/</link>
		<comments>http://blog.comperiosearch.com/blog/2016/04/26/content-enrichment-web-service-sharepoint-2013/#comments</comments>
		<pubDate>Tue, 26 Apr 2016 11:23:22 +0000</pubDate>
		<dc:creator><![CDATA[Mridu Agarwal]]></dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[CEWS]]></category>
		<category><![CDATA[Content Enrichment Web Service]]></category>
		<category><![CDATA[FAST Search for SharePoint]]></category>
		<category><![CDATA[SharePoint 2013 Search]]></category>

		<guid isPermaLink="false">http://blog.comperiosearch.com/?p=4017</guid>
		<description><![CDATA[If you have worked with search solutions before, you will know that very often there is a need to process data before it can be displayed in search results. This processing might be required to address some of(but not limited to) these common issues: Missing metadata issues Inconsistent metadata issues Cleansing of content Integration of semantic [...]]]></description>
				<content:encoded><![CDATA[<p>If you have worked with search solutions before, you will know that very often there is a need to process data before it can be displayed in search results. This processing might be required to address some of(but not limited to) these common issues:</p>
<ul>
<li>Missing metadata issues</li>
<li>Inconsistent metadata issues</li>
<li>Cleansing of content</li>
<li>Integration of semantic layers/Automatic tagging</li>
<li>Integration with 3rd party service</li>
<li>Merging data from other sources</li>
</ul>
<p><strong>Content Enrichment Web Service</strong> in SharePoint 2013 is a SOAP-based service within the content processing component that can be used to achieve this. The figure below shows a part of the process that takes place in the content processing component of SharePoint search. <img src="https://i-msdn.sec.s-msft.com/dynimg/IC618173.gif" alt="Content enrichment within content processing" width="481" height="286" /></p>
<p>Content Enrichment Web Service SharePoint 2013 combines the goodness of both <strong>FAST for SharePoint Search</strong> and <strong>SharePoint Search </strong> to offer a whole new set of possibilities and has its own challenges. To see an implementation example, check the <a href="https://msdn.microsoft.com/en-us/library/office/jj163982.aspx">MSDN link</a> which pretty much sums up the basic steps. In this post we are going to look at some of the advantages and challenges of CEWS coming from a FAST 2010 background:</p>
<p>1.<strong> CEWS is a service and you DON&#8217;T have to deploy it in your SharePoint environment</strong>: Perhaps this is the biggest architectural change  from the content processing perspective. What this means is that your code no longer runs in a sandbox environment within <strong>SharePoint Server</strong>. The webservice can be hosted anywhere outside your SharePoint server thus reducing deployment headaches and huge number of approvals required to deploy the executable files. I can see operations/infrastructure team/administrators smiling.</p>
<p>2.<strong>The web service processes and returns managed properties, not crawled properties: </strong>Managed properties correspond to what actually gets indexed and displayed in search results. So, this reduces some of the confusion as why I cant see the updated results( perhaps you had forgotten to map your crawled property to a managed property and wait you will have to index it AGAIN!). Nightmare!</p>
<p>3. <strong>You can define a trigger to limit the set of items that are processed by the web service: </strong>In FAST 2010, each item had to pass through the pipeline whether you wanted to process it or not. This check had to be done in the code. Trigger in 2013 will allow us to define this check outside the code so that only for selected content, web service is called. This will optimize the overall performance and improve crawling time, if you only want to process a subset of the content.</p>
<blockquote><p>So far, so good! But.. there are certain challenges we need to look at and see how we can overcome it. In fact, this is the most important part when you are architecting your CEWS solution:</p></blockquote>
<p>1. <strong>The content enrichment callout step can only be configured with a single web service endpoint :</strong> Now this sounds very limiting.  I have multiple search applications and earlier I maintained the logic in different solutions. Do I need to combine them all into a single service? What about the maintenance and change request? Well there are several possible technologies one could consider to solve this but what I did in my project was to create a WCF routing service and let the routing service handle my multiple web services based on filters. You could also use it to implement load-balancing and fault tolerance. Here in the following example, I have two content sources &#8220;xmlfile&#8221; and &#8220;EpiFileShare&#8221;. I want to have two different services &#8220;xmlsvc&#8221; and &#8220;episvc&#8221; to process these different sources. This is how I will configure the end points in my WCF Routing Service:   <a href="http://blog.comperiosearch.com/wp-content/uploads/2016/01/router.png"><img class="aligncenter  wp-image-4027" src="http://blog.comperiosearch.com/wp-content/uploads/2016/01/router-1024x278.png" alt="endpoints" width="708" height="192" /></a> 2.<strong> Only one condition can be configured for Trigger. Different search application will require different triggers: </strong>Now, this can again be solved by using WCF routers and filters and configuring separate endpoints for separate triggers. Here I am using default managed property &#8220;ContentSource&#8221; as a trigger/filter to determine my service endpoint. <a href="http://blog.comperiosearch.com/wp-content/uploads/2016/01/rouyer.png"><img class="aligncenter wp-image-4025 " src="http://blog.comperiosearch.com/wp-content/uploads/2016/01/rouyer-1024x286.png" alt="config file" width="737" height="206" /></a> To summarize, I have shown some of the advantages and challenges of the new CEWS architecture in SharePoint 2013 search and how you can overcome it. Hope that now you want  to try this soon and share your experience with us.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.comperiosearch.com/blog/2016/04/26/content-enrichment-web-service-sharepoint-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comperio Still Likes FAST ESP</title>
		<link>http://blog.comperiosearch.com/blog/2012/07/30/comperio-still-likes-fast-esp/</link>
		<comments>http://blog.comperiosearch.com/blog/2012/07/30/comperio-still-likes-fast-esp/#comments</comments>
		<pubDate>Mon, 30 Jul 2012 10:26:08 +0000</pubDate>
		<dc:creator><![CDATA[Arnstein Andreassen]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Amazon Cloud Search]]></category>
		<category><![CDATA[AMS]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[Comperio Front]]></category>
		<category><![CDATA[Elasticsearch]]></category>
		<category><![CDATA[enterprise search]]></category>
		<category><![CDATA[fast esp]]></category>
		<category><![CDATA[FAST ESP 5.2]]></category>
		<category><![CDATA[FAST Mainstream Support]]></category>
		<category><![CDATA[FAST R&D]]></category>
		<category><![CDATA[FAST Search and Transfer]]></category>
		<category><![CDATA[FAST Search for SharePoint]]></category>
		<category><![CDATA[Google Custom Search]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[Solr]]></category>

		<guid isPermaLink="false">http://blog.comperiosearch.com/?p=1019</guid>
		<description><![CDATA[In Comperio we are proud of our history as an advanced solution provider of FAST ESP, and as the world&#8217;s largest reseller of FAST ESP software. Comperio have been a partner and solution provider in FAST ESP since 2004, from the version titled FAST Data Search (FDS) 4.0 up to and including the current version [...]]]></description>
				<content:encoded><![CDATA[<p>In Comperio we are proud of our history as an advanced solution provider of <a href="http://www.comperiosearch.com/products/fast-esp/" target="_blank">FAST ESP</a>, and as the world&#8217;s largest reseller of FAST ESP software. Comperio have been a partner and solution provider in FAST ESP since 2004, from the version titled FAST Data Search (FDS) 4.0 up to and including the current version FAST ESP 5.3, or FSIA / FSIS (Fast Search for Internal Applications and Fast Search for Internet Applications) as it’s called in the Microsoft suite.</p>
<div class="mceTemp"><a href="http://blog.comperiosearch.com/wp-content/uploads/2012/07/FAST-ESP.png"><img class="alignnone size-full wp-image-1007" src="http://blog.comperiosearch.com/wp-content/uploads/2012/07/FAST-ESP.png" alt="FAST ESP" width="195" height="38" /></a></div>
<p>FAST ESP was, and still is, an incredibly flexible and scalable enterprise search platform and is used by customers with sophisticated search needs and a significant requirement for updating the frequency, relevance adjustments, scalability and stability. The platform has very rich semantic and linguistic characteristics, and a wide range of connectors to the underlying systems, and connection points which can search and present relevant content adapted to the users context and device. These features generate revenue and/ or reduce costs for more than 2,600 customers worldwide that use or have used the FAST ESP platform.</p>
<p>FAST Search and Transfer was acquired by Microsoft in 2007. Following the acquisition, it became clear that FAST ESP will not be continuing as an independent cross-platform search engine. FAST ESP will however, exist in <a href="http://support.microsoft.com/lifecycle/search/default.aspx?sort=PN&amp;alpha=fast&amp;Filter=FilterNO" target="_blank">mainstream support until 2013</a> (2015 for customers with a License Grant), and extended support on all OS platforms until 2018 (2020 for License Grant customers).</p>
<p>During this period it is possible and safe to use and even develop new services on the FAST ESP search engine. Our team of <a href="http://www.comperiosearch.com/services/ams/" target="_blank">Application Management Services</a> (AMS) consultants have extensive experience in the FAST and FAST ESP platform – many of them formerly worked in consultancy, support or services in Fast Search and Transfer / Microsoft.</p>
<p>While Comperio&#8217;s AMS services can customise and sustain stable operation of customers on the FAST ESP platform, we also actively advise on search strategy, design, solution architecture and new search technology, as needs and technology evolve.</p>
<p>Our long-term plan with <a href="http://www.comperiosearch.com/products/comperio-front/" target="_blank">Comperio Front</a> has been making customers less dependent on the underlying search engine, and the situation with FAST ESP shows that this has been a good strategy. For our customers with Comperio Front, we are now able to provide effective transitions to new technology platforms, as well as new corporate business models, and the search engine&#8217;s position as an information hub are preserved in Comperio Front.</p>
<p>When it comes to transitions to new technologies post the FAST ESP era, more choices and opportunities are opening up. For many traditional FAST ESP customers in e-commerce, catalog, classified ads and media, FAST for SharePoint is not necessarily a natural choice straight away, especially if they use anything other than Microsoft technology. Comperio has experience and dialogue with several customers on the transition to open source platforms and cloud services such as Solr, Elasticsearch, Amazon Cloud Search and also Google Custom Search &#8211; when called for.</p>
<p>That said, Microsoft plans to further use the advanced capabilities of FAST in their products, both in Office/SharePoint/Exchange/Office365, as well as in its search engine on the internet &#8211; Bing. Microsoft&#8217;s release of <a href="http://www.comperiosearch.com/products/fast-search/" target="_blank">FAST Search for SharePoint 2010</a> is an example of this and the next generation of Microsoft products will show this more clearly. For many FAST ESP customers in the business market, it is natural to follow this path, as long as it is possible to build the solutions they want. And this is also where Comperio Front comes in, as a building block to make it possible to customize the search based solutions in SharePoint in a flexible manner.</p>
<p>Microsoft&#8217;s development team for search, or FAST R&amp;D department, is based in Torggata, Oslo, and works closely with both the Bing and the Microsoft Office Division development teams.<br />
With Comperio’s close affiliation from a geographical, historical and technical perspective, we continue to follow the FAST / Microsoft team in their development (and vice-versa) with technical and strategic dialogue constantly held.</p>
<p>But above anything else, we want to help our clients to great search experiences!</p>
<p>You can learn more about FAST ESP at <a href="http://www.comperiosearch.com/products/fast-esp/" target="_blank">http://www.comperiosearch.com/products/fast-esp/</a> and go to <a href="http://www.comperiosearch.com" target="_blank">www.comperiosearch.com</a> to see other products and services offered by Comperio.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.comperiosearch.com/blog/2012/07/30/comperio-still-likes-fast-esp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vi liker fremdeles FAST ESP</title>
		<link>http://blog.comperiosearch.com/blog/2012/07/27/vi-liker-fremdeles-fast-esp/</link>
		<comments>http://blog.comperiosearch.com/blog/2012/07/27/vi-liker-fremdeles-fast-esp/#comments</comments>
		<pubDate>Fri, 27 Jul 2012 08:21:24 +0000</pubDate>
		<dc:creator><![CDATA[Arnstein Andreassen]]></dc:creator>
				<category><![CDATA[Norwegian]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Amazon Cloud Search]]></category>
		<category><![CDATA[AMS]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[Comperio Front]]></category>
		<category><![CDATA[Elasticsearch]]></category>
		<category><![CDATA[enterprise search]]></category>
		<category><![CDATA[fast esp]]></category>
		<category><![CDATA[FAST ESP 5.2]]></category>
		<category><![CDATA[FAST Mainstream Support]]></category>
		<category><![CDATA[FAST R&D]]></category>
		<category><![CDATA[FAST Search and Transfer]]></category>
		<category><![CDATA[FAST Search for SharePoint]]></category>
		<category><![CDATA[Google Custom Search]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[Solr]]></category>

		<guid isPermaLink="false">http://blog.comperiosearch.com/?p=1016</guid>
		<description><![CDATA[Vi i Comperio er stolte av vår historikk som avansert løsningsleverandør på FAST ESP, og som verdens største reseller av FAST ESP software. Comperio har vært partner og løsningsleverandør på FAST ESP siden 2004, fra versjonen med navn FAST Data Search (FDS) 4.0 opp til og med dagens versjon FAST ESP 5.3, eller FSIA/FSIS (Fast [...]]]></description>
				<content:encoded><![CDATA[<p>Vi i Comperio er stolte av vår historikk som avansert løsningsleverandør på <a href="http://www.comperiosearch.com/products/fast-esp/" target="_blank">FAST ESP</a>, og som verdens største reseller av FAST ESP software. Comperio har vært partner og løsningsleverandør på FAST ESP siden 2004, fra versjonen med navn FAST Data Search (FDS) 4.0 opp til og med dagens versjon FAST ESP 5.3, eller FSIA/FSIS (Fast Search for Internal Applications og Fast Search for Internet Applications) som det heter i Microsoft drakt.</p>
<p><a href="http://blog.comperiosearch.com/wp-content/uploads/2012/07/FAST-ESP.png"><img class="alignnone size-full wp-image-1007" src="http://blog.comperiosearch.com/wp-content/uploads/2012/07/FAST-ESP.png" alt="FAST ESP" width="195" height="38" /></a></p>
<p>FAST ESP var og er fremdeles en utrolig fleksibel og skalerbar enterprise search platform og blir brukt av kunder med avanserte søkebehov og ekstreme behov for oppdateringshyppighet, relevansjusteringer, skalerbarhet og stabilitet. Plattformen har meget rike semantiske og lingvistiske egenskaper, og et stort utvalg av connectorer til underliggende systemer, samt tilkoblingspunkter for å kunne søke og presentere relevant innhold tilpasset brukerens kontekst og device. Disse egenskapene er inntektskilde og kostnadsreduserende faktor for mer enn 2600 kunder verden over som benytter eller har benyttet FAST ESP plattformen.</p>
<p>FAST Search and Transfer ble kjøpt av Microsoft I 2007. Etter oppkjøpet er det etter hvert blitt klart at FAST ESP ikke blir videreført som selvstendig crossplattform søkemotor. FAST ESP vil imidlertid eksistere i <a href="http://support.microsoft.com/lifecycle/search/default.aspx?sort=PN&amp;alpha=fast&amp;Filter=FilterNO" target="_blank">mainstream support fram til 2013</a> (2015 for kunder med en Licence Grant), og extended support på alle OS plattformer fram til 2018 (2020 for License Grant kunder).</p>
<p>I denne perioden er det fullt mulig og trygt å benytte og til og med utvikle nye tjenester på FAST ESP søkemotor. Vårt team av <a href="http://www.comperiosearch.com/services/ams/" target="_blank">Application Management Services</a>  (AMS) konsulenter har lang fartstid fra FAST og med FAST ESP plattformen., og har blant annet jobbet med konsulenttjenster, AMS og support internt hos Fast Search and Transfer/Microsoft. Samtidig som vi med våre AMS tjenester kan oppretteholde stabil drift av din FAST ESP plattform, vil vi være aktive rådgivere og løsningsarktekter over på en ny søketeknologi ettersom behovene melder seg.</p>
<p>Vår langsiktige plan med <a href="http://www.comperiosearch.com/products/comperio-front/" target="_blank">Comperio Front</a> har vært å gjøre våre kunder mindre avhengige av underliggende søkemotor, og situasjonen med FAST ESP viser at dette har vært en god anbefaling. For våre kunder med Comperio Front er vi nå i stand til å tilby effektive  overganger til nye teknologiplattformer, samtidig som bedriftens forretningslogikk og søkemotorens posisjon som  informasjonsnav er ivaretatt i Comperio Front.</p>
<p>Når det gjelder overgangene til nye teknologier i en etter FAST ESP- era er det flere valg og muligheter som åpner seg. For mange tradisjonelle FAST ESP kunder innen ehandel, katalog, rubrikk og media er ikke FAST for Sharepoint nødvendigvis er et naturlig valg for øyeblikket, spesielt ikke dersom man ellers benytter noe annet enn Microsoft teknologi. Comperio har erfaring og dialog med flere kunder om overgang til opensource plattformer og Cloudtjenester som Solr, Elasticsearch og Amazon Cloudsearch, og også Google Custom Search, alt etter behov.</p>
<p>Når dette er sagt er Microsoft&#8217;s plan framover å bruke de avanserte egenskapene til FAST i sine produkter videre, både for kontorstøtte i Office/Sharepoint/Exchange/Office365, så vel som i sin søkemotor på internett – Bing. Microsofts release av <a href="http://www.comperiosearch.com/products/fast-search/" target="_blank">FAST Search for Sharepoint 2010</a> er et eksempel på dette, og neste generasjons Microsoft produkter vil vise dette enda tydeligere. For mange FAST ESP kunder i bedriftsmarkedet er det naturlig å følge dette sporet, så lenge det er mulig å bygge de løsningene man ønsker. Og også her er kommer Comperio Front inn som en byggestein for å gjøre det mulig å tilpasse søkebaserte løsninger i Sharepoint på en fleksibel måte.</p>
<p>Microsofts utviklingsteam for søk er lokalisert med basis i FAST R&amp;D avdeling i Torggata Oslo, og samarbeider tett med så vel Bing som Microsoft Office sine utviklingsteam. Med vår nære tilknytning, geografisk, historisk og teknisk fortsetter Comperio å følge FAST/Microsoft i deres videre utvikling, og vårt Microsoft team er hele tiden i Front med det nye som leveres fra Microsoft.</p>
<p>Men først av alt ønsker vi å hjelpe våre kunder til gode søkeopplevelser!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.comperiosearch.com/blog/2012/07/27/vi-liker-fremdeles-fast-esp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Err is Human: eliminating search errors</title>
		<link>http://blog.comperiosearch.com/blog/2012/06/29/to-err-is-human-elminating-search-errors/</link>
		<comments>http://blog.comperiosearch.com/blog/2012/06/29/to-err-is-human-elminating-search-errors/#comments</comments>
		<pubDate>Fri, 29 Jun 2012 13:27:40 +0000</pubDate>
		<dc:creator><![CDATA[Enda Flynn]]></dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Beyond Search]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[end user errors]]></category>
		<category><![CDATA[enterprise search]]></category>
		<category><![CDATA[FAST Search for SharePoint]]></category>
		<category><![CDATA[sharepoint]]></category>
		<category><![CDATA[Sprint 0]]></category>

		<guid isPermaLink="false">http://blog.comperiosearch.com/?p=984</guid>
		<description><![CDATA[For even the most well-planned enterprise search projects, there is still going to be a variable factor &#8211; that variable is people, or end users. Even those with the sharpest minds and walls full of certificates and diplomas are prone to making mistakes when it comes to interfacing with technology. Comperio&#8217;s &#8220;Sprint Zero&#8221; approach can uncover some of [...]]]></description>
				<content:encoded><![CDATA[<p>For even the most well-planned enterprise search projects, there is still going to be a variable factor &#8211; that variable is people, or end users. Even those with the sharpest minds and walls full of certificates and diplomas are prone to making mistakes when it comes to interfacing with technology. Comperio&#8217;s &#8220;<a href="http://www.comperiosearch.com/services/search-consulting/" target="_blank">Sprint Zero</a>&#8221; approach can uncover some of the issues commonly met by users and even the nature of errors being made. The method involves extensive end user interviews and search log analysis, which help establish users priorities, their way of working and what they actually need from an enterprise search solution - as opposed to what they think they need.</p>
<p>Here&#8217;s an interesting article from <a href="http://arnoldit.com/wordpress/2012/06/27/comperio-provides-a-safety-net-at-sharepoint/" target="_blank">Beyond Search</a> which looks further into this topic:</p>
<p><a href="http://arnoldit.com/wordpress/2012/06/27/comperio-provides-a-safety-net-at-sharepoint/" target="_blank">Comperio Provides a Safety Net at SharePoint</a></p>
<p>Entering a Misspelled word during internet search can lead to a few moments of irritation, but in the business world things become even more complicated. Typing one wrong letter can often send users spiraling downward towards a promotional disaster. Fortunately, some providers are hanging up a few safety nets to prevent the fall.</p>
<p>Microsoft just revamped Bing to recognize common errors during internet search.  According to, ‘<a href="http://www.neowin.net/news/bing-reveals-efforts-to-help-with-human-search-errors" target="_blank">Bing reveals efforts to help with human search errors</a> Bing will remember key words and phrases most frequently used. To correct issues the search feature itself was altered as:</p>
<blockquote><p>“We used to show synonyms as part of our recourse links and this would open up some surface area for showing alterations. The query “define interesting” highlights an example where the recourse link was unnecessary.  In this case, showing the Recourse Link didn’t enhance the experience. We’ve removed the Recourse Links in cases where we are very confident that they add little <a href="http://www.neowin.net/news/bing-reveals-efforts-to-help-with-human-search-errors">value</a> or distract users.”</p></blockquote>
<p>Basically, Microsoft created a net to catch errors in advance and Comperio can implement similar functions within SharePoint using Fast technology. The safety net Comperio provides can help catch users before they fall into the uncomfortable realm of presentation faux pas.  They can customize the programming towards the specific needs of the business to increase efficiency.</p>
<p>For more information about Comperio, visit the company website at <a href="http://www.comperiosearch.com/" target="_blank">http://www.comperiosearch.com/</a>.</p>
<p>via Jennifer Shockley, June 27, 2012</p>
<p><a href="http://arnoldit.com/wordpress/2012/06/27/comperio-provides-a-safety-net-at-sharepoint/" target="_blank">Beyond Search</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.comperiosearch.com/blog/2012/06/29/to-err-is-human-elminating-search-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document Previews: Necessary but Tricky in Some SharePoint Installations</title>
		<link>http://blog.comperiosearch.com/blog/2012/06/25/document-previews-necessary-but-tricky-in-some-sharepoint-installations/</link>
		<comments>http://blog.comperiosearch.com/blog/2012/06/25/document-previews-necessary-but-tricky-in-some-sharepoint-installations/#comments</comments>
		<pubDate>Mon, 25 Jun 2012 13:29:05 +0000</pubDate>
		<dc:creator><![CDATA[Enda Flynn]]></dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[BA Insight]]></category>
		<category><![CDATA[Beyond Search]]></category>
		<category><![CDATA[document previews]]></category>
		<category><![CDATA[fast search]]></category>
		<category><![CDATA[FAST Search for SharePoint]]></category>
		<category><![CDATA[sharepoint]]></category>

		<guid isPermaLink="false">http://blog.comperiosearch.com/?p=965</guid>
		<description><![CDATA[Thumbnails and previews are a very useful aspect of FAST Search for SharePoint. This feature makes the results of a search query visual, allowing users to recognise the right content faster! Here&#8217;s an interesting post from Beyond Search on this topic &#8211; it should be noted that document previews is in fact a FAST Search for SharePoint feature, [...]]]></description>
				<content:encoded><![CDATA[<p>Thumbnails and previews are a very useful aspect of FAST Search for SharePoint. This feature makes the results of a search query visual, allowing users to recognise the right content faster! Here&#8217;s an interesting post from <a href="http://arnoldit.com/wordpress/2012/06/22/document-previews-necessary-but-tricky-in-some-sharepoint-installations/" target="_blank">Beyond Search </a>on this topic &#8211; it should be noted that document previews is in fact a FAST Search for SharePoint feature, as opposed to SharePoint 2010 Search as implied by the piece. Comperio&#8217;s Enterprise Search consultants work with customers to understand user needs, whether it&#8217;s visual previews or contextual search, and blends these needs with business goals and technical capaibilites to deliver an effective search strategy. Learn more at <a href="http://www.comperiosearch.com/services/search-consulting/" target="_blank">http://www.comperiosearch.com/services/search-consulting/</a>.</p>
<p>Users find laundry lists of results a necessary but sometimes hard to use way to pinpoint needed information. Users looking for a PowerPoint presentation want a way to spot presentations without browsing, opening, scanning, and repeating the process. One feature of <a href="http://sharepoint.microsoft.com/en-us/Pages/default.aspx" target="_blank">SharePoint </a>is its document thumbnail and preview function. Instead of a list of text results, SharePoint can display search results with a thumbnail image of the document. Users can quickly identify a document type, which allows a research task to be accomplished more quickly.</p>
<p>There is, however, one challenge in some SharePoint installations. According to the document <a href="http://support.microsoft.com/kb/2554903" target="_blank">Office Web App &amp; FAST Search Document Thumbnail and Preview scenarios</a>, many users found document previews and thumbnails to not show up in FAST search results for <a href="http://sharepoint.microsoft.com/en-us/Pages/default.aspx" target="_blank">SharePoint 2010</a>. Microsoft acknowledges:</p>
<blockquote><p>“Document Previews do not work with Claims Based Authentication and is a known limitation with the Product.”</p></blockquote>
<p>Microsoft’s knowledge base article provides a number of ways to resolve the problem. But what does a SharePoint administrator do when a third party application is part of the mix? The SharePoint licensee needs immediate access to deep expertise with both SharePoint and FAST search to ensure that system performance and functionality are maintained at a high level.</p>
<p><a href="http://www.comperiosearch.com/" target="_blank">Comperio</a>, one of the world’s leading firms in FAST search engineering and consulting, can resolve preview issues quickly. Comperio’s engineers have in-depth experience with both SharePoint and FAST search. If you want to tap document previews using Microsoft’s native functions or employ third party software from firms such as BA Insight (<a href="http://www.bainsight.com" target="_blank">www.bainsight.com</a>), Comperio delivers. Comperio combines experience and technical expertise for leveraging FAST search within SharePoint. For more information about Comperio, visit our website at <a href="http://www.comperiosearch.com">www.comperiosearch.com</a>.</p>
<p>via Jennifer Shockley, June 22, 2012</p>
<p><a href="http://arnoldit.com/wordpress/2012/06/22/document-previews-necessary-but-tricky-in-some-sharepoint-installations/" target="_blank">Beyond Search </a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.comperiosearch.com/blog/2012/06/25/document-previews-necessary-but-tricky-in-some-sharepoint-installations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
