ome / omero-blitz

Gradle project containing Ice remoting code for OMERO
https://www.openmicroscopy.org/omero
GNU General Public License v2.0
0 stars 15 forks source link

ImportConfig.group not propagated to server actions #38

Open joshmoore opened 5 years ago

joshmoore commented 5 years ago

see: https://www.openmicroscopy.org/community/viewtopic.php?f=6&t=8724#p20789

"Failed to load target" is raised from the code:

            ImportConfig config = new ImportConfig();
            long public_group_id=53;
            config.group.set(public_group_id);
            CommandLineImporter cli=null;
            try {
                cli = new CommandLineImporter(config,paths,setting);
                cli.start();
            }
            finally {
                if(cli!=null)
                    cli.cleanup();
            }

Likely the OMEROMetadataStoreClient is not passing omero.group for a needed service invocation.

joshmoore commented 5 years ago

Potential hand-off problems:

mtbc commented 5 years ago

Could be related to Trac 12781.