Hello,
I am extremely new to omero. We have an omero server running 5.4.7, and I'm, using the java client to try to load thumbnails. The image in question is a shared image (not owned by my user), and I am trying to load using the numeric ID. I am following the pattern from this github repo (https://github.com/ome/minimal-omero-cl ... ction.java). The code below doesnt seem to be able to find the ImageData by ID:
//I did not copy the full code here, but it's similar to the github example
SecurityContext ctx = connect(gateway, url);
BrowseFacility browse = gateway.getFacility(BrowseFacility.class);
//neither of these work. findObject() is non-null (but seems like some kind of empty object placeholder), and getImage() returns null
ImageData image = browse.findObject(ctx, ImageData.class, imageId, true);
//ImageData image = browse.getImage(ctx, imageId);
//this will error
PixelsData pixels = image.getDefaultPixels();
ThumbnailStorePrx store = gateway.getThumbnailService(ctx);
store.setPixelsId(pixels.getId());
Can you suggest any debugging steps I should take? Thanks in advance.