You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chemistry.apache.org by bu...@apache.org on 2011/08/16 16:35:42 UTC

svn commit: r794444 - /websites/staging/chemistry/trunk/content/java/developing/guide.html

Author: buildbot
Date: Tue Aug 16 14:35:42 2011
New Revision: 794444

Log:
Staging update by buildbot

Modified:
    websites/staging/chemistry/trunk/content/java/developing/guide.html

Modified: websites/staging/chemistry/trunk/content/java/developing/guide.html
==============================================================================
--- websites/staging/chemistry/trunk/content/java/developing/guide.html (original)
+++ websites/staging/chemistry/trunk/content/java/developing/guide.html Tue Aug 16 14:35:42 2011
@@ -249,12 +249,13 @@ folders and documents are the main objec
 <h4 id="cmis_services">CMIS Services</h4>
 <p>The CMIS specification describes a set of services that act on repositories. The OpenCMIS client API uses these services, but by using a client binding,
 presents the user of the API a simple set of classes rather than the services described by CMIS. If you want to access a CMIS repository at the service level, you can do that
-by using the <a href="http://chemistry.apache.org/java/developing/client/dev-client-bindings.html">OpenCMIS client bindings layer</a> directly.
-The CMIS services are:-</p>
+by using the <a href="http://chemistry.apache.org/java/developing/client/dev-client-bindings.html">OpenCMIS client bindings layer</a> directly.</p>
+<p>The CMIS services are:-</p>
 <ul>
 <li><em>Repository services</em> -  let you discover available repositories, get the capabilities of these repositories, and provide basic Data Dictionary information of what types are available in the repository.</li>
 <li><em>Navigation services</em> -  let you navigate the repository by accessing the folder tree and traversing the folder/child hierarchy. You can use these services to get both children and parents of an object.</li>
-<li><em>Object services</em> -  provide the basic CRUD (Create, Read, Update, Delete) and Control services on any object, including document, folder, policy, and relationship objects. For document objects, this includes setting and getting of properties, policies, and content streams. Object services retrieve objects by path or object ID. Applications may also discover what actions users are allowed to perform.</li>
+<li><em>Object services</em> -  provide the basic CRUD (Create, Read, Update, Delete) and Control services on any object, including document, folder, policy, and relationship objects. For document objects, this
+  includes setting and getting of properties, policies, and content streams. Object services retrieve objects by path or object ID. Applications may also discover what actions users are allowed to perform.</li>
 <li><em>Multi-filing services</em> -  let you establish the hierarchy by adding or removing an object to or from a folder.</li>
 <li><em>Discovery services</em> -  provide Query and Change services, and a means of paging the results of the query.</li>
 <li><em>Change services</em> -  let you discover what content has changed since the last time checked, as specified by a special token. You can use Change services for external search indexing and replication services.</li>
@@ -998,7 +999,9 @@ and the client stack trace.</p>
 
 <p>The output from this snippet looks like this:-</p>
 <div class="codehilite"><pre>server error page :
-&lt;html&gt;&lt;head&gt;&lt;title&gt;Apache Chemistry OpenCMIS - objectNotFound error&lt;/title&gt;&lt;style&gt;&lt;!--H1 {font-size:24px;line-height:normal;font-weight:bold;background-color:#f0f0f0;color:#003366;border-bottom:1px solid #3c78b5;padding:2px;} BODY {font-family:Verdana,arial,sans-serif;color:black;font-size:14px;} HR {color:#3c78b5;height:1px;}--&gt;&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&lt;h1&gt;HTTP Status 404 - &lt;!--exception--&gt;objectNotFound&lt;!--/exception--&gt;&lt;/h1&gt;&lt;p&gt;&lt;!--message--&gt;unknown type id: cmis:badtype&lt;!--/message--&gt;&lt;/p&gt;&lt;hr noshade=&#39;noshade&#39;/&gt;&lt;!--stacktrace--&gt;&lt;pre&gt;
+&lt;html&gt;&lt;head&gt;&lt;title&gt;Apache Chemistry OpenCMIS - objectNotFound error&lt;/title&gt;&lt;/head&gt;&lt;body&gt;
+&lt;h1&gt;HTTP Status 404 - objectNotFound&lt;/h1&gt;
+&lt;!--message--&gt;unknown type id: cmis:badtype&lt;!--/message--&gt;&lt;/p&gt;&lt;hr noshade=&#39;noshade&#39;/&gt;&lt;!--stacktrace--&gt;&lt;pre&gt;
 org.apache.chemistry.opencmis.commons.exceptions.CmisObjectNotFoundException: unknown type id: cmis:badtype
     at org.apache.chemistry.opencmis.inmemory.server.InMemoryRepositoryServiceImpl.getTypeDefinition(InMemoryRepositoryServiceImpl.java:110)
     at org.apache.chemistry.opencmis.inmemory.server.InMemoryService.getTypeDefinition(InMemoryService.java:110)