Hello,
I'm trying to install a dar file using headless composer. I don't have the installer so I'm doing it programatically. This is on Windows XP SP2
Here is my build.xml file:
<?xml version="1.0"?>
<project name="install" default="install">
<target name="install">
<emc.install
dar="C:/Composer/mydar.dar"
docbase="docbasename"
username="username"
password="password"
domain=""/>
</target>
</project>
Here is my install.bat file:
java -cp C:/Composer/ComposerHeadless/startup.jar org.eclipse.core.launcher.Main -data C:/Composer/installworkspace -application org.eclipse.ant.core.antRunner -buildfile C:/Composer/build.xml
Every time I run "install.bat" I get this error:
BUILD FAILED
C:\Composer\build.xml:9: Problem: failed to create task or type emc.install
Cause: The name is undefined
I've looked at the log and there are a lot of unresolved class calls. Somehow it looks like whatever file contains "emc.install" is not being resolved.
Anyone have any suggestions?
Thanks
Rick Slater