ome / omero-matlab

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

Upgrade check #25

Closed jburel closed 5 years ago

jburel commented 5 years ago

currently omero.matlab does not registered The approach taken in insight is to access the value of omero.upgrades.url via the config service i.e. session.getConfigService().getConfigValue("omero.upgrades.url"); This approach makes sense from a client perspective

Such approach will not always work in the toolbox since we have methods allowing to create a client only and session afterwards e.g.

client = loadOmero(host, port);
session = client.createSession(user, password);

i.e. the toolbox will not register unless actively added to the code

cc @sbesson @mtbc

joshmoore commented 5 years ago

What was the outcome here?

jburel commented 5 years ago

discussed with @sbesson, we need to work on it from all aspects (including BF) and rework the registration logic post decoupling Matlab never registered