03-11-2010 11:12 AM
03-12-2010 05:37 AM
03-12-2010 05:50 AM
03-12-2010 06:08 AM
03-12-2010 06:29 AM
In ogni caso tutti e 3 i punti sono implementabili utilizzando la CMIS WS API senza usare rules, se vuoi
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
qualcosa che esegua una startsession (che penso sia necessaria), i punti 1 2 e 3 , in fine la chiusura della sessione
</soapenv:Body>
</soapenv:Envelope>
03-12-2010 10:42 AM
03-17-2010 12:42 PM
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://docs.oasis-open.org/ns/cmis/messaging/200908/" xmlns:ns1="http://docs.oasis-open.org/ns/cmis/core/200908/">
<soapenv:Header/>
<soapenv:Body>
<ns:updateProperties>
<ns:repositoryId>a4232886-7977-4350-9f6e-084b25249906</ns:repositoryId>
<ns:objectId>workspace://SpacesStore/a5c54fb3-2e9b-4eb0-957b-7063b7ea801c</ns:objectId>
<ns:properties>
<!–You have a CHOICE of the next 8 items at this level–>
<ns1:propertyId propertyDefinitionId="custom:PROPRIETA" localName="?" displayName="?" queryName="?">
<!–Zero or more repetitions:–>
<ns1:value>VALORE_CHE_VOGLIO_PASSARE</ns1:value>
</ns1:propertyId>
.
.
.
</ns:properties>
</ns:updateProperties>
</soapenv:Body>
</soapenv:Envelope>
In questo modo nei dettagli dell'oggetto in questione appare la proprietà che ho indicato con il valore che gli ho passato;
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://docs.oasis-open.org/ns/cmis/messaging/200908/" xmlns:ns1="http://docs.oasis-open.org/ns/cmis/core/200908/">
<soapenv:Header/>
<soapenv:Body>
<ns:createDocumentFromSource>
<ns:repositoryId>a4232886-7977-4350-9f6e-084b25249906</ns:repositoryId>
<ns:sourceId>workspace://SpacesStore/9973fbfa-8146-4b83-b460-80824ed18292</ns:sourceId>
.
.
.
<ns:folderId>workspace://SpacesStore/9a0b34b2-4f11-4a2b-8b21-51240ff3527c</ns:folderId>
.
.
.
</ns:createDocumentFromSource>
</soapenv:Body>
</soapenv:Envelope>
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.