Reputation: 5609
We are working on integration Dynamics CRM with Filenet. This requires support of the following two scenarios:
Development platform is .NET.
Any ideas about the integration mechanism for same? Is there any webservice exposed by Filenet which we can consume for above 1 & 2 requirements?
Upvotes: 1
Views: 12347
Reputation: 332
The url's in filenet are always in a fixed format, so that's not difficult.
http://P8_client_server_name/application_name:port/getContent?objectStoreName={84A4A727-37E2-4994-B060-8531FAF75612}&objectType=document&id={559946a8-2007-4096-AC67-773A8540AE6}
So call the getContent page with the parameters opbjectstore name or ID, objecttype and the id of the document.
Here is an article about the format of the url's it should help you for the downloading part.
About the uploading,
Here are some API samples about sorting a document in the content engine. With the Id created were you can construct the url to return to the client.
Upvotes: 4
Reputation: 3783
In addition to the previous response, for downloading you can also construct a URL for IBM Content Navigator like this
where
desktop
Specifies which desktop to log in to. Specify the ID that is displayed for the desktop in the ID column on the Desktops tab in the administration tool. Format: desktop=desktop_IDrepositoryId
Specifies the server to log in to. Specify the ID that is displayed for the server in the ID column on the Repositories tab in the administration tool. Format: repositoryId=repository_IDdocid
The system-generated identification number for the document. Uses the template_name value as the prefix to this folder ID. Format: docid=document_IDtemplate_name
Document, Folder, or the name of the custom document class or item type. Format: template_name=template_nameversion
current, released, or a specific version number. Format: version=version_numbervsld
The IBM FileNet® P8 version series object, which is the Globally Unique Identifier (GUID), that is associated with the document. Format: vsld=GUID_number
Using Navigator menu:
You can get URLs for documents or folders when you select the item and click Actions > View link.
Upvotes: 1