ome / omero-matlab

Toolbox for accessing OMERO from MATLAB
GNU General Public License v2.0
0 stars 6 forks source link

Bump to gateway 5.5.2 #26

Closed joshmoore closed 5 years ago

joshmoore commented 5 years ago

Partner PR to https://github.com/ome/omero-insight/pull/54

dominikl commented 5 years ago

Looks good 👍 It's using omero-gateway-5.5.2.jar and test script working fine:

client = loadOmero('host');
session = client.createSession('user', 'pass');
client.enableKeepAlive(60);
eventContext = session.getAdminService().getEventContext();
groupId = eventContext.groupId;
disp(groupId);
454

datasetId = 2869;
loadedDatasets = getDatasets(session, datasetId, true);
dataset = loadedDatasets(1);
datasetName = dataset.getName().getValue();
disp(datasetName)
mtbc-Jun14