【发布时间】:2012-04-20 12:53:57
【问题描述】:
我使用Java SE平台的Java IDL组件开发了CORBA服务器/客户端。
我想在 Windows 平台上将此应用程序作为服务启动,所以我使用 Java Service wrapper 并将应用程序作为服务安装。
但在启动服务器之前,我需要启动 orbd.exe - Oracle 的 CORBA 命名服务。
我尝试使用 Windows 中的sc create 命令将此 exe 安装为服务。
但是当我使用 sc start 启动这个 orb 服务时
它挂起并抛出以下错误:
[SC] StartService FAILED 1053:
The service did not respond to the start or control request in a timely fashion.
这个 windows 服务有什么问题?
如何将 CORBA 命名服务作为 windows 服务启动?
【问题讨论】:
标签: java service windows-services naming corba