代码之家  ›  专栏  ›  技术社区  ›  Detlef Birkholz

将XPage与OpenOffice连接

  •  0
  • Detlef Birkholz  · 技术社区  · 11 年前

    我在XPage上有一个按钮,希望连接到远程OpenOffice实例。OpenOffice已启动并正在侦听套接字连接。

    按钮的onclick事件运行以下SSJS:

        oo = new com.test.OpenOffice();
        oo.init("host=127.0.0.1,port=8107");
        oo.openFile("C:\\TEMP\\Test.odt");
    

    代码引发异常 jva.lang.IlleagalStateException: NotesContext not initialized for the thread

    在方法中引发异常 init 班上的 OpenOffice .

    OpenOffice类的相关部分是以下代码:

    public class DHOpenOffice implements Serializable {
        private static final long serialVersionUID = -7443191805456329135L;
        private XComponentContext xRemoteContext;
        private XMultiComponentFactory xMCF;
        private XTextDocument oTextDocument;
    
        public DHOpenOffice() {
            xRemoteContext = null;
            xMCF = null;
            oTextDocument = null;
        }   
    
        public void init(String hostAdr) throws java.lang.Exception {
            xRemoteContext = null;
    
            XComponentContext xLocalContext = Bootstrap.createInitialComponentContext(null);
            XUnoUrlResolver xUrlResolver = UnoUrlResolver.create(xLocalContext);
    
            String sConnect = "uno:socket," + hostAdr + ",tcpNoDelay=0;urp;StarOffice.ServiceManager";
    
            Object context = xUrlResolver.resolve(sConnect);
            xRemoteContext = UnoRuntime.queryInterface(XComponentContext.class, context);  
            xMCF = xRemoteContext.getServiceManager();  
        }
    
    

    代码行 Object context = xUrlResolver.resolve(sConnect); 是引发异常的那个。

    为什么会这样?出现这种异常的原因是什么?我如何解决这种情况?

    注意:类代码在独立应用程序中运行平稳。只有当代码由SSJS代码启动时,才会发生错误。

    2 回复  |  直到 11 年前
        1
  •  0
  •   stwissel    11 年前

    这看起来像是线程问题。有很多事情你可以去尝试:

    • 将整个交互包装成一个自定义类,并从托管bean中使用它,而不是从SSJS调用它
    • 确保不要将任何Notes对象交给自定义类,只有您自己的对象
    • 检查 Open Document Toolkit 将足以执行您感兴趣的操作,因此不需要运行OO

    让我们了解情况

    使现代化
    尝试脱离标准XPages周期。一种方法是部署自定义插件servlet:

     import javax.servlet.ServletException;
     import javax.servlet.http.HttpServlet;
     import javax.servlet.http.HttpServletRequest;
     import javax.servlet.http.HttpServletResponse;
     import javax.servlet.http.HttpSession;
    
    public class OpenOfficeServlet extends HttpServlet {
       // Your code goes here
    }
    

    您需要正确使用plugin.xml:

    <?xml version="1.0" encoding="UTF-8"?>
    <?eclipse version="3.4"?>
    <plugin>
       <extension point="org.eclipse.equinox.http.registry.servlets">
             <servlet alias="/ooproxy" class="com.yourcompany.OpenOfficeServlet" />
       </extension>
    </plugin>
    

    然后,您可以将JSON结构或可序列化的Java对象与数据一起发布到servlet,并在那里进行处理(如果需要,异步)。您可以使用updatesite.nsf部署这样的插件

        2
  •  0
  •   Detlef Birkholz    11 年前

    多亏了@stwissel的回答,我才得以解决这个问题(他给我指明了正确的方向)。

    我可以用一个简单的OSGI插件来解决这个问题。servlet方法也解决了这个问题,但对我来说,OSGI插件更容易使用。

    以下是创建插件的步骤

    • 启动新的插件项目
    • 将打开的office jar文件复制到项目中,并将其包含在构建路径中
    • 将使用UNO API的自定义类复制到插件中
    • 为插件创建功能项目
    • 创建更新站点
    • 通过更新站点部署插件

    以下网站也非常有用: