<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>livelink &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/livelink/</link>
	<description>Feed of posts on WordPress.com tagged "livelink"</description>
	<pubDate>Fri, 04 Dec 2009 20:43:58 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[OpenText - LiveLink Developer]]></title>
<link>http://capgeminijobs.wordpress.com/2009/08/31/opentext-livelink-developer/</link>
<pubDate>Mon, 31 Aug 2009 12:35:04 +0000</pubDate>
<dc:creator>sarangbrahme</dc:creator>
<guid>http://capgeminijobs.wordpress.com/2009/08/31/opentext-livelink-developer/</guid>
<description><![CDATA[Presently CapGemini India is looking for experienced OpenText / LiveLink developer to work with us. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Presently CapGemini India is looking for experienced OpenText / LiveLink developer to work with us.</p>
<p>Please contact me at <a href="mailto:sarang.brahme@capgemini.com">sarang.brahme@capgemini.com</a> for further information.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LAPI: Struggling with Categories and Attributes]]></title>
<link>http://mightycoco.wordpress.com/2009/08/14/lapi-struggling-with-categories-and-attributes/</link>
<pubDate>Fri, 14 Aug 2009 14:05:14 +0000</pubDate>
<dc:creator>mightycoco</dc:creator>
<guid>http://mightycoco.wordpress.com/2009/08/14/lapi-struggling-with-categories-and-attributes/</guid>
<description><![CDATA[I came to a point where i needed to update an string attribute, attached to a node&#8217;s category ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I came to a point where i needed to update an string attribute, attached to a node&#8217;s category in Livelink 9.7.1</p>
<p>The tricky part was to find out,  for updateing the string value you need to pass LAPI_ATTRIBUTES.ATTR_DATAVALUES</p>
<p>in the AttrSetValues code.</p>
<p>The following example fetches the category from a given node, and updates a string attribute, called Description. You only need to modify the values.<!--more--></p>
<pre><span style="color:blue;">import</span> com.opentext.api.*;
<span style="color:blue;">import</span> java.io.*;
<span style="color:blue;">import</span> java.util.*;

<span style="color:blue;">public</span> <span style="color:blue;">class</span> CategoryTest
{
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String Server = <span style="color:maroon;">"localhost"</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> <span style="color:blue;">int</span> Port = <span style="color:maroon;">2099</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String DFT = <span style="color:maroon;">""</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String User = <span style="color:maroon;">"Admin"</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String Pass = <span style="color:maroon;">"livelink"</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> <span style="color:blue;">int</span> ObjectID = <span style="color:maroon;">18614</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String CategoryName = <span style="color:maroon;">"Document Type"</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String AttributeName = <span style="color:maroon;">"Description"</span>;
	<span style="color:blue;">private</span> <span style="color:blue;">static</span> String AttributeValue = <span style="color:maroon;">"This is a new Description"</span>;

	<span style="color:blue;">public</span> <span style="color:blue;">static</span> <span style="color:blue;">void</span> main(<span style="color:blue;">final</span> String[] args)
	{
		<span style="color:green;">/*LAPI Vars*/</span>
		LLSession session = <span style="color:blue;">new</span> LLSession(Server, Port, DFT, User, Pass);
		LAPI_DOCUMENTS doc = <span style="color:blue;">new</span> LAPI_DOCUMENTS(session);

		LAPI_ATTRIBUTES attr = <span style="color:blue;">new</span> LAPI_ATTRIBUTES(session);

		<span style="color:green;">// catID will hold the info of the category, we work on (id, version)</span>
		LLValue catID = (<span style="color:blue;">new</span> LLValue()).setAssocNotSet();
		<span style="color:green;">// catVersion will contain the category information and attributes</span>
		LLValue catVersion = <span style="color:blue;">new</span> LLValue();

		LLValue objID = (<span style="color:blue;">new</span> LLValue()).setAssocNotSet();
		objID.add(<span style="color:maroon;">"ID"</span>, ObjectID);
		<span style="color:green;">//objID.add("Version", 1);</span>

		LLValue catList = (<span style="color:blue;">new</span> LLValue()).setAssocNotSet();
		<span style="color:blue;">if</span> (doc.ListObjectCategoryIDs(objID, catList) != <span style="color:maroon;">0</span>)
		{
			System.out.println(<span style="color:maroon;">"ListObjectCategoryIDs Failed."</span>);
			<span style="color:blue;">return</span>;
		}
		<span style="color:blue;">else</span>
			System.out.println(<span style="color:maroon;">"Retrieved Category Listing."</span>);

		<span style="color:green;">// get get the category's id which was attached to the document</span>
		<span style="color:green;">// by its name and add it to the catID object</span>
		<span style="color:blue;">for</span> (<span style="color:blue;">int</span> i = <span style="color:maroon;">0</span>; i &#60; catList.size(); i++)
		{
			<span style="color:blue;">if</span> ((catList.toValue(i).toString(<span style="color:maroon;">"DisplayName"</span>)).compareTo(CategoryName) == <span style="color:maroon;">0</span>)
			{
				System.out.println(<span style="color:maroon;">"Got category id "</span> + catList.toValue(<span style="color:maroon;">0</span>).toInteger(<span style="color:maroon;">"ID"</span>));
				catID = catList.toValue(<span style="color:maroon;">0</span>);
				<span style="color:green;">//catID.add("Version", 1);</span>
			}
		}

		<span style="color:blue;">if</span> (doc.GetObjectAttributesEx(objID, catID, catVersion) != <span style="color:maroon;">0</span>)
		{
			System.out.println(<span style="color:maroon;">"GetObjectAttributesEx Failed."</span>);
			<span style="color:blue;">return</span>;
		}
		<span style="color:blue;">else</span>
			System.out.println(<span style="color:maroon;">"Retreived objects cetagory version"</span>);

		<span style="color:green;">// modify the attribute values we fetched from the node</span>
		LLValue attrValues = <span style="color:blue;">new</span> LLValue().setList();
		attrValues.add(AttributeValue);

		<span style="color:blue;">if</span> (attr.AttrSetValues(catVersion, AttributeName, LAPI_ATTRIBUTES.ATTR_DATAVALUES, <span style="color:blue;">null</span>, attrValues) != <span style="color:maroon;">0</span>)
		{
			System.out.println(<span style="color:maroon;">"attr.AttrSetValues Failed."</span>);
			<span style="color:blue;">return</span>;
		}
		<span style="color:blue;">else</span>
			System.out.println(<span style="color:maroon;">"Retrieved Category Version."</span>);

		<span style="color:green;">// store the modified category back to the node</span>
		<span style="color:blue;">if</span> (doc.SetObjectAttributesEx(objID, catVersion) != <span style="color:maroon;">0</span>)
		{
			System.out.println(<span style="color:maroon;">"SetObjectAttributesEx Failed."</span>);
			<span style="color:blue;">return</span>;
		}
		<span style="color:blue;">else</span>
			System.out.println(<span style="color:maroon;">"Wrote objects category version"</span>);
	}
}</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Powered by ILINX]]></title>
<link>http://newandgoodinecm.wordpress.com/2009/08/10/powered-by-ilinx/</link>
<pubDate>Mon, 10 Aug 2009 22:49:33 +0000</pubDate>
<dc:creator>Kristina Parma</dc:creator>
<guid>http://newandgoodinecm.wordpress.com/2009/08/10/powered-by-ilinx/</guid>
<description><![CDATA[If you don&#8217;t know about ILINX Capture, you should. ILINX Capture is an amazing Web-based appli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>If you don&#8217;t know about </strong><a href="http://www.ilinxcapture.com/index.htm" target="_blank"><strong>ILINX Capture</strong></a><strong>, you should.</strong></p>
<p><a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a> is an amazing Web-based application that allows you to capture information any place, any time. This flexible product is designed to streamline business processes, and allow users to index quickly and accurately. <a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a> also costs significantly less than traditional scanning solutions, and because it&#8217;s browser-based, users can access it from anywhere in the world.</p>
<p>The benefits <a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a> offers are incomparable to other traditional capture platforms. <a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a> is also easy to deploy, taking only about a minute per desktop. This thin-client platform is also easy to maintain. Other benefits include:</p>
<ul>
<li><strong>Minimal training</strong></li>
<li><strong>Low total cost of ownership</strong></li>
<li><strong>No page count licensing</strong></li>
<li><strong>Supports distributed and centralized environments</strong></li>
<li><strong>Improves accuracy of information delivered</strong></li>
<li><strong>Image-enables line-of-business applications</strong></li>
<li><strong>Configurable based on the user needs</strong></li>
</ul>
<p><a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a> is also compatible with different ECM systems. The application can release information to your current line-of-business application, but i will also work with a variety of Enterprise Content Management systems, including:</p>
<ul>
<li><strong>Microsoft SharePoint</strong></li>
<li><a href="http://www.imagesourceinc.com/Products/Storage/index.htm" target="_blank"><strong>EMC &#8211; Documentum</strong></a></li>
<li><a href="http://www.imagesourceinc.com/Products/SoftwarePlatforms/Oracle/index.htm" target="_blank"><strong>Oracle UCM and IPM</strong></a></li>
<li><strong>OpenText &#8211; LiveLink</strong></li>
<li><strong>IBM Content Manager</strong></li>
<li><strong>FileNET P8 and Image Services</strong></li>
<li><strong>It can also complement existing Input Accel or </strong><a href="http://www.imagesourceinc.com/Products/SoftwarePlatforms/Kofax/index.htm" target="_blank"><strong>Kofax Capture</strong></a><strong> implementations</strong></li>
</ul>
<p>To learn more about <a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a>, visit the <a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture Web site</a>. To learn about the entire line of ILINX products, visit the <a title="Information about ILINX Products" href="http://www.imagesourceinc.com/Products/ILINXProducts/index.htm" target="_blank">ILINX section</a> of our Web site.</p>
<p>ImageSource will also be showing <a href="http://www.ilinxcapture.com/index.htm" target="_blank">ILINX Capture</a> at our annual <a href="http://nexusecm.com/index.htm" target="_blank">NEXUS conference</a>. To learn more about the event, or to <a title="Register for NEXUS" href="http://nexusecm.com/Registration/index.htm" target="_blank">register</a>, visit <a href="http://www.NexusECM.com">www.NexusECM.com</a>.</p>
<p><strong>Kristina Parma<br />
</strong><em>Corporate Communications Manager<br />
</em><a href="http://www.imagesourceinc.com/index.htm" target="_blank">ImageSource, Inc.</a></p>
<p> <a href="http://www.linkedin.com/shareArticle?mini=true&#38;ro=true&#38;url=http://newandgoodinecm.wordpress.com/2009/08/10/powered-by-ilinx/" target="_blank"><img class="alignleft size-full wp-image-172" title="Share on LinkedIn" src="http://newandgoodinecm.wordpress.com/files/2009/08/linkedin1.png" alt="Share on LinkedIn" width="168" height="64" /></a>  <a href="http://twitter.com/home/?status=Powered by ILINX +http://newandgoodinecm.wordpress.com/2009/08/10/powered-by-ilinx/" target="_blank"><img class="alignleft size-full wp-image-178" title="Share on Twitter" src="http://newandgoodinecm.wordpress.com/files/2009/08/shareontwitter4.png" alt="Share on Twitter" width="168" height="64" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Before your organization invests in an Electronic Lab Notebook (ELN)…]]></title>
<link>http://powerofproof.wordpress.com/2009/07/14/before-your-organization-invests-in-an-electronic-lab-notebook-eln%e2%80%a6/</link>
<pubDate>Tue, 14 Jul 2009 18:15:46 +0000</pubDate>
<dc:creator>Surety, LLC</dc:creator>
<guid>http://powerofproof.wordpress.com/2009/07/14/before-your-organization-invests-in-an-electronic-lab-notebook-eln%e2%80%a6/</guid>
<description><![CDATA[Most enterprise-class Electronic Lab Notebook (ELN) systems can be expensive, cumbersome or even ove]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright" src="http://upload.wikimedia.org/wikipedia/commons/f/f9/STOP_sign.jpg" alt="" width="160" height="169" />Most enterprise-class <a href="http://elnblog.com/2009/05/eln-20-vs-eln-10-in-the-new-world/" target="_blank">Electronic Lab Notebook</a> (ELN) systems can be expensive, cumbersome or even overkill for many organizations. Many don’t benefit from all the ELN’s <a href="http://www.easterbrook.ca/steve/?p=204" target="_blank">features</a> , and some never deploy and use the ELNs they have purchased because they do not meet <a href="http://pipeline.corante.com/archives/2006/11/21/the_paper_mountain.php" target="_blank">their</a> <a href="http://network.nature.com/people/mfenner/blog/2009/06/14/how-to-close-the-digital-divide-among-scientists" target="_blank">needs</a>.</p>
<p>Before any organization invests in a commercial <a href="http://www.scientificcomputing.com/article-in-What-You-Should-Know-Before-Selecting-an-ELN-051509.aspx" target="_blank">ELN</a>, we recommend they take a step back. Consider how you can most <a href="http://elnblog.com/2009/05/how-can-we-do-elns-safely/" target="_blank">cost-effectively and efficiently</a> enable your researchers and scientists to focus on getting world-class products and ideas to market faster in a collaborative, workflow-friendly environment, with built-in <a href="http://surety.staging.r2integrated.com/Solutions/Challenges/Intellectual-Property-Protection.aspx" target="_blank">intellectual property protection</a>.</p>
<p>Chances are, if your organization already has an Enterprise Content Management (ECM) system like <a href="http://blogs.syrinx.com/blogs/sharepoint/archive/2008/01/30/moss-in-action-the-scientist-s-workbench.aspx" target="_blank">Microsoft SharePoint</a> or Open Text Livelink, an email system, such as Microsoft Exchange, a database application like Oracle or SQL Server, and <a href="http://surety.com/Offerings/AbsoluteProof.aspx" target="_blank">Surety’s AbsoluteProof Data Integrity Protection</a> service, you have <em><strong>all</strong></em> of the core components to meet the most common objectives of an ELN, without the overhead, costs and complexity of deploying yet another enterprise-class system.</p>
<p>By purchasing a commercial ELN application, you will spend as much, if not more money tailoring it to fit your needs and with integration. Why not leverage your existing investments in software and applications you already have deployed today and easily “customize” an ELN that meets your EXACT needs, and save time, money and resources as a result?</p>
<p>(Photo credit: <a href="http://upload.wikimedia.org/wikipedia/commons/f/f9/STOP_sign.jpg" target="_blank">Wikipedia</a>)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[What to Expect]]></title>
<link>http://waltruppar.wordpress.com/2009/04/23/what-to-expect/</link>
<pubDate>Thu, 23 Apr 2009 15:28:44 +0000</pubDate>
<dc:creator>walt</dc:creator>
<guid>http://waltruppar.wordpress.com/2009/04/23/what-to-expect/</guid>
<description><![CDATA[Learn by doing and write about the experiences&#8230; in a nutshell, that&#8217;s what you will find]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Learn by doing and write about the experiences&#8230; in a nutshell, that&#8217;s what you will find here.</p>
<p>I am planning to continue growing my knowledge of the <a title="  Enterprise Content Management (ECM), is not just about controlling and managing business content and the repositories where it resides. It is about understanding the relationship between People, Processes, and Content in an organization. It is about documenting how content flows within and across departments, what systems it touches and what processes it is tied to. In addition, it is about understanding all types of content and managing their entire lifecycle from creation through disposal. With 17 years experience, Open Text stands unmatched in our understanding of ECM. " href="http://www.opentext.com/" target="_blank">Open Text Livelink</a>, <a title="Microsoft Office SharePoint Server 2007 is a new server program that is part of the 2007 Microsoft Office system. Your organization can use Office SharePoint Server 2007 to facilitate collaboration, provide content management features, implement business processes, and supply access to information that is essential to organizational goals and processes." href="http://www.microsoft.com/Sharepoint/default.mspx" target="_blank">Microsoft SharePoint</a>, and <a title="The NextDocs Document and Quality Management Suite includes a complete set of out-of-the-box solutions for life sciences companies. Each component is fully integrated with our Compliance Platform, which provides all the functionality required to meet regulatory requirements such as the FDA's 21 CFR Part 11." href="http://nextdocs.com/" target="_blank">NextDocs</a> products by creating a suite of small productivity and utility applications.  While doing so, I&#8217;ll be writing about the projects as they progress and sharing some learned best practices on subjects like OScript, LAPI, .NET, C#/++, and Java as they relate to Livelink, SharePoint, &#38; NextDocs development and integration.  I have yet to determine whether I will market/sell these apps as of yet.</p>
<p>I will also be working on a full suite of Qualification Templates that can be used as a &#8216;basic&#8217; starting point for Windows Server (2003/2008), SharePoint, Livelink, and NextDocs installations.  My plan is to primarily work on IQ/OQ templates to install/test each product in a controlled methodical fashion using industry best practice &#8216;defaults&#8217;.  I will also be producing a full suite of project documentation for the previously mentioned productivity/utility apps and will therefore be creating a set of blank &#8216;generic&#8217; SDLC templates (URS/FRS/DS/IQ/OQ). Both blank and basic install templates will be made available at a reasonable cost.</p>
<p>Being a geek, I fix a lot of computers (both PC and Mac).  I don&#8217;t know what it is, people just flock to me when it comes to anti-spyware or virus help, hard-disk defrags, PC set-up/purchase, and the list goes on&#8230; Each request usually starts off like one that I have heard before, but almost all end up with researching some oddity I have yet to see and thus increasing subject matter knowledge.  I&#8217;ll be writing about those oddities along with some best practices and tools as they relate to computer repair/maintenance.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA['Meta'rizing your information]]></title>
<link>http://darbyshire.wordpress.com/2009/04/10/metarizing-your-information/</link>
<pubDate>Fri, 10 Apr 2009 04:45:01 +0000</pubDate>
<dc:creator>darbyshire</dc:creator>
<guid>http://darbyshire.wordpress.com/2009/04/10/metarizing-your-information/</guid>
<description><![CDATA[Having invested in powerful enterprise content management systems from Opentext and Microsoft, I wou]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone" title="top secret" src="http://aldomino.com.free.fr/aldomino_v4_fichiers/dossiers/top_secret.gif" alt="" width="344" height="250" /></p>
<p>Having invested in powerful enterprise content management systems from Opentext and Microsoft, I would really like to exploit the benefits of capturing  and using quality &#8216;meta&#8217; data and security classifications on all the documents that are stored in the content libraries.</p>
<p>We are having a close look at integrating SharePoint with Livelink to enable federated searching, simple archiving and records management compliance. The issues we have are what meta data is the most valuable to capture when saving documents, and how to make the most from information security classifications (public, internal, private &#38; confidential).</p>
<p>How has your company solved the issues of enforcing the capture of quality meta data on your enterprise content? Have the benefits from information security classification been realised?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Livelink]]></title>
<link>http://ecmfactor.wordpress.com/livelink/</link>
<pubDate>Mon, 09 Mar 2009 21:45:13 +0000</pubDate>
<dc:creator>ecmfactor</dc:creator>
<guid>http://ecmfactor.wordpress.com/livelink/</guid>
<description><![CDATA[Look around this place to keep an eye out about Livelink&#8230;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Look around this place to keep an eye out about Livelink&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Copy operation and permissions : the solution]]></title>
<link>http://livelinkecm.wordpress.com/2009/03/05/copy-operation-and-permissions-the-solution/</link>
<pubDate>Thu, 05 Mar 2009 10:32:53 +0000</pubDate>
<dc:creator>fvalceschini</dc:creator>
<guid>http://livelinkecm.wordpress.com/2009/03/05/copy-operation-and-permissions-the-solution/</guid>
<description><![CDATA[Hey folks, Just a quick post to let you know that the issue about permissions lost during copy opera]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hey folks,</p>
<p>Just a quick post to let you know that the issue about <a href="http://livelinkecm.wordpress.com/2009/02/12/copy-operation-and-permissions/">permissions lost during copy operations</a>, which I talked about previously,  has been bypassed.</p>
<p>As I told you, we have here the workflow extension module installed. And once I received a version updated to be 9.7.1 compatible, I designed a workflow that simply copy a folder in a livelink other folder. Remember that you have an <a href="http://livelinkecm.files.wordpress.com/2009/02/workflow_extension_item_hanlder.png">option with WF extension</a> where you can choose to keep source permissions.</p>
<p>Now, I will improve the Workflow to automatically name the copy folder following attributes set by WF initiator. It&#8217;s another possibility given by workflow extension module.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[SWL - where are my links ?]]></title>
<link>http://blogaboutseo.wordpress.com/2009/01/07/swl-where-are-my-links/</link>
<pubDate>Wed, 07 Jan 2009 17:51:43 +0000</pubDate>
<dc:creator>ukfreedom</dc:creator>
<guid>http://blogaboutseo.wordpress.com/2009/01/07/swl-where-are-my-links/</guid>
<description><![CDATA[To write this entry as it forced me to the owners of a link, arguing that the &#8220;to pick on]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To write this entry as it forced me to the owners of a link, arguing that the &#8220;to pick on&#8221;: / </p>
<p>    I decided to check on exactly how many pages, which appear like my &#8220;positioning&#8221; links in the system of fixed exchange links, to &#8220;empty&#8221; taking place only punkty.Jak it is important that the system effectively wyłapywał any fraud unless you do not need anyone to translate. </p>
<p>      I checked three systems, which have an active account, these are two Polish systems LiveLink, LinkMe and the most popular in the world system of permanent links &#8211; Link Vault.</p>
<p>      At this point, mention that I am not a supporter of the parties only by positioning systems. In my opinion they should be useful only as a supplement to what we do. As we know it is different, some are &#8220;pozycjonerzy&#8221; for which it is the only way of obtaining and links to them is primarily governed by the text, but not only. </p>
<p>      Testing was done in two stages. </p>
<p>First, check the script, written specially for this purpose. The script looks in the page address of the site, which is a link that should be there, do not anchor because it could obscure the result. </p>
<p>The script report as &#8220;Mozilla/4.0 (compatible; MSIE 5.0; Windows NT) with timeout set to 30 seconds. </p>
<p>      The second step is to check the manual page labeled as &#8220;no link&#8221;. </p>
<p>  For parties that do not open or give 404, 500 or script errors contained therein, checked a copy of Google, if I did not find a copy of sub-assumed that the link is there. </p>
<p>  Unfortunately, after counting all noticed that he committed a small mistake does not zapisałem the number of pages on which I was not able to determine &#8220;is / is not&#8221; but such cases were not many, bodajże at 3-5 for the Polish system and 1 for LV . </p>
<p><strong>LiveLink </strong></p>
<p>      Reviewed 264 pages, I did not find a link to the 55 units at a 20.83% &#8211; not enough is not it? </p>
<p>For most of the system simply was not the links, I saw a few pages from a 301 redirect from the sub, which was listed on the homepage. Several sub did not exist, despite the fact that the party work and its structure has not changed, most were catalogs, where entry has been removed, so subpage disappeared. </p>
<p>But, interestingly, I found a flower, which is parked domain, with a copy indicating that this state has been going on since the week.</p>
<p>I think that this system powianiem spider to catch a long time already. </p>
<p>      Do not hide that, for the first system of checking the action moved almost two months ago, unfortunately, despite the declaration by the detectives&#8217; side have not been removed, and a relatively large amount of re-wyłapana was not as Issuing links. </p>
<p><strong>LinkMe </strong></p>
<p>      Reviewed 210 pages, I did not find a link to the 28 pieces which gives 13.33%. As for the% is already a better situation, spider system is a little more effective than the LiveLink. </p>
<p>     Here, in the same way most simply was not &#8220;my&#8221; link, were non-existent and the sub-301 Was not without a &#8220;flower&#8221;, which turned out to be zbanowana domain on Google.</p>
<p><strong>Seo through ban domains &#8230; hmm</strong>S. </p>
<p>   Unfortunately I&#8217;m not able to determine when it was, so there is a chance that np days sooner and bot that system did not have time to throw away. </p>
<p><strong>Link Vault </strong></p>
<p>      Reviewed 226 pages, I did not find a link to the 12 pieces which gives 5.31%. </p>
<p>      As you can see in this system loses the least points to the &#8220;empty links&#8221;, the positioning of the system will be more effective. </p>
<p>      The fact is that I thought that this system will be less of these pages. </p>
<p>I did not find here any interesting links on the case and just did not happen. </p>
<p>      While reviewing these systems, I established that the upper limit of tolerance, missing links, to 3-5%. I bet too that I am not an isolated case, because I think that looking at the system as a whole, the percentages, not much has changed. </p>
<p>Unfortunately, none of the systems in this limit does not fit. </p>
<p>LV was a close as you can see, the system is control from the best developed. </p>
<p>     Percentages are unfortunately Polish systems for high-owners Administrators gentlemen! </p>
<p>13.33% is already appalling, but 20.83% is already a nightmare. </p>
<p>For every 1,000 links 133szt. or 208szt. simply does not exist. The worst is that these quantities, often allow for the positioning of the next phrase, or the strengthening of the back-end. </p>
<p>      One, a plus for the LiveLink is to export links to the pdf. Really makes it easy to automatically check for it in LinkMe, I have the impression that, after dividing the list 10pcs. on the sub is deliberate action to impede verification. Copy these links took me several minutes if I wanted to check in 2000 to probably zniechęciłbym quickly. Maybe I would have done to time but not cyclical. </p>
<p>Unfortunately, LV is not better than LinkMe in this respect, the fact that I&#8217;ve created a list faster, but only through the Firefox extension &#8220;Web Developer&#8221; + cleaning with unnecessary things. </p>
<p>     At the end I would like to add that it does not assess the effectiveness of these systems in terms of positioning. The fact is, however, that if the number of pages that do not emit links were lower to those systems would be even more effective. </p>
<p>      I encourage everyone to independently verify their mailing lists, and to report this to the systems, will certainly contribute to the increase in the value of your points.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Customizing Livelink &ndash; OScript development &ndash; Scary huh?]]></title>
<link>http://livelink.wordpress.com/2008/09/13/customizing-livelink-oscript-development-scary-huh/</link>
<pubDate>Sat, 13 Sep 2008 12:01:50 +0000</pubDate>
<dc:creator>Rick Breemer</dc:creator>
<guid>http://livelink.wordpress.com/2008/09/13/customizing-livelink-oscript-development-scary-huh/</guid>
<description><![CDATA[Many organisations that use Livelink get kind of nervous when I mention a specific problem can be so]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://livelink.files.wordpress.com/2008/09/serverdidnotrespond.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://livelink.files.wordpress.com/2008/09/serverdidnotrespond-thumb.jpg?w=243&#038;h=84" border="0" alt="serverdidnotrespond" width="243" height="84" align="right" /></a>Many organisations that use Livelink get kind of nervous when I mention a specific problem can be solved by developing a custom Livelink module in OScript. And of course, they are right to have some concerns. (Over-) customization is a risk for your Livelink (or any other!) system. A heavily customised system will be more difficult to support and to upgrade.</p>
<p>This is absolutely true, but what is the alternative? An enterprise-wide system such as Livelink will, out of the box, never cover all functionality that is required by every department/process/user in your system. So what are you going to do? Tell your users to work in a different (less-effective?) way? Change their business processes because Livelink doesn’t support theirs? Or perhaps buy a standard add-on module from Open Text or a third party? This last one may seem like a good idea, but being a <em>standard</em> module, it is <em>generic</em> in nature and will most likely still not solve your <em>specific</em> business needs completely.</p>
<p>So perhaps we should consider customisations after all… Let’s take a closer look at what the fears and risks really are, and how they can be managed. Most heard fears is that a new, custom Livelink module might be hard to maintain and upgrade and could have a bad influence on performance…</p>
<p><strong>It´s not that scary</strong></p>
<p>One general fear that I want to take away first, is the fear of the unknown. The fear that this scary, obscure customization will make changes everywhere to the core system and that you will from then on always be dependent on one of these hard to find, expensive OScript developers to keep your system alive.</p>
<p>Specifically when talking about maintenance and upgrade problems, it is important to realise that a custom module is not at all that exotic. What clients typically don’t know, is that Livelink’s modular architecture, makes it possible to customise the system in a good way. It’s not the case that Livelink itself is a big, robust, single system and that any customisation is just an add-on that hacks into this big system. The functionality of Livelink itself is made up from separate modules. Technically, there is no real difference between Livelink&#8217;s own ‘Discussions’ module and a custom module.</p>
<p>Even when you need to modify standard functionality, Livelink’s approach of orphaning and callbacks gives you the possibility to make your changes in a separate module, without modifying the original code. Impact is typically low; the customisation can be undone by simply uninstalling the module (assuming no database modifications have been made).</p>
<p><strong>Document your fears</strong></p>
<p>For a client it is important to identify the risks or concerns you have and then make sure they are part of the requirements specification and the design documents. Too often I see that even though some fears or doubts exist, the requirements are only aimed at the functionality of the application. The non-functional requirements such as maintainability, reliability, performance, etc, are too often forgotten in the requirements specifications, or not seriously dealt with in the functional and technical design documents. A lot more non-functional requirements (or ‘quality attributes’) exist that you may want to include in your specification document. For example, see <a href="http://en.wikipedia.org/wiki/Non-functional_requirements">http://en.wikipedia.org/wiki/Non-functional_requirements</a> or <a href="http://en.wikipedia.org/wiki/List_of_System_Quality_Attributes">http://en.wikipedia.org/wiki/List_of_System_Quality_Attributes</a>.</p>
<p><strong>Code quality is important</strong></p>
<p>Still, sometimes it will be necessary to make changes that go beyond the standard options that Livelink provides. If this is the case, it is up to the developer to clearly document where this happens (and up to the client to demand such documentation from the developer). I always provide a standardised ‘Quality Assurance’ form with any customization I make. This form lists important information such as database schema changes (including uninstall behavior), overridden/patched features, mapped html files, list of error messages, etc. Such details have proven to be very valuable for the system administrators.</p>
<p><strong>Support contracts</strong></p>
<p>A support contract with the system integrator can lower the risk even further. This could ensure you will have no compatibility problems in the future. Still, it may complicate things when an issue arises that cannot directly be connected to the customisation. Who will be responsible for doing the support? The best solution would be to have the customisation certified by Open Text and then be included in the existing OT support contract.</p>
<p>To sum it up. A custom Livelink module does not need to be that scary. It can be an effective (and perhaps the only) way to optimise your system with improved usability and the ability to handle your specific business needs in the best way possible.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Think big, act small. But not too small!]]></title>
<link>http://livelink.wordpress.com/2008/07/06/think-big-act-small-but-not-too-small/</link>
<pubDate>Sun, 06 Jul 2008 21:15:28 +0000</pubDate>
<dc:creator>Rick Breemer</dc:creator>
<guid>http://livelink.wordpress.com/2008/07/06/think-big-act-small-but-not-too-small/</guid>
<description><![CDATA[A lot of Livelink implementations are not 100% successful. Typically, an unsuccessful implementation]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A lot of Livelink implementations are not 100% successful. Typically, an unsuccessful implementation results in either an ECM system not being used at all, or a system used in such a way that your users (and your content) are out of control. The first one, is the one I see the most.</p>
<p>Nowadays there is a lot of focus on the change management aspect of an ECM project. This is extremely important when looking at user acceptance, but my thoughts are on the system itself. Many organisations roll-out a very basic system and plan to add more features later on. However, by that time, a lot of damage has been done. On such a limited system, it is very hard to convince end users why this system is soo much better than the network shares they were using before, as most arguments seem to benefit the organisation itself, but not the end-user directly.</p>
<p>So here are the 10 things you should have in place before you roll out your Livelink  system (in no particular order by the way). Without these, it will be more difficult to win the hearts of your users.</p>
<ol>
<li>Directory Services<br />
<em>No discussion possible. You need single sign on from the start!</em></li>
<li>Office and e-mail integration<br />
<em>Livelink will be the central storage for the content your users create, so make it easy for them to add content to the system.</em></li>
<li>Explorer integration<br />
<em>For the same reason as #2, your users will need either Livelink Explorer or WebDav (or a combination)</em></li>
<li>e-Link<br />
<em>E-mail enabling your system greatly enhances productivity, but perhaps more important, your users will love it.</em></li>
<li>Workflow<br />
<em>Workflow is often not implemented in &#8216;phase 1&#8242; of the ECM roll-out. However, workflow is a great way to get things into your system in an organised way. You users will quickly see the benefits of the ECM system compared to a fileshare &#8217;system&#8217;.</em></li>
<li>WebForms<br />
<em>Even if you&#8217;re not using them for a business purpose at the start of your Livelink roll-out, you can create one that your users can use to request access to specific areas or functionality of the Livelink system itself. This is just another way of giving your users something extra, something they didn&#8217;t have before.</em></li>
<li>WebReports<br />
<em>WebReports can be used to make your LiveReports more attractive, and once you start using them, you will find out many, many more uses for them. WebReports can also be used turn your Enterprise Workspace into an attractive dynamic homepage.</em></li>
<li>Appearances and Customviews.<br />
<em>Add some corporate branding to your Livelink pages using Appearances and spend some time creating attractive customviews for the main folders in your Livelink system. Add a few lines indicating the purpose of the folder and add an icon or small image to make it more attractive.</em></li>
<li>Object Importer<br />
<em>You don&#8217;t want to start with an empty system. You will have many documents to bulk-load from existing systems. Object Importer is the perfect tool for this. Make sure you have some Excel templates ready which can be used to generate the XML you need easily.</em></li>
<li>A good viewer<br />
<em>The &#8216;View as webpage&#8217; option is simply not that good. A viewer like Brava can be a nice (but expensive) replacement with a lot of additional options you may use later on (markups, limiting downloading/printing of classified documents). It especially becomes a &#8216;must have&#8217; when you have engineering drawings in your system.</em></li>
</ol>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Introduction]]></title>
<link>http://livelink.wordpress.com/2008/07/06/introduction/</link>
<pubDate>Sun, 06 Jul 2008 19:07:33 +0000</pubDate>
<dc:creator>Rick Breemer</dc:creator>
<guid>http://livelink.wordpress.com/2008/07/06/introduction/</guid>
<description><![CDATA[Hi, welcome to my ‘Livelink thoughts’ blog. I’ll be posting my thoughts on Livelink related matters ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignnone size-medium wp-image-31" style="margin-right:10px;" src="http://livelink.wordpress.com/files/2008/07/rick.jpg?w=150" alt="" width="79" height="99" align="left" />Hi, welcome to my ‘Livelink thoughts’ blog. I’ll be posting my thoughts on Livelink related matters here from now on.</p>
<p>But first, let me tell you who I am. My name is Rick Breemer, born in 1976, living in Dordrecht, the Netherlands. I have been working with Open Text Livelink since 2000. I have specialised in Livelink software (OScript) development for Open Text&#8217;s flagship product Livelink Enterprise Server. Over the years I have worked with many different Open Text products and have played many different roles in a variety of client environments.</p>
<p>From this experience I will be posting my thoughts on approaches, tools and techniques that I believe are most successful. My target audience? I guess anyone who is interested in Livelink!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hooray For LiveLink!]]></title>
<link>http://beltwaysnark.com/2008/03/31/hooray-for-livelink/</link>
<pubDate>Mon, 31 Mar 2008 16:18:20 +0000</pubDate>
<dc:creator>beltwaysnark</dc:creator>
<guid>http://beltwaysnark.com/2008/03/31/hooray-for-livelink/</guid>
<description><![CDATA[LiveLink has decided to put the Fitna video back on their site, and have released this message: On t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>LiveLink has decided to put the <em>Fitna</em> video back on their site, and have released this message:</p>
<blockquote><p>On the 28th of March LiveLeak.com was left with no other choice but to remove the film &#8220;fitna&#8221; from our servers following serious threats to our staff and their families. Since that time we have worked constantly on upgrading all security measures thus offering better protection for our staff and families. With these measures in place we have decided to once more make this video live on our site. We will not be pressured into censoring material which is legal and within our rules. We apologise for the removal and the delay in getting it back, but when you run a website you don&#8217;t consider that some people would be insecure enough to threaten our lives simply because they do not like the content of a video we neither produced nor endorsed but merely hosted.</p></blockquote>
</div>]]></content:encoded>
</item>

</channel>
</rss>
