Common Service Elements



Download 1.14 Mb.
Page4/4
Date26.04.2018
Size1.14 Mb.
#46906
1   2   3   4

Use of HTML Forms


As described in section 1.4.2 HTML forms are used to create, update and delete CMIS content.

The form submission method (HTML form attribute “method”) MUST be “POST”. The encoding type (HTML form attribute “enctype”) MUST be either "application/x-www-form-urlencoded" or "multipart/form-data" if no content stream is attached to the form. The encoding type MUST be “multipart/form-data” if a content stream is attached to the form data.

The names of the controls within the form are defined by the patterns in the following sections. All control names are case-insensitive as defined by the HTML specification. Control names MUST be unique within a form. If the control value of an optional parameter is set to an empty string (“”) the default value MUST be used.

A client MAY add controls to a form that are not defined by CMIS as long as the control names don’t conflict with the patterns described in this specification.

Since control values are strings, all other data types have to be serialized to strings.

The same rules that apply to the serialization to JSON apply here.


        1. Action


An HTML form used to POST CMIS content MUST include a control named “cmisaction” that indicates the CMIS operation to be performed. See section 1.4.3 for valid control values. The value of the control is case insensitive.

Example:



        1. Structured and Array Parameters


Some CMIS operations require structured parameters and arrays of values. Since HTML forms don’t support that usage, some CMIS operation parameters are split into multiple controls in a form.

For example, a CMIS property is split into a control that holds the property id and another control that hold property value. The association between the two controls is done by convention.

The entirety of all properties is made up of an array of these property controls.

Names of controls that are part of an array end with “[]” where is a positive integer. Arrays MUST always start with the index 0 and MUST be gapless.

Example:

An array of three properties looks like this in a HTML form:










If a client sends invalid, incomplete or inconsistent data the repository SHOULD return an invalidArgument error.


        1. CMIS Controls


This section lists all HTML form controls used by CMIS operations.
          1. ID’s
            1. Object id:

Control name: “objectId”

Control value: Object id

Example:


            1. Folder id:

Control name: “folderId”

Control value: Folder id

Example:


            1. Source folder id:

Control name: “sourceFolderId”

Control value: Folder id

Example:


            1. Target folder id:

Control name: “targetFolderId”

Control value: Folder id

Example:


          1. Single-value Properties

A single-value property is made up of a pair of a “propertyId” control and a “propertyValue” control with the same
. To unset the property, the “propertyValue” control MUST NOT be present.

does not imply any order.


            1. Property Id:

Control name: “propertyId[
]”

Control value: Property id


            1. Property value:

Control name: “propertyValue[
]”

Control value: Property value

Example:







          1. Multi-value Properties

A multi-value property is made up a “propertyId” control and a series of “propertyValue” controls with the same
. To unset the property, no “propertyValue” control MUST be present.

does not imply any order, but defines the order of the values.


            1. Property Id:

Control name: “propertyId[
]”

Control value: Property id


            1. Property values:

Control name: “propertyValue[
][]”

Control value: Property value at position

Example:



















          1. Access Control
            1. Adding Access Control Entries (ACEs)

To add an ACE to a CMIS object, a control named “addACEPrincipal” control is used with an , with zero or more “addACEPermission” controls, each with the same and another subindex,
.

and
don’t imply any order.
              1. Principal:

Control name: “addACEPrincipal[]”

Control value: Principal id


              1. Permission:

Control name: “addACEPermission[][
]”

Control value: Permission id

Example:










            1. Removing Access Control Entries (ACEs)

To remove an ACE from a CMIS object, a control named “removeACEPrincipal” is used with an , and zero or more “removeACEPermission” controls, each with the same and another subindex,
.

and
don’t imply any order.
              1. Principal

Control name: “removeACEPrincipal[]”

Control value: Principal id


              1. Permission

Control name: “removeACEPermission[][
]”

Control value: Permission id

Example:










            1. ACL propagation

To specify how to propagate ACE’s, a control named “ACLPropagation” is used.

Control name: “ACLPropagation”

Control value: ACL propagation enum ("objectonly", "propagate", "repositorydetermined")

Example:



          1. Policies

Policies are assigned to CMIS objects by including a control named “policy” with an index of
. A policy list is made up of a series of these “policy” controls.

does not imply any order.


            1. Policy:

Control name: “policy[
]”

Control value: Policy id

Example:






          1. Change Token

A CMIS change token is included by using a form control named “changeToken”. If the value of the control is set to the empty string, then the repository MUST treat the change token as not set.

Control name: “changeToken”

Control value: Change token

Example:



          1. Versioning

When a document is checked in, a control named “versioningState” is used to set the versioning state and a control named “checkinComment” is used to include comments.
            1. Versioning State:

Control name: “versioningState”

Control value: Versioning state enum ("none", "major", "minor", "checkedout")

Example:


            1. Checkin Comment

Control name: “checkinComment”

Control value: Checkin comment

Example:


          1. Query

A CMIS query can be constructed using a control named “statement” and set of controls to specify the query options.
            1. Statement:

Control name: “statement”

Control value: CMIS query statement


            1. Search all versions:

Control name: “searchAllVersions”

Control value: boolean (“true”, “false”)


            1. Include relationships:

Control name: “includeRelationships”

Control value: includeRelationships enum ("none", "source" ,"target", "both")


            1. Rendition filter:

Control name: “renditionFilter”

Control value: rendition filter


            1. Include allowable actions:

Control name: “includeAllowableActions”

Control value: boolean (“true”, “false”)


            1. Max items:

Control name: “maxItems”

Control value: non-negative integer


            1. Skip count:

Control name: “skipCount”

Control value: non-negative integer

Example:














          1. Content

A file select control SHOULD be used to attach content.

Control name: “content”



Control value: none










        1. Access to Form Response Content


JSON response content is subject to the same security constraints as any other kind of JavaScript which means that a browser will not allow JavaScript in a page to access JSON objects included in an HTML Form response if that response came from a different domain than the rest of the page content. For example, suppose a browser displayed an HTML Form from Web Server foo.example.com to create a document in a CMIS repository on server bar.example.com. When the user submits the form, there is no way for the page to access the JSON object representing the new document created as a response to the submitted form.

To make it possible for a browser client to access the JSON content answered from the CMIS repository, we introduce an optional token called “cmistransaction”. It is a client generated value that is intended to be used exactly once by the client to retrieve information about the results of a previous CMIS HTML Form post.

To make this work, the CMIS repository MUST keep the core result details (the status code, object id and error message) of a completed request and make those details available to the client in a later request.

In order to correlate the result of a CMIS request with the later call to retrieve the result of that request, the client needs to generate a unique string and include this in the submitted HTML form in a form control with the name “cmistransaction”. The mechanism to generate the value for this form control is a client decision and the only requirement on this mechanism is that it should be generated in a way that makes it unique enough that the client can retrieve the intended result, within a relatively short period of time (within about one hour). For example, one approach would generate the value by concatenating the number of milliseconds since 1970/01/01, UTC, with a random number and the name of the cmis object

Example:
type="hidden" value="0" />
After the operation has been performed, the client can retrieve the result by sending a HTTP GET requested to the repository URL (see section 1.3.1) with the selector set to “lastResult” and a parameter “cmistransaction” which is set to the same string previously sent with the form.

The result details MUST be answered as a JSON object containing these elements.



integer code

An integer containing the HTTP status code for the operation.



string objectId

A string containing the id of the object, if the operation was successful. If the operation was not successful, the value of this string is undefined.



string exception

A string containing the exception, if the operation was unsuccessful. If the operation was successful, the value of this string is undefined.



string message

A string containing the error message, if the operation was unsuccessful. If the operation was successful, the value of this string is undefined.

The result details SHOULD


  • only be available to the same client (as defined by the client’s IP address) that called the operation.

  • not be kept longer than an hour, since they are supposed to be retrieved immediately after the operation by the client.

  • only be retrievable once. That is, a second attempt SHOULD return an invalidArgument error (code = 0).

If the value of the parameter “cmistransaction” is invalid, the “code” field of this JSON object MUST be set to 0.

If the “cmistransaction” control is not specified in the form, the repository does not need to keep the result details because there is no way for the client to retrieve them.



Example:

When the client submits the HTML form, it can include a form control with the name “cmistransction” like this…


type="hidden" value="0" />
Soon thereafter, the client could retrieve the results of the form post by making a request like this
http://localhost:8080/opencmis/browser/A1?cmisselector=lastResult&clientToken=showNewDocumentId&cmistransaction=1296216073275-4312331-document
and then, the repository would answer a JSON object that contains the result details, like this …
{

code : 201,

objectId : "21983210980-2132-23 objectId",

exception : null,

message : null

}
Then the client could retrieve the details for the object using its objectId, as described in section 1.3.3.


          1. Client Implementation Hints

Most applications don’t want to show the JSON object representations to the end-user after (s)he clicks the form submit button. After all, business users using web browsers don’t want to look at raw JSON content.

To avoid showing JSON to the user, the POST response can instead be directed to a hidden iframe. The iframe’s onLoad event can be used as an operation status notification. When it is triggered the operation is complete on the repository side and it is safe then to retrieve the results.


          1. Server Implementation Hints

The use of transaction id’s can make CMIS stateful since the server has to remember details of a previous service request. However, the state can in fact be kept entirely on the client, to eliminate the need for the server to be stateful at all.
            1. State on Server

Result details are non-permanent data and don’t need to be persisted. A simple in-memory store would be sufficient.

When a repository receives a “lastResult” request it should check the IP address of the client and the expiration time of the result details before it replies. This ensures that the data is not being retrieved by a malicious client, and that the requested data is relevant.


            1. State on Client

The state can be managed on the client side using browser cookies, which keeps the repository stateless.

When a “cmistransaction” control is sent with the form data, the repository can attach a cookie to its POST response. The cookie name is derived from the “cmistransaction” value and the cookie value would contain the result details.

When the repository receives a “lastResult” request, it also receives the cookies from the browser. So, if the repository can find a cookie that matches the “cmistransaction” parameter value it can send back the cookie value and delete the cookie. If there is no corresponding cookie, it can reply with an error message.

Since the browser takes care of the cookie expiration and cookies can only be sent from the originating client, there are no new additional security and lifecycle issues for the repository to handle.


      1. Browser Binding Examples


All of the examples used in this document were created using the Apache Chemistry project.
        1. Getting Repository Info


Repository information is retrieved using an HTTP GET of the service document URL. The response is a JSON object containing properties each of which describes a single CMIS repository as a nested JSON object.

GET /cmis/repositories HTTP/1.1

Host: www.example.com

User-Agent: Mozilla/5.0


HTTP/1.1 200 OK

Content-Type: application/json

Content-Length: xxxx
{

"A1":{


"repositoryUrl":"http:\/\/localhost:8080\/chemistry-opencmis-binding-browser-0.3.0-incubating-SNAPSHOT\/browser\/A1",

"productName":"OpenCMIS InMemory-Server",

"repositoryName":"InMemory Repository",

"capabilities":{

"capabilityChanges":"properties",

"capabilityPWCUpdatable":true,

"capabilityMultifiling":true,

"capabilityAllVersionsSearchable":false,

"capabilityUnfiling":true,

"capabilityJoin":"none",

"capabilityGetDescendants":true,

"capabilityVersionSpecificFiling":false,

"capabilityGetFolderTree":true,

"capabilityACL":"none",

"capabilityRenditions":"none",

"capabilityQuery":"metadataonly",

"capabilityContentStreamUpdatability":"pwconly",

"capabilityPWCSearchable":false

},

"rootFolderId":"100",



"rootFolderUrl":"http:\/\/localhost:8080\/chemistry-opencmis-binding-browser-0.3.0-incubating-SNAPSHOT\/browser\/A1\/root",

"latestChangeLogToken":null,

"thinClientURI":null,

"changesIncomplete":true,

"repositoryId":"A1",

"productVersion":"0.1",

"cmisVersionSupported":"1.0",

"aclCapabilities":null,

"principalIdAnonymous":"anonymous",

"repositoryDescription":"InMemory Test Repository",

"vendorName":"OpenCMIS",

"principalIdAnyone":"anyone"

}

}

        1. Getting Folder Children


The content of a CMIS folder is obtained using an HTTP GET of an object URL for the folder. The response is a JSON object which contains properties such as hasMoreItems, numItems, as well as an array of JSON objects each of which describes a child object, such as a cmis:folder or a cmis:document.

In this example the objectId is used as the selector.

GET /A1/root?objectId=101 HTTP/1.1

Host: www.example.com

User-Agent: Mozilla/5.0
HTTP/1.1 200 OK

Content-Type: application/json

Content-Length: xxxx
{

"numItems":3,

"objects":[

{

"object":{



"properties":{

"cmis:lastModificationDate":{

"cardinality":"single",

"type":"datetime",

"displayName":"CMIS Last Modification Date Property",

"value":1298396347156,

"queryName":"cmis:lastModificationDate",

"localName":"cmis:lastModificationDate",

"id":"cmis:lastModificationDate"

},

"cmis:contentStreamFileName":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Content Stream File Name Property",

"value":"data.txt",

"queryName":"cmis:contentStreamFileName",

"localName":"cmis:contentStreamFileName",

"id":"cmis:contentStreamFileName"

},

"PickListProp":{



"cardinality":"single",

"type":"string",

"displayName":"Sample Pick List Property",

"value":"blue",

"queryName":"PickListProp",

"localName":"PickListProp",

"id":"PickListProp"

},

"cmis:baseTypeId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Base Type Id Property",

"value":"cmis:document",

"queryName":"cmis:baseTypeId",

"localName":"cmis:baseTypeId",

"id":"cmis:baseTypeId"

},

"cmis:isImmutable":{



"cardinality":"single",

"type":"boolean",

"displayName":"CMIS Is Immutable Property",

"value":false,

"queryName":"cmis:isImmutable",

"localName":"cmis:isImmutable",

"id":"cmis:isImmutable"

},

"cmis:objectId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Object Id Property",

"value":"114",

"queryName":"cmis:objectId",

"localName":"cmis:objectId",

"id":"cmis:objectId"

},

"cmis:createdBy":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Created By Property",

"value":"florian",

"queryName":"cmis:createdBy",

"localName":"cmis:createdBy",

"id":"cmis:createdBy"

},

"cmis:lastModifiedBy":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Last Modified By Property",

"value":"florian",

"queryName":"cmis:lastModifiedBy",

"localName":"cmis:lastModifiedBy",

"id":"cmis:lastModifiedBy"

},

"cmis:changeToken":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Change Token Property",

"value":"1298396347156",

"queryName":"cmis:changeToken",

"localName":"cmis:changeToken",

"id":"cmis:changeToken"

},

"cmis:creationDate":{



"cardinality":"single",

"type":"datetime",

"displayName":"CMIS Creation Date Property",

"value":1298396347156,

"queryName":"cmis:creationDate",

"localName":"cmis:creationDate",

"id":"cmis:creationDate"

},

"StringProp":{



"cardinality":"single",

"type":"string",

"displayName":"Sample String Property",

"value":"My Doc StringProperty 6",

"queryName":"StringProp",

"localName":"StringProp",

"id":"StringProp"

},

"cmis:contentStreamMimeType":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Content Stream Mime Type Property",

"value":"text\/plain",

"queryName":"cmis:contentStreamMimeType",

"localName":"cmis:contentStreamMimeType",

"id":"cmis:contentStreamMimeType"

},

"cmis:name":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Name Property",

"value":"My_Document-1-0",

"queryName":"cmis:name",

"localName":"cmis:name",

"id":"cmis:name"

},

"cmis:objectTypeId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Object Type Id Property",

"value":"ComplexType",

"queryName":"cmis:objectTypeId",

"localName":"cmis:objectTypeId",

"id":"cmis:objectTypeId"

},

"cmis:contentStreamLength":{



"cardinality":"single",

"type":"integer",

"displayName":"CMIS Content Stream Length Property",

"value":32768,

"queryName":"cmis:contentStreamLength",

"localName":"cmis:contentStreamLength",

"id":"cmis:contentStreamLength"

}

}



}

},

{



"object":{

"properties":{

"cmis:lastModificationDate":{

"cardinality":"single",

"type":"datetime",

"displayName":"CMIS Last Modification Date Property",

"value":1298396347156,

"queryName":"cmis:lastModificationDate",

"localName":"cmis:lastModificationDate",

"id":"cmis:lastModificationDate"

},

"cmis:contentStreamFileName":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Content Stream File Name Property",

"value":"data.txt",

"queryName":"cmis:contentStreamFileName",

"localName":"cmis:contentStreamFileName",

"id":"cmis:contentStreamFileName"

},

"PickListProp":{



"cardinality":"single",

"type":"string",

"displayName":"Sample Pick List Property",

"value":"blue",

"queryName":"PickListProp",

"localName":"PickListProp",

"id":"PickListProp"

},

"cmis:baseTypeId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Base Type Id Property",

"value":"cmis:document",

"queryName":"cmis:baseTypeId",

"localName":"cmis:baseTypeId",

"id":"cmis:baseTypeId"

},

"cmis:isImmutable":{



"cardinality":"single",

"type":"boolean",

"displayName":"CMIS Is Immutable Property",

"value":false,

"queryName":"cmis:isImmutable",

"localName":"cmis:isImmutable",

"id":"cmis:isImmutable"

},

"cmis:objectId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Object Id Property",

"value":"115",

"queryName":"cmis:objectId",

"localName":"cmis:objectId",

"id":"cmis:objectId"

},

"cmis:createdBy":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Created By Property",

"value":"jens",

"queryName":"cmis:createdBy",

"localName":"cmis:createdBy",

"id":"cmis:createdBy"

},

"cmis:lastModifiedBy":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Last Modified By Property",

"value":"jens",

"queryName":"cmis:lastModifiedBy",

"localName":"cmis:lastModifiedBy",

"id":"cmis:lastModifiedBy"

},

"cmis:changeToken":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Change Token Property",

"value":"1298396347156",

"queryName":"cmis:changeToken",

"localName":"cmis:changeToken",

"id":"cmis:changeToken"

},

"cmis:creationDate":{



"cardinality":"single",

"type":"datetime",

"displayName":"CMIS Creation Date Property",

"value":1298396347156,

"queryName":"cmis:creationDate",

"localName":"cmis:creationDate",

"id":"cmis:creationDate"

},

"StringProp":{



"cardinality":"single",

"type":"string",

"displayName":"Sample String Property",

"value":"My Doc StringProperty 7",

"queryName":"StringProp",

"localName":"StringProp",

"id":"StringProp"

},

"cmis:contentStreamMimeType":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Content Stream Mime Type Property",

"value":"text\/plain",

"queryName":"cmis:contentStreamMimeType",

"localName":"cmis:contentStreamMimeType",

"id":"cmis:contentStreamMimeType"

},

"cmis:name":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Name Property",

"value":"My_Document-1-1",

"queryName":"cmis:name",

"localName":"cmis:name",

"id":"cmis:name"

},

"cmis:objectTypeId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Object Type Id Property",

"value":"ComplexType",

"queryName":"cmis:objectTypeId",

"localName":"cmis:objectTypeId",

"id":"cmis:objectTypeId"

},

"cmis:contentStreamLength":{



"cardinality":"single",

"type":"integer",

"displayName":"CMIS Content Stream Length Property",

"value":32768,

"queryName":"cmis:contentStreamLength",

"localName":"cmis:contentStreamLength",

"id":"cmis:contentStreamLength"

}

}



}

},

{



"object":{

"properties":{

"cmis:lastModificationDate":{

"cardinality":"single",

"type":"datetime",

"displayName":"CMIS Last Modification Date Property",

"value":1298396347171,

"queryName":"cmis:lastModificationDate",

"localName":"cmis:lastModificationDate",

"id":"cmis:lastModificationDate"

},

"cmis:contentStreamFileName":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Content Stream File Name Property",

"value":"data.txt",

"queryName":"cmis:contentStreamFileName",

"localName":"cmis:contentStreamFileName",

"id":"cmis:contentStreamFileName"

},

"PickListProp":{



"cardinality":"single",

"type":"string",

"displayName":"Sample Pick List Property",

"value":"blue",

"queryName":"PickListProp",

"localName":"PickListProp",

"id":"PickListProp"

},

"cmis:baseTypeId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Base Type Id Property",

"value":"cmis:document",

"queryName":"cmis:baseTypeId",

"localName":"cmis:baseTypeId",

"id":"cmis:baseTypeId"

},

"cmis:isImmutable":{



"cardinality":"single",

"type":"boolean",

"displayName":"CMIS Is Immutable Property",

"value":false,

"queryName":"cmis:isImmutable",

"localName":"cmis:isImmutable",

"id":"cmis:isImmutable"

},

"cmis:objectId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Object Id Property",

"value":"116",

"queryName":"cmis:objectId",

"localName":"cmis:objectId",

"id":"cmis:objectId"

},

"cmis:createdBy":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Created By Property",

"value":"greg",

"queryName":"cmis:createdBy",

"localName":"cmis:createdBy",

"id":"cmis:createdBy"

},

"cmis:lastModifiedBy":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Last Modified By Property",

"value":"greg",

"queryName":"cmis:lastModifiedBy",

"localName":"cmis:lastModifiedBy",

"id":"cmis:lastModifiedBy"

},

"cmis:changeToken":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Change Token Property",

"value":"1298396347171",

"queryName":"cmis:changeToken",

"localName":"cmis:changeToken",

"id":"cmis:changeToken"

},

"cmis:creationDate":{



"cardinality":"single",

"type":"datetime",

"displayName":"CMIS Creation Date Property",

"value":1298396347171,

"queryName":"cmis:creationDate",

"localName":"cmis:creationDate",

"id":"cmis:creationDate"

},

"StringProp":{



"cardinality":"single",

"type":"string",

"displayName":"Sample String Property",

"value":"My Doc StringProperty 8",

"queryName":"StringProp",

"localName":"StringProp",

"id":"StringProp"

},

"cmis:contentStreamMimeType":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Content Stream Mime Type Property",

"value":"text\/plain",

"queryName":"cmis:contentStreamMimeType",

"localName":"cmis:contentStreamMimeType",

"id":"cmis:contentStreamMimeType"

},

"cmis:name":{



"cardinality":"single",

"type":"string",

"displayName":"CMIS Name Property",

"value":"My_Document-1-2",

"queryName":"cmis:name",

"localName":"cmis:name",

"id":"cmis:name"

},

"cmis:objectTypeId":{



"cardinality":"single",

"type":"id",

"displayName":"CMIS Object Type Id Property",

"value":"ComplexType",

"queryName":"cmis:objectTypeId",

"localName":"cmis:objectTypeId",

"id":"cmis:objectTypeId"

},

"cmis:contentStreamLength":{



"cardinality":"single",

"type":"integer",

"displayName":"CMIS Content Stream Length Property",

"value":32768,

"queryName":"cmis:contentStreamLength",

"localName":"cmis:contentStreamLength",

"id":"cmis:contentStreamLength"

}

}



}

}

],



"hasMoreItems":false

}

        1. Client Token Example


As described in Section 1.2.6, a client token can be passed into a CMIS read service request to simplify the handling of the returned JSON object. Here is an example of how that can be used in a getRepositorories request.

Suppose an HTTP GET of

http://www.example.com/cmis/getRepositories

answered a JSON response like this …


{"A1":

{

"repositoryDescription":"InMemory Test Repository",



"repositoryId":"A1",

"repositoryName":"InMemory Repository"

}
}
Note that the contents of the response are abbreviated for brevity.

Adding the clientToken parameter to the request like this

"http://www.example.com/cmis/getRepositories?clientToken=showRepositoryInfo"

would result in this response ...

showRepositoryInfo (

{"A1":


{

"repositoryDescription":"InMemory Test Repository",

"repositoryId":"A1",

"repositoryName":"InMemory Repository"

}
}

)
On the client side, the result is a call to the JavaScript function, showRepositoryInfo, with the JSON object passed as a parameter.



Putting it all together, the following illustration and sample code shows how a JSON object is fetched when an HTML page is loaded, and how the JSON object can be handled by a JavaScript function.




Repository Information




        1. Creating a Document


A CMIS document can be created using HTTP POST of an HTML form to an URL when creating a document in a folder or to a URL when instead creating an unfiled document (if allowed by the repository).

In this example, a document by posting to a folder path entered

Let’s look at an HTML page containing a simple form.





OpenCMIS Browser Binding createDocument Demo









OpenCMIS Browser Binding - Create Demo


Create Document








File:






























































Folder:
Name:
Object Type:
File name: (if left blank the orignal file name is used)
Content type: (if left blank the content type is determined by the browser)
File:






Directory: committees -> download.php
download.php -> Emergency Interoperability Consortium Membership Meeting
download.php -> Technical Communicators, Get ready: Here comes Augmented Reality! Rhonda Truitt
download.php -> Oasis set tc
download.php -> Iepd analyze Requirements Use Cases for edxl situation reporting messages Draft Version 4
download.php -> Technical Committee: oasis transformational Government Framework tc chair
download.php -> Ibops protocol Version 0 Working Draft 2 9 March 2015 Technical Committee
download.php -> Reliability of Messages Sent as Responses over an Underlying Request-response Protocol
download.php -> Service Component Architecture sca-j common Annotations and apis Specification Version 1 Committee Draft 03 – Rev1 + Issue 127
download.php -> Scenario Two – Hurricane Warning
download.php -> Technical Committee: oasis augmented Reality in Information Products (arip) tc chairs

Download 1.14 Mb.

Share with your friends:
1   2   3   4




The database is protected by copyright ©ininet.org 2024
send message

    Main page