I have a task to upload large video files for educational content distribution.
I am using IBM FileNet Content Manager 5.2.
I can do the task using WebDAV, it works excellent, but WebDAV is going to be deprecated in future realises of IBM FileNet, so I am looking for new solutions.
I have set up IBM CMIS for FileNet and I have set up CmisSync and it works OK.
The problem with large file, I use 600 MB file for testing. After start of synchronization my FileNet became unresponsive.
Also I noticed that since the start of syncing of that file, FileNet started to use huge amount of memory (looks like entire file went to RAM). I guess this is the cause of my problem.
DotCMIS is always build with Framework 3.5, Framework 4 is required for large upload
2 In atompub.cs, line 118 :
if (offset < Int32.MaxValue && offset + length - 1 < Int32.MaxValue)
{
conn.AddRange((int)offset, (int)offset + (int)length - 1);
}
Even if offset and length as declare as long?, this method cast it in int ...
I have a task to upload large video files for educational content distribution. I am using IBM FileNet Content Manager 5.2. I can do the task using WebDAV, it works excellent, but WebDAV is going to be deprecated in future realises of IBM FileNet, so I am looking for new solutions. I have set up IBM CMIS for FileNet and I have set up CmisSync and it works OK. The problem with large file, I use 600 MB file for testing. After start of synchronization my FileNet became unresponsive. Also I noticed that since the start of syncing of that file, FileNet started to use huge amount of memory (looks like entire file went to RAM). I guess this is the cause of my problem.