<?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>UKoom &#187; WDK Application</title>
	<atom:link href="http://www.ukoom.com/category/documentum/wdk/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ukoom.com</link>
	<description>Documentum, SharePoint, Alfresco, ECM...</description>
	<lastBuildDate>Thu, 13 May 2010 00:21:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Check in v.s. Save</title>
		<link>http://www.ukoom.com/check-in-v-s-save.htm</link>
		<comments>http://www.ukoom.com/check-in-v-s-save.htm#comments</comments>
		<pubDate>Sun, 02 May 2010 13:53:26 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[Documentum]]></category>
		<category><![CDATA[WDK Application]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=1065</guid>
		<description><![CDATA[
Webtop lets you [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Webtop lets you check in a document as the same (existing) version. However,  when you do this the Content Server never sees a <code>checkin</code> call or  event. Webtop simply sets the new file as content, updates any changed  attributes, and saves the object. So a <code>dm_save</code> event occurs rather  than <code>dm_checkin</code>.</p>
<p>It becomes more obvious if we look at the corresponding API call  descriptions.</p>
<ul>
<li><code>checkin</code> – creates a new version of an object in the repository  and removes the lock from the previous version.</li>
<li><code>save</code> – writes the object to the repository without creating a  new version of the object.</li>
</ul>
<p>Both of these methods have an optional argument to retain lock on the  resulting object (new version for checkin and existing version for save). This  argument defaults to FALSE – the lock is gone after the operation.</p>
<p>So why do we care? Normally we don’t need to. However, if we <em>turn  notification on</em> for a document we need to remember this difference between  checkin and save. By default, notifications are sent only for checkin event  occurrences. So we won’t get a notification if the document was “checked in as  same version”.</p>
<p>Similarly, other behavior (such as auditing) tied to events may be  affected.</p></div>
<p>This article is from http://doquent.wordpress.com/2008/08/20/check-in-as-same-version/</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li><li><a href="http://www.ukoom.com/locate-the-rendition-files.htm" title="Locate the rendition files">Locate the rendition files</a></li><li><a href="http://www.ukoom.com/platform-status-libjvm-so-cannot-open-shared-object-file-no-such-file-or-directory.htm" title="Platform Status: libjvm.so: cannot open shared object file: No such file or directory">Platform Status: libjvm.so: cannot open shared object file: No such file or directory</a></li><li><a href="http://www.ukoom.com/install-oracle-10-2-0-3-and-documentum-6-5-doc.htm" title="Install oracle-10.2.0.3 and Documentum-6.5">Install oracle-10.2.0.3 and Documentum-6.5</a></li><li><a href="http://www.ukoom.com/change-doctype.htm" title="Change doctype">Change doctype</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/check-in-v-s-save.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH</title>
		<link>http://www.ukoom.com/webtop-65sp2-fixed-problems-maxlength.htm</link>
		<comments>http://www.ukoom.com/webtop-65sp2-fixed-problems-maxlength.htm#comments</comments>
		<pubDate>Thu, 23 Jul 2009 22:28:40 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[Documentum]]></category>
		<category><![CDATA[WDK Application]]></category>
		<category><![CDATA[Webtop]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=659</guid>
		<description><![CDATA[Missing MAXLENGTH support [...]]]></description>
			<content:encoded><![CDATA[<p>Missing MAXLENGTH support for string type of attributes (WEBTOP4521)<br />
Text input controls (dmf:text and derived controls) in Documentum do not support the MAXLENGTH<br />
attribute available in the HTML standard, an attribute that limits the number of characters a user<br />
can enter in a text field.<br />
Text input controls have been enhanced to support the MAXLENGTH attribute that can be defined<br />
for string type of attributes. If MAXLENGTH has been defined for a string type of attribute, the value<br />
of MAXLENGTH will determine the maximum number of characters that the user can enter in a text<br />
field. For example, the MAXLENGTH attribute can be defined for a text control as follows:<br />
&lt;dmf:text name=&#8221;txtSearch&#8221; id=&#8221;txtSearch&#8221; size=&#8221;35&#8243; maxlength=&#8221;40&#8243;<br />
defaultonenter=&#8221;true&#8221; tooltipnlsid=’MSG_GO’ autocompleteid=<br />
&#8220;ac_simplesearch&#8221;/&gt;<br />
Data dictionary bound controls such as dmfx:docbaseattributevalue, dmf:docbaseattribute, and<br />
dmfx:docbaseattributelist set the maximum input length of the text control to the length defined for<br />
the string type of attribute in the data dictionary.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/webtop-65sp2-fixed-problems-1.htm" title="Webtop 6.5SP2 Fixed Problems &#8211; 1">Webtop 6.5SP2 Fixed Problems &#8211; 1</a></li><li><a href="http://www.ukoom.com/new-features-in-wdk6.htm" title="New Features in WDK6">New Features in WDK6</a></li><li><a href="http://www.ukoom.com/wdk6-lifecycle-enhancements.htm" title="WDK6 &#8211; Lifecycle enhancements">WDK6 &#8211; Lifecycle enhancements</a></li><li><a href="http://www.ukoom.com/check-in-v-s-save.htm" title="Check in v.s. Save">Check in v.s. Save</a></li><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/webtop-65sp2-fixed-problems-maxlength.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webtop 6.5SP2 Fixed Problems &#8211; 1</title>
		<link>http://www.ukoom.com/webtop-65sp2-fixed-problems-1.htm</link>
		<comments>http://www.ukoom.com/webtop-65sp2-fixed-problems-1.htm#comments</comments>
		<pubDate>Thu, 23 Jul 2009 22:27:41 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[Documentum]]></category>
		<category><![CDATA[WDK Application]]></category>
		<category><![CDATA[Webtop]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=657</guid>
		<description><![CDATA[An error occurs [...]]]></description>
			<content:encoded><![CDATA[<p>An error occurs when Webtop users with the Version permission create a new document(161635/WEBTOP3945, WEBTOP7159)<br />
The &#8220;No write access&#8221; error occurs when a user with the Version permission creates a new document (dm_document object) in Webtop. However, a blank document is created successfully.<br />
You can enable Webtop users with the Version permission to create dm_document objects by customizing the newdocument_component.xml file and setting the value of the &lt;enabled&gt; tag to &#8220;true&#8221;.<br />
Modify the newdocument_component.xml file by adding the following code below the code for combo_defaults:<br />
&lt;wdk_new_doc_aspect&gt;<br />
&lt;enabled&gt;false&lt;/enabled&gt;<br />
&lt;exclusion_list&gt;&lt;/exclusion_list&gt;<br />
&lt;/wdk_new_doc_aspect&gt;<br />
1. This configuration enables users who do not have the Delete permission on the object being created, to create a new document as the object owner. For example, if you enable this behavior,users with the Version permission can create new documents.<br />
2. When this option is enabled, the application attaches a temporary permission by attaching a new aspect and removes the aspect on the first version.<br />
3. If you specify any custom types for dm_document, this behavior does not apply for these types even if the option is enabled in step 2.<br />
Note: This configuration is supported from Documentum 6.5 SP2 and requires the Documentum 6.5 SP2 Webtop.dar to be compatible with the Content Server.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/webtop-65sp2-fixed-problems-maxlength.htm" title="Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH">Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH</a></li><li><a href="http://www.ukoom.com/new-features-in-wdk6.htm" title="New Features in WDK6">New Features in WDK6</a></li><li><a href="http://www.ukoom.com/wdk6-lifecycle-enhancements.htm" title="WDK6 &#8211; Lifecycle enhancements">WDK6 &#8211; Lifecycle enhancements</a></li><li><a href="http://www.ukoom.com/check-in-v-s-save.htm" title="Check in v.s. Save">Check in v.s. Save</a></li><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/webtop-65sp2-fixed-problems-1.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Features in WDK6</title>
		<link>http://www.ukoom.com/new-features-in-wdk6.htm</link>
		<comments>http://www.ukoom.com/new-features-in-wdk6.htm#comments</comments>
		<pubDate>Fri, 10 Jul 2009 00:05:02 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[WDK Application]]></category>
		<category><![CDATA[Documentum]]></category>
		<category><![CDATA[Webtop]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=633</guid>
		<description><![CDATA[
In D6, WDK [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ukoom.com/wp-content/uploads/2009/07/new_webtop6_ui.jpg"><img class="alignnone size-medium wp-image-634" title="new_webtop6_ui" src="http://www.ukoom.com/wp-content/uploads/2009/07/new_webtop6_ui-300x213.jpg" alt="" width="300" height="213" /></a></p>
<p>In D6, WDK has introduced many new features/functionalities to give rich UI/better navigation and improved performances. D6 includes the following functionalities</p>
<ol>
<li>Configuration service modifications</li>
<li>Right-click context menus</li>
<li>Presets</li>
<li>Field tab-through order configuration</li>
<li>Auto complete</li>
<li>Keyboard shortcuts</li>
<li>Remove checkboxes</li>
<li>Multi-object select (ACLs, Properties, Lifecycles)</li>
<li>Assigning relationships</li>
<li>Emphasizing lifecycles</li>
<li>Dynamic filters (e.g., Starts With)</li>
</ol>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/wdk6-lifecycle-enhancements.htm" title="WDK6 &#8211; Lifecycle enhancements">WDK6 &#8211; Lifecycle enhancements</a></li><li><a href="http://www.ukoom.com/webtop-65sp2-fixed-problems-maxlength.htm" title="Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH">Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH</a></li><li><a href="http://www.ukoom.com/webtop-65sp2-fixed-problems-1.htm" title="Webtop 6.5SP2 Fixed Problems &#8211; 1">Webtop 6.5SP2 Fixed Problems &#8211; 1</a></li><li><a href="http://www.ukoom.com/check-in-v-s-save.htm" title="Check in v.s. Save">Check in v.s. Save</a></li><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/new-features-in-wdk6.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WDK6 &#8211; Lifecycle enhancements</title>
		<link>http://www.ukoom.com/wdk6-lifecycle-enhancements.htm</link>
		<comments>http://www.ukoom.com/wdk6-lifecycle-enhancements.htm#comments</comments>
		<pubDate>Mon, 29 Jun 2009 00:25:18 +0000</pubDate>
		<dc:creator>ukoom</dc:creator>
				<category><![CDATA[WDK Application]]></category>
		<category><![CDATA[Documentum]]></category>
		<category><![CDATA[Webtop]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=638</guid>
		<description><![CDATA[Lifecycle is now [...]]]></description>
			<content:encoded><![CDATA[<p>Lifecycle is now displayed on the Properties Screen (part of the default attribute set). Lifecycle Users are able to apply a lifecycle on documents at creation time (and Import, Create, Checkin), or later, via the Properties screen. The process of applying a lifecycle to a document has been enhanced to include the ability to specify the initial lifecycle state and the alias set. The current success/error messages for the lifecycle‑related actions displayed on the Message Bar that involve a lifecycle state change (Apply, Detach, Promote, Demote, Suspend and Resume) will be enriched to contain pertinent information about the object lifecycle state (previous and current).</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/new-features-in-wdk6.htm" title="New Features in WDK6">New Features in WDK6</a></li><li><a href="http://www.ukoom.com/webtop-65sp2-fixed-problems-maxlength.htm" title="Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH">Webtop 6.5SP2 Fixed Problems &#8211; MAXLENGTH</a></li><li><a href="http://www.ukoom.com/webtop-65sp2-fixed-problems-1.htm" title="Webtop 6.5SP2 Fixed Problems &#8211; 1">Webtop 6.5SP2 Fixed Problems &#8211; 1</a></li><li><a href="http://www.ukoom.com/check-in-v-s-save.htm" title="Check in v.s. Save">Check in v.s. Save</a></li><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/wdk6-lifecycle-enhancements.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WDK Based Applications</title>
		<link>http://www.ukoom.com/wdk-based-applications.htm</link>
		<comments>http://www.ukoom.com/wdk-based-applications.htm#comments</comments>
		<pubDate>Thu, 27 Nov 2008 08:29:35 +0000</pubDate>
		<dc:creator>Rexleed</dc:creator>
				<category><![CDATA[WDK Application]]></category>
		<category><![CDATA[Documentum]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=180</guid>
		<description><![CDATA[
What is WDK [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ukoom.com/wp-content/uploads/2008/11/wdk-concept-dctm.jpg"><img class="size-medium wp-image-8" title="wdk-concept-dctm" src="http://www.ukoom.com/wp-content/uploads/2008/11/wdk-concept-dctm-300x199.jpg" alt="wdk-concept-dctm" width="300" height="199" /></a></p>
<p><strong>What is WDK </strong><br />
Web Development Kit (WDK) is a developer’s toolkit, based on industry standards,<br />
that facilitates the development of complex web-based applications that connect to<br />
Documentum Content Server and Documentum content repositories. WDK provides<br />
a J2EE development platform and contains a large library of reusable components<br />
and controls that perform common Documentum content management functions and<br />
provide a uniform user interface to applications built with WDK. The Documentum web<br />
client applications described below were developed using WDK. These applications can<br />
be customized using WDK.</p>
<p><strong>What is WDK application </strong></p>
<p>WDK applications can have four or more application layers: The WDK layer, the<br />
webcomponent layer, a layer that extends Webtop (such as Web Publisher), the custom<br />
layer, and an optional Webtop layer. A customized WDK application is a web client that<br />
configures and extends the components in the WDK and webcomponent layers.</p>
<p><strong>What is WDK-Based application</strong></p>
<p>A WDK-based application is built on WDK (Web Development Kit) functionality. A<br />
WDK-based application lets you access an EMC | Documentum repository over the web.</p>
<p><strong>What is WebTop </strong><br />
Server and provides access to a content repository, formerly called a Docbase. Webtop<br />
allows you to perform many document management tasks, from a document’s creation to<br />
its archiving, and everything in between. Content Server automates numerous document<br />
management tasks and provides automatic routing, renditioning, versioning, security,<br />
and many other functions.</p>
<p><strong>What is Web Publisher </strong><br />
Web Publisher is a browser-based application that simplifies and automates the creation<br />
of content for web sites. Authors create and modify content without having to know how<br />
to construct web pages. Content is automatically published to multiple sites in multiple<br />
languages and formats. Developers use Web Publisher to maintain web page templates<br />
and site structures. Administrators maintain the Web Publisher system settings.</p>
<p>Web Publisher connects to Content Server to store content in a repository and perform<br />
content management functions. Documentum Site Caching Services (SCS) is used to<br />
publish content from a repository to a designated location on a web site.</p>
<p>Note: web publisher portlet builder/web publisher page builder/ web publisher contributor</p>
<p><strong>Relationship between them </strong></p>
<p>Webtop and webPublisher are WDK-Based applications of WDK</p>
<p>Documentum Web client applications are built on WDK. Webtop is a reference<br />
implementation of WDK. Documentum Administrator, Digital Asset Manager, Web<br />
Publisher, and other client applications are extensions of Webtop. WDK for Portlets<br />
is an application built on WDK.</p>
<p><strong>Development on WDK</strong></p>
<p>if we wanna  develop a new Web application ,  we can extend one of the WDK clients such as WebTop or Web Publisher or it can be a new application based on WDK.</p>
<p>This is extended from Yuewen&#8217;s study note</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/check-in-v-s-save.htm" title="Check in v.s. Save">Check in v.s. Save</a></li><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li><li><a href="http://www.ukoom.com/locate-the-rendition-files.htm" title="Locate the rendition files">Locate the rendition files</a></li><li><a href="http://www.ukoom.com/platform-status-libjvm-so-cannot-open-shared-object-file-no-such-file-or-directory.htm" title="Platform Status: libjvm.so: cannot open shared object file: No such file or directory">Platform Status: libjvm.so: cannot open shared object file: No such file or directory</a></li><li><a href="http://www.ukoom.com/install-oracle-10-2-0-3-and-documentum-6-5-doc.htm" title="Install oracle-10.2.0.3 and Documentum-6.5">Install oracle-10.2.0.3 and Documentum-6.5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/wdk-based-applications.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How does WDK work</title>
		<link>http://www.ukoom.com/how-does-wdk-work.htm</link>
		<comments>http://www.ukoom.com/how-does-wdk-work.htm#comments</comments>
		<pubDate>Tue, 11 Nov 2008 00:21:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WDK Application]]></category>
		<category><![CDATA[Documentum]]></category>

		<guid isPermaLink="false">http://www.ukoom.com/?p=9</guid>
		<description><![CDATA[
Related PostsCheck in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ukoom.com/wp-content/uploads/2008/11/wdk-concept-dctm.jpg" class="thickbox"><img  title="wdk-concept-dctm" src="http://www.ukoom.com/wp-content/uploads/2008/11/wdk-concept-dctm-300x199.jpg" alt="how does WDK work" width="300" height="199" /></a></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.ukoom.com/check-in-v-s-save.htm" title="Check in v.s. Save">Check in v.s. Save</a></li><li><a href="http://www.ukoom.com/dm_query_e_table_no_access.htm" title="DM_QUERY_E_TABLE_NO_ACCESS">DM_QUERY_E_TABLE_NO_ACCESS</a></li><li><a href="http://www.ukoom.com/locate-the-rendition-files.htm" title="Locate the rendition files">Locate the rendition files</a></li><li><a href="http://www.ukoom.com/platform-status-libjvm-so-cannot-open-shared-object-file-no-such-file-or-directory.htm" title="Platform Status: libjvm.so: cannot open shared object file: No such file or directory">Platform Status: libjvm.so: cannot open shared object file: No such file or directory</a></li><li><a href="http://www.ukoom.com/install-oracle-10-2-0-3-and-documentum-6-5-doc.htm" title="Install oracle-10.2.0.3 and Documentum-6.5">Install oracle-10.2.0.3 and Documentum-6.5</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.ukoom.com/how-does-wdk-work.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
