Re: Creating a nested collection

2003-10-24 Thread Kurt
E-mail)" Sent: Friday, October 24, 2003 5:16 PM Subject: Creating a nested collection How? Here is what I am doing CollectionManagementService service = (CollectionManagementService) colRoot.getService("CollectionManager", "1.0"); String sCollectionName =

Creating a nested collection

2003-10-24 Thread Kurt Kavanaugh
How? Here is what I am doing CollectionManagementService service = (CollectionManagementService) colRoot.getService("CollectionManager", "1.0"); String sCollectionName = "foo"; String sNestedName = sCollectionName + "/" + "bar"; service.createCollection(sCollectionName); // works fine se