I am using 1.6-snapshot of OCM to map Files and Resources like in the unit
tests. I am dynamically creating a text file called /folder/test.txt When I
save the file and resource, I don't get an error. But when I look at the
repository, my file has been renamed to /folder/test When I open the test
"test" file, it is a correct text file with my text in it. I can even rename
the file as test.txt through webdav.
Is there a reason why my file extension is being stripped?
File file = new File();
file.setPath(path);
ByteArrayInputStream ba = new ByteArrayInputStream(text.getBytes());
Resource resource = new Resource();
resource.setData(ba);
resource.setLastModified(Calendar.getInstance());
resource.setMimeType("plain/text");
file.setResource(resource);
--
View this message in context:
http://www.nabble.com/OCM-stripping-file-extension-of-file-tp20584249p20584249.html
Sent from the Jackrabbit - Users mailing list archive at Nabble.com.