I’m using ANT within Blue to run the new WAS6 wsejbdeploy task. It generates stubs in general, but not the “Tie” classes.
The Tie classes are correctly created by other build techniques: installing EAR via WAS6 admin, and Blue deployment. Perhaps I need to use a differeny wsejbdeploy? What is Blue using to deploy?
Here is my taskdef:
<taskdef name=”wsejbdeploy” classname=”com.ibm.websphere.ant.tasks.WsEjbDeploy” classpath=”${websphere.home}/plugins/com.ibm.ws.runtime_6.1.0.jar” />
Here is where I run the task:
<wsejbdeploy inputJar=”${build.directory}/${ejb}Temp.jar” jvmMaxMemory=”512M” wasHome=”${websphere.home}” workingDirectory=”${build.directory}” outputJar=”${build.directory}/${ejb}.jar” classpathref=”default.class.path” codegen=”true” quiet=”false” failonerror=”true” />
Thanks,
Phil.