Hi,
I'm uploading a document using the Enterprise Web Services, however the create date I specify does not get set. Instead the current date is the create date. Here is a some of my code:
// Apply the file information and contents of the document to the attacment object.
DocumentManagement. Attachment doc = new DocumentManagement. Attachment ();
doc.Contents = contents;
doc.CreatedDate = fileInfo.CreationTime;
doc.FileName = fileInfo.Name;
doc.FileSize = contents.Length;
doc.ModifiedDate = fileInfo.LastWriteTime;
......
DocumentManagement. Node obj = dm.CreateDocument(ref dmOTAuth, parentID, "test2.doc" , "Add Comments Here" , false , metadata, doc);
Anyway, is it possible to set a different date for the create date?
Thanks,