where are Oracle's DMS class files?

后端 未结 3 1755
醉酒成梦
醉酒成梦 2021-01-29 03:29

I\'m running a JBoss server (inside Eclipse), with some Hibernate mixed in. I installed Oracle\'s ojdbc drivers from here:

Oracle Database 11g Release 2 JDBC Drivers

3条回答
  •  闹比i
    闹比i (楼主)
    2021-01-29 04:32

    I got the same error for different reason and yes it was due to missing dms.jar file. I just had to find where dms.jar file was on our Oracle Application server (Release 12.2.3) and assigned it to the CLASSPATH. And it worked. Thanks for the pointing to the missing .jar file.

    Out .jar file was in $ORACLE_HOME/lib/ folder. Changed the path value as :

    CLASSPATH=$CLASSPATH:$ORACLE_HOME/lib/dms.jar and it started working.

    Fyi..if it helps anyone i was trying to load BI/XML publisher DATA TEMPLATE using XDOLoader utility when i got this error.

    -ppemavath

提交回复
热议问题