Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

WSAD 5.1.1 - ANT - class not found: com/ibm/etools/ejbdeploy/EJBDeploy

843830Jun 19 2006 — edited Oct 17 2007
	wsruntime=C:/Program Files/IBM/WebSphere Studio/Application Developer/v5.1.1/runtimes/base_v51
	wslib=C:/Program Files/IBM/WebSphere Studio/Application Developer/v5.1.1/runtimes/base_v51/lib
	wstools=C:/Program Files/IBM/WebSphere Studio/Application Developer/v5.1.1/wstools/eclipse/plugins/com.ibm.etools.ejbdeploy_5.1.1/runtime


	<path id="ejbdeploy.classpath">
		<pathelement location="${wslib}/deployutils.jar"/>
		<pathelement location="${wslib}/wsanttasks.jar"/>
		<pathelement location="${wsruntime}/java/jre/lib/ext/ibmorb.jar"/>
		<pathelement location="$wstools}/batch.jar"/>
		<pathelement location="$wstools}/codegen.jar"/>
		<pathelement location="$wstools}/ejbdeploy.jar"/>
		<pathelement location="$wstools}/ejbincrement.jar"/>
		<pathelement location="$wstools}/ejbvalidator.jar"/>
		<pathelement location="$wstools}/exec.jar"/>
		<pathelement location="$wstools}/rmic.jar"/>
	</path>


	<target name="rmicMyEjb">
		<taskdef name="wsejbdeploy" classname="com.ibm.websphere.ant.tasks.WsEjbDeploy" classpath="${wslib}/wsanttasks.jar"/>
		<wsejbdeploy inputJar="${project.build.jar}/MyEjb.jar"
			wasHome="${wsruntime}"
			outputJar="${project.build.jar}/MyDeployable_Ejb.jar"
			classpathref="ejbdeploy.classpath"
			trace="true"
			codegen="true"
			rmicOptions="-verbose"/>
	</target>
	
	I got the error:
	
	[wsejbdeploy] The java class is not found:  com/ibm/etools/ejbdeploy/EJBDeploy
	Does any one know where is this class com/ibm/etools/ejbdeploy/EJBDeploy OR is there any thing I missed.
Thanks.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 14 2007
Added on Jun 19 2006
3 comments
1,074 views