The classpath in Weblogic 10.0 has changed comparing to 9.2 version. Here is what I have in my build.xml now. It works for a simple web service and Weblogic tools such as jwsc, clientgen, wldeploy.
The wl.home is set to d:/bea10 in my case. It is a pointer to a folder where Weblogic is installed.
<path id="wl.class.path">
<pathelement location="${wl.home}/jrockit_150_08/lib/tools.jar" />
<pathelement location="${wl.home}/patch_wls1000/profiles/default/sys_manifest_classpath/weblogic_patch.jar" />
<fileset dir="${wl.home}/wlserver_10.0/server/lib">
<include name="weblogic_sp.jar" />
<include name="weblogic.jar" />
<include name="webservices.jar" />
<include name="xqrl.jar" />
</fileset>
<fileset dir="${wl.home}/modules/features">
<include name="features/weblogic.server.modules_10.2.0.0.jar" />
<include name="features/com.bea.cie.common-plugin.launch_2.2.0.0.jar" />
<include name="org.apache.ant_1.6.5/lib/ant-all.jar" />
<include name="net.sf.antcontrib_1.0b2.0/lib/ant-contrib.jar" />
</fileset>
</path>
The wl.home is set to d:/bea10 in my case. It is a pointer to a folder where Weblogic is installed.
Comments