Hi Folks,
We have the Perkin Elmer's Columbus/OMERO to manage our screening data. I'd like to be able to pull images from Columbus/Omero from within matlab for analysis.
I'm walking through the matlab/Omero faq's and how-to's online but not making much progress. When I run the code below I get the error beneath. I thought I should check with the experts that that what I'm trying is actually feasible with Columbus/Omero before chasing this down to network permissions or poor code.
(I can use log in to Columbus via this account using the Columbus/Omero webclient).
Cheers,
Tony
MATLAB code:
loadOmero;
username='guest';
password='tmppass';
server='fhscolumbus.csu.mcmaster.ca';
client = omero.client(server, 4064);
session = client.createSession(username, password);
etc. from http://trac.openmicroscopy.org.uk/ome/wiki/OmeroMatlab
Error:
OmeroMatlab Toolbox
4.3.2-8fc94b85-b2882
--------------------------
1/30/12 14:00:44:663 warning: main: null - createSession retry: 1
1/30/12 14:00:49:670 warning: main: null - createSession retry: 2
??? Java exception occurred:
omero.ClientError: Obtained null object proxy
at omero.client.createSession(client.java:643)
Error in ==> GetImage at 8
session = client.createSession(username, password);