<?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>MC+A &#187; Google Mini</title>
	<atom:link href="http://www.mcplusa.com/blog/tag/google-mini/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mcplusa.com</link>
	<description>Connecting Business Intellingence</description>
	<lastBuildDate>Tue, 17 Jan 2012 21:54:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Displaying Search History in XSLT on your Google Mini or Google Search Appliance</title>
		<link>http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/</link>
		<comments>http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:32:11 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Example]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Recent Searches]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/</guid>
		<description><![CDATA[The Steps To Implement Search History On A Google Search Appliance or Google Mini A few weeks ago there was a thread on the Google Groups regarding how to display search history on a Google Search Appliance query results page.&#160; Our approach typically at MC+A is to utilize the xslt as much as possible as [...]]]></description>
			<content:encoded><![CDATA[<h3>The Steps To Implement Search History On A Google Search Appliance or Google Mini</h3>
<p>A few weeks ago there was a thread on the Google Groups regarding how to display search history on a <a href="/solutions/enterprise-search/google-search-appliance/">Google Search Appliance</a> query results page.&#160; Our approach typically at MC+A is to utilize the xslt as much as possible as it provides less complicated infrastructure.&#160; Because of this, we tend to utilize JQuery to provide some dynamics features to the interface.&#160; In this case, it’s search history.&#160; This article assumes you have some idea about <a href="http://jquery.com/" rel="nofollow">jQuery</a>, specifically the Ready function.  </p>
<h3>Step 1 – Create A DIV</h3>
<p>Create a HTML DIV in your results page that you would like the history to be displayed.&#160; For example:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;div id=”recentHistory”&gt;No Recent Searches&lt;/div&gt;
</pre>
<p> Note the id that you use for later in this process.  You can also place text with the div that will be displayed until the jQuery finishes loading.  </p>
<h2>Step 2 – Add A Function Call to jQuery.Ready</h2>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function(){
    setHistory(); //Function to set the Div
});</pre>
<h3>Step 3 – Add the Function Call</h3>
<p>The following function relies on 5 other functions:  </p>
<ol>
<li><strong>GetCookieVal</strong> – Get’s the Cookie Value</li>
<li><strong>GetCookie</strong> – Get’s a raw Cookie</li>
<li><strong>DeleteCookie</strong> – Delet&#8217;e’s a Cookie</li>
<li><strong>SetCookie</strong> – Set’s a Cookie</li>
<li><strong>GetParameter</strong> – Get’s a Query String Value</li>
</ol>
<pre class="brush: jscript; title: ; notranslate">
function setHistory(){
    var gsaCollection = getParameter(window.top.location.search.substring(1), &quot;site&quot;);
    var gsaClient = getParameter(window.top.location.search.substring(1), &quot;client&quot;);
    var gsaStylesheet = getParameter(window.top.location.search.substring(1), &quot;proxystylesheet&quot;);
    //var gsaAccess =getParameter(window.top.location.search.substring(1),&quot;a&quot;);
    var recentHistory = &quot;&lt;ul&gt;&quot;;
    var historyTemp = GetCookie(&quot;searchhistory&quot;);
    var history;
    if (historyTemp == null) {
        var q = getParameter(window.top.location.search.substring(1), &quot;q&quot;)
        if ((q == null) || (q == &quot;&quot;)) {
            //no history
            recentHistory = recentHistory + &quot;&lt;li&gt;None&lt;/li&gt;&quot;;
        }
        else {
            recentHistory = recentHistory + &quot;&lt;li&gt;&lt;a href=\&quot;search?site=&quot; + gsaCollection + &quot;&amp;client=&quot; +
            gsaClient +
            &quot;&amp;proxystylesheet=&quot; +
            gsaStylesheet +
            &quot;&amp;access=a&quot; +
            &quot;&amp;q=&quot; +
            q +
            &quot;&amp;output=xml_no_dtd&quot; +
            &quot;\&quot; &gt; &quot; +
            q +
            &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
            SetCookie(&quot;searchhistory&quot;, q, expiry);
        }
    }
    else {
        historyString = new String(historyTemp);
        history = historyString.split(&quot;|&quot;);
        var newHistory = new Array(5);
        var newHistoryString = &quot;&quot;;
        newHistory[0] = getParameter(window.top.location.search.substring(1), &quot;q&quot;);
        newHistoryString = newHistory[0];
        recentHistory = recentHistory + &quot;&lt;li&gt;&lt;a href=\&quot;search?site=&quot; + gsaCollection + &quot;&amp;client=&quot; +
        gsaClient +
        &quot;&amp;proxystylesheet=&quot; +
        gsaStylesheet +
        &quot;&amp;access=a&quot; +
        &quot;&amp;output=xml_no_dtd&quot; +
        &quot;&amp;q=&quot; +
        newHistory[0] +
        &quot;\&quot; &gt; &quot; +
        newHistory[0].replace(‘+’, ‘ ‘) +
        &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
        for (var i = 0; i &lt; history.length &amp; i &lt; 4; i++) {
            newHistory[i + 1] = history[i];
            newHistoryString = newHistoryString + &quot;|&quot; + history[i];
            recentHistory = recentHistory + &quot;&lt;li&gt;&lt;a href=\&quot;search?site=&quot; + gsaCollection + &quot;&amp;client=&quot; +
            gsaClient +
            &quot;&amp;proxystylesheet=&quot; +
            gsaStylesheet +
            &quot;&amp;access=a&quot; +
            &quot;&amp;output=xml_no_dtd&quot; +
            &quot;&amp;q=&quot; +
            history[i] +
            &quot;\&quot; &gt; &quot; +
            history[i].replace(‘+’, ‘ ‘) +
            &quot;&lt;/a&gt;&lt;/li&gt;&quot;;
        }
        SetCookie(&quot;searchhistory&quot;, newHistoryString, expiry);
    }
    recentHistory = recentHistory + &quot;&lt;/ul&gt;&quot;;
    document.getElementById(&quot;recentSearches&quot;).innerHTML = recentHistory;
}
</pre>
<p>I am planning on cleaning up the function and posting it here it its entirety in the next couple of days.; </p>
<p>Reply with a comment to nudge me along if I forget.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2010/03/displaying-search-history-in-xslt-on-your-google-mini-or-google-search-appliance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can the Google Mini index documents stored in Microsoft Sharepoint?</title>
		<link>http://www.mcplusa.com/blog/2009/08/can-the-google-mini-index-sharepoint/</link>
		<comments>http://www.mcplusa.com/blog/2009/08/can-the-google-mini-index-sharepoint/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:16:13 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Google SharePoint Sitemap]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://www.mcplusa.com/?p=612</guid>
		<description><![CDATA[This article shows how the Google Mini can be integrated with Microsoft SharePoint.]]></description>
			<content:encoded><![CDATA[<h3>Answer: Yes &#8211; The Google Mini Can Index documents stored in Micrsoft SharePoint!</h3>
<p><a id="single_image" href="http://www.mcplusa.com/wp-content/uploads/2009/08/sharepoint-edit1.jpg"></a></p>
<p>The <a title="Google Mini Product Page" href="http://www.google.com/enterprise/search/mini.html" target="_blank">Google Mini </a>along with the <a href="http://www.mcplusa.com/solutions/enterprise-search/google-sharepoint-sitemap">MC+A Google SharePoint Sitemap</a> can effectively be configured to crawl Microsoft SharePoint sites.  The MC+A Google SharePoint Sitemap produces a dyanmic site map which the Mini can use to crawl deep within SharePoint.   You can further enhance this by adding a Content Web Part onto the search page which will allow you to have the Google Mini produce search results within SharePoint.</p>
<p><strong>Here&#8217;s it working in our environment. </strong><br />
<a id="single_image" href="http://www.mcplusa.com/wp-content/uploads/2009/08/cizmar-breetai1.jpg"><img class="alignnone size-medium wp-image-630" title="Search results page" src="http://www.mcplusa.com/wp-content/uploads/2009/08/cizmar-breetai1-300x197.jpg" alt="Search results page" width="300" height="197" /></a></p>
<p><strong>and in edit mode:</strong></p>
<p><a id="single_image" href="http://www.mcplusa.com/wp-content/uploads/2009/08/sharepoint-edit1.jpg"><img title="The Search Result Page In Edit Mode" src="http://www.mcplusa.com/wp-content/uploads/2009/08/sharepoint-edit1-300x187.jpg" alt="The Search Result Page In Edit Mode" width="300" height="187" /></a></p>
<p>How is the integration achieved?</p>
<p>Step 1 &#8211; Navigate to the search results page<br />
Step 2 &#8211; Switch the search results page to edit mode<br />
Step 3 &#8211; Delete the SharePoint search web parts<br />
Step 4 &#8211; Add content editor web part<br />
Step 5 Add the following code(modify for your environment)<br />
<a href="http://www.mcplusa.com/wp-content/uploads/2009/08/sharepointcontent.txt">Content for web part</a></p>
<p><strong>How does this work?</strong><br />
1) SharePoint search web part reads the k parameter query string and makes an &#8216;ajax&#8217; type of request to the appliance.<br />
2) The end use broswer communicates directly with the Mini.</p>
<p>If you purchase a Google Mini from MC+A, we offer a <a title="Learn More about the MC+A Google SharePoint Sitemap" href="http://www.mcplusa.com/solutions/enterprise-search/google-sharepoint-sitemap/">free GSS</a> with support matching for the term of the Google Mini. Otherwise, the product lists for $500 and includes a 30 day trial support during the trial. MC+A professional services can be engaged to assist with the integration within SharePoint.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/08/can-the-google-mini-index-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing Search, Simply</title>
		<link>http://www.mcplusa.com/blog/2009/02/securing-search-simply/</link>
		<comments>http://www.mcplusa.com/blog/2009/02/securing-search-simply/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 20:28:21 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[business impact of search]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[secure search]]></category>

		<guid isPermaLink="false">http://blog.mcplusa.com/?p=156</guid>
		<description><![CDATA[Last month, I wrote about best practices for and some business impact of search technology. This month, I am delving into the Google Search Appliance&#8217;s ability to protect corporate information. To stop the loss of data, corporations spend thousands, nay, millions of dollars per year, either preventing the loss or cleaning up after it has [...]]]></description>
			<content:encoded><![CDATA[<p>Last month, I wrote about <a href="http://blog.mcplusa.com/2009/01/28/a-reflection-on-the-google-search-appliance-market/">best practices for and some business impact</a> of search technology. This month, I am delving into the <a href="http://www.mcplusa.com/solutions/enterprise-search/google-search-appliance.aspx">Google Search Appliance&#8217;s</a> ability to protect corporate information. To stop the loss of data, corporations spend thousands, nay, millions of dollars per year, either preventing the loss or cleaning up after it has been leaked (see my post on the <a href="http://blog.mcplusa.com/2009/02/04/20million-dollar-laptop/">$20 million laptop</a>). It would be safe to say that protecting confidential information is at the top of the executive priority list.</p>
<p>Understanding how the Google Search Appliance works is part of what my job entails. Every time I hear something in relation to the Google Search Appliance or the <a href="http://www.mcplusa.com/solutions/enterprise-search/google-mini.aspx">Google Mini </a>its usually their ability to keep secure information secure. From the Google Enterprise Search site, they provide a list of ways in which the Google Appliances can protect important and confidential information.</p>
<p>Here is a list of ways that Google Enterprise Search will protect sensitive information:</p>
<ol>
<li>The Google Appliances work already existing security policies within the organization.</li>
<li>Kerberos Support: Provides native support for Kerberos, enabling a silent authentication process for end-users</li>
<li>Metadata Biasing: Administrators can bias results based on metadata (in addition to biasing on source, URL or date)</li>
<li>Advanced Reporting: View and export daily and hourly result sets, top queries, special feature usage and more. Report for every query, including reports on which queries receive no clicks by a user and how often the user is clicking on sponsored links in comparison to organic search results or OneBox modules.</li>
<li>Secure Web Content: Enable secure searching of information protected by basic HTTP authentication, NTLM versions 1 and 2, as well as Windows Integrated Authentication</li>
<li>Enterprise Single Sign-on: Integrate with forms-based single sign-on security systems, included Oblix and Netegrity, to enable seamless searching across secure content</li>
<li>Secure Content API: Search across secure content using Google’s SAML Authorization SPI to integrate into existing access control systems</li>
<li>X509 Client Certificates: Serve secure results to users using mutually authenticated x509 client certificates</li>
<li>Lotus Domino Security: Integrate with Lotus Notes environments using fast, efficient crawling of Lotus Domino servers</li>
</ol>
<p>Here are nine specific examples of how the Google Appliances can protect sensitive information from reaching the end-users. Coming from a non-IT background, I understand that some of these reasons seem a bit difficult to understand. That is why I added the number one protection item (The Google Appliances work with existing security policing all ready existing within the organization). This means that no matter what environment the Google Appliance is placed in, it will not release information to users who do not identify themselves as an individual who has access to see that information. All this right out of the box!</p>
<p>If more proof is needed you can take a look at Windows Networking&#8217;s &#8220;<a href="http://blogs.windowsnetworking.com/wnadmin/2008/08/06/new-google-search-appliance-10-million-documents-in-a-single-box/">10 million documents in a single box</a>&#8221; post. It is also understood that security is constantly on <a href="http://googleblog.blogspot.com/2007/10/google-search-appliance-takes-five.html">Google’s mind</a> for their Enterprise Search as well . There are other high marks that are touted for the GSA such as:</p>
<blockquote><p>“The Google Search Appliance’s unrivalled security functions were the perfect answer to our requirements and allowed for optimal information sharing”- Administrative and Financial Manager, Societe Generale.</p></blockquote>
<p>For searching secure content, <a title="MC+A" href="http://www.mcplusa.com/solutions/default.aspx">Google enterprise search</a> seems to be the choice to make. It’s plug-and-play simplicity for security is unmatched in the field of enterprise search. I have seen first-hand the impact that Google Enterprise Search has on an organization and its power and speed are only rivaled by its security.</p>
<p>Next month, I will be analyzing workers and how the Google Search Appliance has benefited them. Happy searching!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/02/securing-search-simply/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Reflection on the Google Search Appliance Market: Best Practices</title>
		<link>http://www.mcplusa.com/blog/2009/01/a-reflection-on-the-google-search-appliance-market/</link>
		<comments>http://www.mcplusa.com/blog/2009/01/a-reflection-on-the-google-search-appliance-market/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 18:01:10 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Information Security]]></category>

		<guid isPermaLink="false">http://blog.mcplusa.com/?p=78</guid>
		<description><![CDATA[It is interesting to see another year come and go. In the waning months of 2008, it was great to get involved in such a versatile and needed industry. Over the past couple months the importance of the Google Search Appliance and what it can do for companies, has really come into focus for me. [...]]]></description>
			<content:encoded><![CDATA[<p>It is interesting to see another year come and go. In the waning months of 2008, it was great to get involved in such a versatile and needed industry. Over the past couple months the importance of the Google Search Appliance and what it can do for companies, has really come into focus for me.</p>
<p>With each passing day, more and more documents are created, modified and deleted. When end users are going through the documents that make their workday easier, it is important for them to know whether documents have been altered in anyway. Corporate information security is particularly analyzed and scrutinized by both legal and IT departments. So would it not be beneficial for employees to know if documents are the most relevant or now out-of-date? The Google Search Appliance and the Google Mini assist end users much the way Google helps internet users find the sites they are looking for online.</p>
<p>For the new year, I have set out to do a best practices analysis of companies that utilize the Google Search Appliance (aka GSA) or the Google Mini. My blog post will be what I will call a “secular” (or non-IT) analysis of the Google Search Appliance and which companies would benefit most from this outstanding and adaptable technology.</p>
<p>What are your company’s most important needs? Most managers and executives would agree with a 5 simple answers: information security (also known as data leak prevention), knowledgeable workers, timeliness, effective and efficient task completion, and great customer service.  The amazing aspect of the <a href="http://www.google.com/enterprise/gsa/index.html">Google Search Appliance </a>(GSA) and the <a href="http://www.google.com/enterprise/mini/">Google Mini </a>(as well as other products offered by MC+A) is that it can assist, if not alter, all of these important business facets.</p>
<p>In upcoming blog posts, I will go through each of these business needs and analyze in depth how the Google Search Appliance and/or the Google Mini can help with each of these areas. I hope that you have a great New Year and that 2009 brings market growth and with it a healthy bottom line.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2009/01/a-reflection-on-the-google-search-appliance-market/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Product Catalog Search with a Google Search Appliance</title>
		<link>http://www.mcplusa.com/blog/2008/12/product-catalog-search-with-a-google-search-appliance/</link>
		<comments>http://www.mcplusa.com/blog/2008/12/product-catalog-search-with-a-google-search-appliance/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 00:27:55 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Database Feeder]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Product Catalog Search]]></category>

		<guid isPermaLink="false">http://blog.mcplusa.com/?p=45</guid>
		<description><![CDATA[Two weeks ago MC+A did a webinar on using a Google Search Appliance to index product catalog data.  The demonstration was developed to showcase how effective Google search technology can be added to a public facing website search. Here is how we built the example.]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago MC+A did a <a title="MC+A Webinar Series" href="http://www.mcplusa.com/company/webinars.aspx" target="_blank">webinar</a> on using a <a href="http://shopping.netsuite.com/s.nl/c.603012/it.A/id.66/.f?sc=2&amp;category=198" target="_blank">Google Search Appliance</a> (GSA) to index product catalog data.  The demonstration was developed to showcase how effective Google search technology can be added to a public facing website search.  Jason Wasserman from <a title="Boats.net website" href="http://www.boats.net" target="_blank">boats.net</a> joined us on the call.  I recommend visiting their site to see great example of the technology in production use ( and for all of your OEM Yamaha and Honda marine parts).  This post is a detailing of how we built the example site for the demonstration.</p>
<p><strong>Content Acquisition</strong></p>
<p>Product catalog information provides some challenges because skus vary greatly from product line to product line.  Many times there are white space characters such as &#8216;-&#8217; or &#8216;_&#8217; in the sku name.  By default, when the search engine indexes these documents, the skus will be tokenized so that the single sku will become multiple keywords.  Additional, meta data values become significant when a user would like to filter based on structured information.</p>
<p>The GSA has two effective means for this.  First there is the Google web crawler and navigator your site hierarchy and find all of the documents very much like the Google.com crawlers do.  Second, the GSA comes with a database crawler that queries the database directly, indexes the result set and provide a direct link to the document.  There are some benefits for each approach.    Specifically,</p>
<p><strong>Web Crawler</strong></p>
<ul>
<li>The Web Crawler acts similarly to the public crawlers.  Improvements to it will positively effect your public search ranking.</li>
<li>Utilizing the Web Crawler requires no direct access to the database by the GSA.</li>
<li>Search Engine Optimizations performed for improving the GSA search quality will also positively effectively your public search results.</li>
<li>Meta data can be added via meta data tag anywhere in the content (i.e. &lt;meta name=&#8221;price&#8221; content=&#8221;12.95&#8243;)</li>
</ul>
<p><strong>Database Crawler</strong></p>
<ul>
<li>Very fast reindexing.  (Jason mentioned his 1.5 million documents get indexed in 20 minutes.)</li>
<li>The content that is indexed is limited to the query result and very specific to the product content.   We say that it has limited &#8216;noise&#8217; or interference.</li>
<li>You can add meta data per column of the result set.  This does not have to be included in your public content.</li>
<li>Customization on how the content is index via the dbstylesheet.</li>
</ul>
<p>For the purpose of the demonstration we choose the db crawler.  We set up a commerce website at <a href="http://catalog.mcplusa-dev.com">http://catalog.mcplusa-dev.com</a>.  It is a fresh install of OS Commerce.  OS Commerce by default uses product keys as the url.  This is a less effective way to reference a document.  For example, <a href="http://catalog.mcplusa-dev.com/product_info.php?products_id=1">http://catalog.mcplusa-dev.com/product_info.php?products_id=1</a> would be better if it were <a href="http://catalog.mcplusa-dev.com/graphics/Matrox_G200_MMS">http://catalog.mcplusa-dev.com/graphics/Matrox_G200_MMS</a>.  There are url rewriters for most standard commerce products that help you achieve this.</p>
<div id="attachment_46" class="wp-caption alignleft" style="width: 160px"><a rel="lightbox" href="http://www.mcplusa.com/wp-content/uploads/2008/12/os_commerce_default.jpg"><img class="size-thumbnail wp-image-46" title="Default install of OS Commerce" src="http://blog.mcplusa.com/wp-content/uploads/2008/12/os_commerce_default-150x150.jpg" alt="Here's the out of the box installation of OS Commerce" width="150" height="150" /></a><p class="wp-caption-text">Here&#39;s the out of the box installation of OS Commerce</p></div>
<h3>Step 1: Setting up the Database Crawler</h3>
<p>For the purposes of the webinar we set up a simple query based on the <a title="PDF of the schema for OS Commerce" href="http://www.oscommerce.com/community/contributions,3853/page,23" target="_blank">schema</a> of  OS Commerce.  We create a Google Search Appliance data source with the following settings:</p>
<ol>
<li>Database Type: MySQL</li>
<li>Host name: the Ip address of the server</li>
<li>Port: 3306</li>
<li>DatabaseName/UserName/Password: Specific to the db</li>
<li>Crawl Query:<br />
<blockquote><p>select products_description.products_name, products.*, manufacturers.manufacturers_name, products_description.products_description, concat(&#8216;http://catalog.mcplusa-dev.com/product_info.php?products_id=&#8217;, cast(products.products_id as char)) as url from<br />
products inner join products_description<br />
inner join manufacturers on products_description.products_id = products.products_id and<br />
manufacturers.manufacturers_id = products.manufacturers_id<br />
where products_description.language_id =1</p></blockquote>
</li>
<li>DB StyleSheet: <a href="http://www.mcplusa.com/wp-content/uploads/2008/12/dbstylesheet_catalog_testxsl.txt">dbstylesheet_catalog_testxsl</a> This xsl was written by John Gregory a couple of years ago.  Its better than the on board stylesheet because it changes the title to the first column returned from your query and it makes each column a meta data field.</li>
<li>Serve URL Field (Radio Checked): &#8220;Url&#8221;  Url is a computed column in the result set and links directly to the product page.</li>
</ol>
<div id="attachment_52" class="wp-caption alignleft" style="width: 160px"><a rel="lightbox" href="http://www.mcplusa.com/wp-content/uploads/2008/12/database-catalog-crawler.jpg"><img class="size-thumbnail wp-image-52" title="database-catalog-crawler" src="http://blog.mcplusa.com/wp-content/uploads/2008/12/database-catalog-crawler-150x150.jpg" alt="Basic configuration of the Database Crawler" width="150" height="150" /></a><p class="wp-caption-text">Basic configuration of the Database Crawler</p></div>
<h3>Step 2: Setting Up the Collection</h3>
<p>The set up of the collection was pretty straight forward.  We set the url pattern to be: <a href="http://catalog.mcplusa-dev.com">http://catalog.mcplusa-dev.com</a><br />
<strong>Content Serving</strong><br />
We create a separate GSA frontend for this demonstration and added several tool-kits to it.  The first one we added was <a title="Link to parametric navigation toolkit." href="http://code.google.com/p/parametric/" target="_blank">parametric navigation</a>.  This toolkit allows you to filter your result set based on meta data.  Secondly, we added <a title="Search As You Type Toolkit" href="http://code.google.com/p/search-as-you-type/" target="_blank">Search As you Type</a> open source toolkit.  Following the instructions in each toolkit we were able to build the front end in about 20 minutes (and it probably shows <img src='http://www.mcplusa.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<div id="attachment_53" class="wp-caption alignleft" style="width: 160px"><a rel="lightbox" href="http://www.mcplusa.com/wp-content/uploads/2008/12/sayt.jpg"><img class="size-thumbnail wp-image-53" title="sayt" src="http://blog.mcplusa.com/wp-content/uploads/2008/12/sayt-150x150.jpg" alt="Search Results with Parametric and Search As You Type" width="150" height="150" /></a><p class="wp-caption-text">Search Results with Parametric and Search As You Type</p></div>
<h3>Conclusion</h3>
<p>We&#8217;ve demonstrated the steps necessary to effectively implement the Google Search Appliance for a product catalog.  Customers of ours who have used these steps have seen conversion rates increase 3 fold using the search compared to those who have not.   Feel free to <a href="http://www.mcplusa.com/contact.aspx" target="_self">contact us</a> should you have any additional questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2008/12/product-catalog-search-with-a-google-search-appliance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Google Search Appliance Tip: Using ADSI Edit as a Powerful tool for LDAP configuration</title>
		<link>http://www.mcplusa.com/blog/2008/10/google-search-appliance-ldap-tool-configuration/</link>
		<comments>http://www.mcplusa.com/blog/2008/10/google-search-appliance-ldap-tool-configuration/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 21:25:26 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[ADSI]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[LDAP configuration]]></category>
		<category><![CDATA[Support Help]]></category>

		<guid isPermaLink="false">http://blog.mcplusa.com/?p=55</guid>
		<description><![CDATA[Many of our customers find it difficult to figure out which LDAP query to run in their Google Search Appliance (GSA) or Google Mini (Mini) LDAP setup wizard.  When configuring LDAP on the GSA, a common issue that the user may run into is finding the correct information for the “Distinguished Name” (DN) field. Our [...]]]></description>
			<content:encoded><![CDATA[<p>Many of our customers find it difficult to figure out which LDAP query to run in their Google Search Appliance (GSA) or Google Mini (Mini) LDAP setup wizard.  When configuring LDAP on the GSA, a common issue that the user may run into is finding the correct information for the “Distinguished Name” (DN) field.</p>
<p>Our solution to this problem is a handy command that can be executed on your server providing Active Directory.</p>
<p>In order to quickly find the DN, open a command prompt and enter the command “adsiedit.msc”.</p>
<p><img class="alignleft size-medium wp-image-56" title="16" src="http://www.mcplusa.com/wp-content/uploads/2008/10/16-300x98.jpg" alt="" width="300" height="98" /></p>
<p>After you execute this command navigate to the account in which you are seeking the distinguished name (This is typically your account).</p>
<p><img src="http://www.mcplusa.com/wp-content/uploads/2008/10/ad.jpg" alt="Navigating ADSI Edit" /></p>
<p>Right-click on that account and select “properties”.</p>
<p><img class="alignleft size-medium wp-image-58" title="31" src="http://www.mcplusa.com/wp-content/uploads/2008/10/31-270x300.jpg" alt="" width="270" height="300" /></p>
<p>Then find the “Distinguished Name” category, double-click, and you will have the answer you seek.</p>
<p><img class="alignleft size-medium wp-image-59" title="41" src="http://www.mcplusa.com/wp-content/uploads/2008/10/41-300x102.jpg" alt="" width="300" height="102" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2008/10/google-search-appliance-ldap-tool-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Michael Cizmar Interviewed by Tech Target</title>
		<link>http://www.mcplusa.com/blog/2008/07/michael-cizmar-interviewed-by-tech-target/</link>
		<comments>http://www.mcplusa.com/blog/2008/07/michael-cizmar-interviewed-by-tech-target/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 18:47:40 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Interviews]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[enterprise search]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[IT solutions]]></category>

		<guid isPermaLink="false">http://blog.mcplusa.com/?p=36</guid>
		<description><![CDATA[In a recent Tech Target interview, MC+A&#8217;s president, Michael Cizmar, outlined his opinions on the growing popularity of cloud computing and how it will affect both IT solutions companies and enterprise end-users.   While a strong advocate for innovation, Michael believes that even in a &#8220;cloudy&#8221; world, there will still be a great need for solution companies who can [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent Tech Target interview, MC+A&#8217;s president, Michael Cizmar, outlined his opinions on the growing popularity of cloud computing and how it will affect both IT solutions companies and enterprise end-users. </p>
<p> While a strong advocate for innovation, Michael believes that even in a &#8220;cloudy&#8221; world, there will still be a great need for solution companies who can add value by efficiently implementing new technologies across the enterprise.</p>
<p>According to Michael, those who prove their expertise by developing applications that make the cloud more efficient and productive, will continue to play a vital role in the technology world.  In addition, enterprise users win as talented developers are incented to showcase their abilities to an otherwise difficult to reach audience.   </p>
<p>As Michael notes, “If you have an application, and put it on the Google marketplace, you’re immediately exposed to 500,000 customers.&#8221;  With this type of opportunity for developers, and the resulting benefits to enterprise users, cloud computing &#8211; and innovative companies like MC+A &#8211; may be in the process of creating the perfect storm. </p>
<p>Read the full interview here: </p>
<p class="MsoNormal" style="margin: 0in 0in 0pt;"><a href="http://channelmarker.blogs.techtarget.com/2008/06/12/the-impending-cloud/"><span style="font-size: small; font-family: Calibri;">http://channelmarker.blogs.techtarget.com/2008/06/12/the-impending-cloud/</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2008/07/michael-cizmar-interviewed-by-tech-target/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Keymatch in C#</title>
		<link>http://www.mcplusa.com/blog/2008/03/custom-keymatch-in-c/</link>
		<comments>http://www.mcplusa.com/blog/2008/03/custom-keymatch-in-c/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 05:45:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[OneBox]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=29</guid>
		<description><![CDATA[Last year, Google Enterprise published a custom Keymatch OneBox project written in Java. We ported it to C# for those .NET inclined. Project Description This OneBox module mimics the Google Search Appliance&#8217;s built-in KeyMatch functionality. By using this instead of the built-in KeyMatch feature, you can customize the C# Service implementation to provide alternative behavior [...]]]></description>
			<content:encoded><![CDATA[<p>Last year, Google Enterprise published a custom <a href="http://code.google.com/p/custom-keymatch-onebox">Keymatch OneBox project </a>written in Java. We ported it to C# for those .NET inclined.</p>
<h3>Project Description</h3>
<p>This OneBox module mimics the Google Search Appliance&#8217;s built-in KeyMatch functionality. By using this instead of the built-in KeyMatch feature, you can customize the C# Service implementation to provide alternative behavior that better suits your needs. </p>
<p><a href="http://www.codeplex.com/keymatch">Check it out</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2008/03/custom-keymatch-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAP OneBoxes</title>
		<link>http://www.mcplusa.com/blog/2008/03/sap-oneboxes/</link>
		<comments>http://www.mcplusa.com/blog/2008/03/sap-oneboxes/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 23:32:00 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[OneBox]]></category>
		<category><![CDATA[SAP]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=27</guid>
		<description><![CDATA[We’ve received numerous requests over the past couple of months on using OneBox technology to pull data from SAP systems. We’ve created a solution offering for customers that employs our SAP OneBox Framework. We can use this framework to pull a variety of SAP data out of Netweaver. We’ve developed a sample using the classic [...]]]></description>
			<content:encoded><![CDATA[<p>We’ve received numerous requests over the past couple of months on using OneBox technology to pull data from SAP systems.  We’ve created a solution offering for customers that employs our SAP OneBox Framework.  We can use this framework to pull a variety of SAP data out of Netweaver.  We’ve developed a sample using the classic flight data scenario. </p>
<p>Check out our PowerPoint presentation on our offering through this link:</p>
<p><a href="https://forms.netsuite.com/app/site/crm/externalleadpage.nl?compid=603012&#038;formid=23&#038;h=9803ae54a787003868c1">Get Presentation Here!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2008/03/sap-oneboxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New GSALib Release</title>
		<link>http://www.mcplusa.com/blog/2008/01/new-gsalib-release/</link>
		<comments>http://www.mcplusa.com/blog/2008/01/new-gsalib-release/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 13:48:00 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Google Mini]]></category>
		<category><![CDATA[Google Search Appliance]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=23</guid>
		<description><![CDATA[Thanks to Adam Jenkin for reporting an issue with the GSALib. We now have released an update that moves the configuration from a seperate file to the appSettings of the configuration file. There is also the simplest of demonstrations of how to use the library in an ASP.Net VB application. Please goto: http://www.codeplex.com/GSALib to download [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to Adam Jenkin for reporting an issue with the GSALib. We now have released an update that moves the configuration from a seperate file to the appSettings of the configuration file.</p>
<p>There is also the simplest of demonstrations of how to use the library in an ASP.Net VB application.</p>
<p>Please goto: <a href="http://www.codeplex.com/GSALib">http://www.codeplex.com/GSALib</a> to download the updates.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mcplusa.com/blog/2008/01/new-gsalib-release/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

