6

我正在尝试使用Java Webstart通过TibrvJ库部署使用 Tibrv 的本机实现的应用程序。

我已将所有 Windows dll从内部打包c:\tibco\tibrv\bin到一个 Jar 文件中,并将它们添加到JNLP文件中的nativelib元素中。

我希望 webstart 会从文件中获取dll文件,tibco-7.5.1-nativelibs.jar并允许通过System.loadLibraryTibrv.open(). 但是,它似乎不想正常工作。

我的JNLP文件如下所示:

<?xml version="1.0" encoding="utf-8"?><!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc//DTD JNLP Descriptor 6.0//EN" "http://java.sun.com/dtd/JNLP-6.0.dtd">
<jnlp spec="6.0+"
 codebase="http://somewhere:8080/my-gui/application"
 href="launch.jnlp">
 <information>
  <title>My GUI</title>
  <vendor>Technology</vendor>
  <description>Dashboard</description>
  <description kind="short">Dashboard</description>
  <icon href="icon/Stocks-128x128.png" />
  <offline-allowed />
  <shortcut online="true">
   <desktop />
   <menu submenu="Dashboard" />
  </shortcut>
 </information>
 <security>
  <all-permissions />
 </security>
 <update check="always" policy="prompt-update" />
 <resources>
  <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"
   java-vm-args="-Xmx120M -ea />
  <property name="log4j.configuration" value="live/log4j.xml" />
  <property name="swing.aatext" value="true" />

  <jar href="tibrvj-7.5.1.jar" />
  <jar href="dashboard-gui.jar" main="true" />
 </resources>
 <resources>
  <nativelib href="nativelib/tibco-7.5.1-nativelibs.jar" />
 </resources>
 <application-desc main-class="com.somewhere.Main">
  <argument>classpath:/live/client.xml</argument>
  <argument>/live/live.properties</argument>
 </application-desc>
</jnlp> 

应用程序启动,但一旦调用 open tib,它就会崩溃,并出现以下错误:

  • [根异常为 TibrvException[error=22,message=Version mismatch: libtibrv 7.4 版本与 tibrvj 共享库 7.5 版本不匹配]]

  • TibrvException[error=901,message=找不到库:tibrvj]]

用户已经在他们的 PC 上安装了从 Tib 7.2 到 7.5的各种Tib。Webstart 应用程序只能在安装了与包内的 Jar 文件匹配的 7.5 的机器上正常工作。所以它似乎对 nativelib jar 没有任何作用。

我想避免为用户安装的不同版本的 Tib 部署 3 个版本的 web start 应用程序。

有没有其他人设法让TibrvJWebstart的这种组合工作?

4

2 回答 2

8

我已经设法让它工作了。System.loadLibrary问题是使用Webstart时的调用不会加载到指定库的依赖项中,即使它们已被打包到 nativelib jar 中。

有关详细信息,请参阅http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6191612

为了解决这个问题,有必要以正确的顺序显式加载所有依赖项。还需要将每个dll库放入自己的jar文件中。

因此,要使用本机 TibrvJ,您需要在调用Tibrv.Open.

    System.loadLibrary("msvcr71");
    System.loadLibrary("tibrv");
    System.loadLibrary("tibrvcm");
    System.loadLibrary("tibrvft");
    System.loadLibrary("tibrvcmq");
    System.loadLibrary("tibrvj");

快乐的时光!

于 2009-09-10T10:53:26.157 回答
0

我认为您在使用 Webstart 时遇到了问题。

几年前,我有一个使用 Java 3D 的 Webstart 应用程序在 Mac 上无法运行。最终,我发现所有 Mac 都安装了旧版本的 Java 3D,并且已经安装的版本被用于我在 JNLP 文件中包含的较新版本。您的问题听起来几乎完全一样,所以很可能是同一个问题。

于 2009-09-09T16:53:07.817 回答