I'm duplicating nodes in our JCR using workspace.copy(workspace, srcPath,
destPath) and am experiencing strange behaviour.
This succeeds as expected:
srcPath = /templates/pcf:PCF/pcf:Service/pcf:Scene
destPath = /templates/pcf:PCF/pcf:Service/pcf:Scene
This succeeds (no exception is thrown), but puts the copy in the wrong place:
srcPath = /templates/pcf:PCF[2]/pcf:Service/pcf:Scene
destPath = /templates/pcf:PCF[2]/pcf:Service/pcf:Scene
The copy is actually placed at /templates and renamed to pcf:PCF[3]
Any ideas what is going on?
Paul.