NoValueFactoryException when using Zeroc Ice - Sliced vs. co



我正在尝试在OSGi上下文中使用Ice客户端。在非 OSGi 环境中运行服务器和最小示例客户机工作正常。在OSGi环境中使用客户端时,我得到以下异常:

com.zeroc.Ice.NoValueFactoryException
    reason = "no value factory found and compact format prevents slicing (the sender should use the sliced format instead)"
    type = "::MyModule::Knowledge::CMKnowledge"

但是,我不能100%确定OSGi运行时是否在这里有所作为。切片文件如下所示:

module MyModule{
    module Knowledge{
        class KnowledgePart{
            string value;
        }
        class FMKnowledge extends KnowledgePart{}
        class CMKnowledge extends KnowledgePart{}
        interface IKnowledge{
            void sendKnowledge(KnowledgePart knowledge);
            FMKnowledge getFMKnowledge();
            CMKnowledge getCMKnowledge();
        }
    }
}

在这种情况下,此异常意味着什么,我该如何解决它?我已经尝试设置 ["格式:切片"] 而不是隐式使用的紧凑格式。

该错误意味着 Ice 运行时尝试加载MyModule.Knowledge.CMKnowledge类,但未能加载。必须确保应用程序使用的类装入器可以装入MyModule.Knowledge.CMKnowledge类。

另请参阅 https://doc.zeroc.com/ice/3.7/language-mappings/java-mapping/custom-class-loaders

相关内容

  • 没有找到相关文章

最新更新