* Create a binary resource, set / get meta data
*/
Resource newResource = collection.createResource(null, "BinaryResource");
newResource.setContent(new byte[] { 0x00, 0x10, 0x01, 0x11 });
collection.storeResource(newResource);
String id = newResource.getId();
MetaService service = (MetaService)collection.getService("MetaService", "1.0");
MetaData meta = service.getMetaData(id);
assertNotNull("Meta should be in there", meta);