Hi all,
I am new to livelink and working with EWS to store and read documents from livelink. One thing i noticed is the documentation which is totally different from the environment i got. I want to store a document and when i take a look at the examples, i have to change a few lines otherwise it isn't working. Can anybody tell me if the documentation is up-to-date? and give me an example how to store a document?
When i use the following line of code to store the document:
Node
doc = dm.CreateDocument(2000, "New doc", "a Comment", false, null, attachment);
a receive an error:
{"Error adding version to 'New doc'."}
Below you can see the difference between what i see in the documentation and the proxy i generated from the service:
Documentation
objectID = contentService.UploadContent( otAuth, contextID, fileAtts, inStream );
Service
contentService.UploadContent(byte[]);As you can see the parameters i can use are different. Any help is much appreciated.Kind regards,Dennis