about jacob and jdk's corba implmentation
- From: "david wolf" <yihucd@xxxxxxxxx>
- Date: 28 Nov 2006 14:57:34 -0800
Hi All,
I am using java to connect to a CORBA Service. I used to use jdk's
corba implementation to connect to the service. Now I swithed to
Jacorb. Since Jacor and JDK both have corba implementation, when I use
ant to compile my code, how to make sure my code actually use JACORB's
implementation instead of JDK's (I checked, the classes related to
corba in both implementation has the same fully qualified class names).
I quoted a piece of code from my ant build.xml. I put jacorb's lib in
the front, while java's lib (that is, ${myjava.home}/lib) later. Will
this do what I want?
<path id="compile.classpath">
<fileset dir ="${jacorb.home}/lib">
<include name="*.jar"/>
</fileset>
<fileset dir ="${tomcat.home}/shared/lib">
<include name="*.jar"/>
</fileset>
<fileset dir ="${myjava.home}/lib">
<include name="*.jar"/>
</fileset>
</path>
Thanks,
David
.
- Follow-Ups:
- Re: about jacob and jdk's corba implmentation
- From: Andreas Wollschlaeger
- Re: about jacob and jdk's corba implmentation
- Prev by Date: Removing a jsessionid for a soon to go invalid session
- Next by Date: Re: Eclipse
- Previous by thread: Removing a jsessionid for a soon to go invalid session
- Next by thread: Re: about jacob and jdk's corba implmentation
- Index(es):