无法加载 OMG DDS 实施。请设置 org.omg.dds.serviceClassName 属性.G
我是 OMG DDS 的新手,我尝试运行示例 GreetingPublishingApp。我不知道我该怎么办。
DomainParticipantFactory factory =
DomainParticipantFactory.getInstance(Bootstrap.createInstance());
DomainParticipant dp = factory.createParticipant();
I'm a fresh man to OMG DDS and I tried to run the example GreetingPublishingApp. I don't know what should I do.
DomainParticipantFactory factory =
DomainParticipantFactory.getInstance(Bootstrap.createInstance());
DomainParticipant dp = factory.createParticipant();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您似乎正在尝试使用新的 Java5 API,该 API 仍在开发中。仅 API 并没有什么帮助,因为它只是底层实现的一个外观。据我所知,当前没有任何实现支持新的 API,因为它尚未完成。
关于错误消息:目的是将具体实现的类放入 org.omg.dds.serviceClassName 系统属性中。
It looks like you are trying to use the new Java5 API, which is still in-progress. The API alone will not help as it is just a facade to an underlying implementation. As far as I know no current implementations support the new API, as it is not yet finished.
Regarding the error message: the intent is to put the class of the concrete implementation into the org.omg.dds.serviceClassName system property.