Hi All, Problem 1:
org.apache.jackrabbit.jcr2spi.WorkspaceManager.execute(ChangeLog changelog) has try{} finally{} block without catch. It happened to me that both try and finally block thrown an exception. Of course exception from try{} was lost, and I got misleaded :) Problem 2: I'm trying to create a big (20mb) nt:file node at remote jackrabbit repository through webdav. I get "Exception in thread "main" java.lang.OutOfMemoryError: Java heap space" thrown somewhere from org.apache.jackrabbit.util.Base64.encode(InputStream in, Writer writer). (This exception is then forgot in execute() and I get new exception about not supplying required jcr:data property :), but that's related to problem 1) So, should I just set bigger heap for jvm or current spi2dav prototype does not support large data? I need to send files as large as 200MB. Best, Jozef Wagner