RMI from Tomcat to Weblogic

ぐ巨炮叔叔 提交于 2019-12-06 13:42:22

It worked now. I did the following

  1. Modified wlfullclient.jar: removed javax-package. Pretty bad but I cannot seem to find an alternative. Neither the wlthinclient or wlclient works.

  2. Added the following packages

    <dependency>
        <groupId>javax.ejb</groupId>
        <artifactId>ejb-api</artifactId>
        <version>3.0</version>
    </dependency>
    
    <dependency>
        <groupId>javax.security.jacc</groupId>
        <artifactId>javax.security.jacc-api</artifactId>
        <version>1.4</version>
    </dependency>
    
    <dependency>
        <groupId>javax.transaction</groupId>
        <artifactId>transaction-api</artifactId>
        <version>1.1</version>
    </dependency>
    

step1: java -jar WL_HOME/server/lib/wljarbuilder.jar http://docs.oracle.com/cd/E12840_01/wls/docs103/client/jarbuilder.html

step2: using 7-zip open wlfullclient.jar and then delete javax.el and javax.servlet folders http://blog.csdn.net/weijianiu/article/details/7846482

step3: enjoy

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!