https://jax-rpc.dev.java.net/issues/show_bug.cgi?id=37 Issue #|37
Summary|war file is not created when wsdeploy ant task is used
| with tmpDir and version attributes [In Windows Vista]
Component|jax-rpc
Version|current
Platform|PC
OS/Version|other
URL|
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|DEFECT
Priority|P3
Subcomponent|spec
Assigned to|issues@jax-rpc
Reported by|kernel164
------- Additional comments from
kernel164@... Sat May 17 19:47:22 +0000 2008 -------
Info: OS - Windows Vista; jwsdp-2.0; jdk1.5.0_11
Error:
war file is not created when wsdeploy ant task is used with tmpDir and version
attributes. Note: No exception is thrown as well.
Error Ant Task:
<target name="deploy" depends="build">
<wsdeploy keep="true" inWarFile="${raw.war.file}"
outWarFile="${war.file}" verbose="${verbose}" tmpDir="${temp_dir}" version="true">
<classpath>
<path refid="compile.classpath"/>
</classpath>
</wsdeploy>
</target>
Temporary Fix:
By removing tmpDir and version attribute.
<target name="deploy" depends="build">
<wsdeploy keep="true" inWarFile="${raw.war.file}"
outWarFile="${war.file}" verbose="${verbose}">
<classpath>
<path refid="compile.classpath"/>
</classpath>
</wsdeploy>
</target>
or use tempDir attribute without version attribute.
<target name="deploy" depends="build">
<wsdeploy keep="true" inWarFile="${raw.war.file}"
outWarFile="${war.file}" verbose="${verbose}" tmpDir="${temp_dir}">
<classpath>
<path refid="compile.classpath"/>
</classpath>
</wsdeploy>
</target>
---------------------------------------------------------------------
To unsubscribe, e-mail:
issues-unsubscribe@...
For additional commands, e-mail:
issues-help@...