You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@beehive.apache.org by Jeremiah Johnson <je...@bea.com> on 2005/08/17 22:30:12 UTC

RE: svn commit: r232328 - in /beehive/trunk/samples: controls-webservices-blank/ wsm-addressbook-enhanced/WEB-INF/src/ wsm-addressbook-fromWSDL/WEB-INF/src/ wsm-blank/WEB-INF/src/ wsm-employee/WEB-INF/src/ wsm-samples/WEB-INF/src/

> -  <property name="webservice.jar"
> value="${lib.dir}/${service.name}WS.jar" />
> -  <property name="webservice.war" value="${service.name}WS.war" />

> +    <property name="webservice.jar"
> location="${lib.dir}/${service.name}WS.jar"/>
> +    <property name="webservice.war"
location="${service.name}WS.war"/>

The second webservice.war does not work using the location attribute
because of the way it is used later...

> +    <target name="war">
> +        <jar jarfile="../../../${webservice.war}">
> +            <fileset dir="${webapp.dir}">

webservice.war really is treated as a file name value rather than a path
to a file.  The two options are to go back use the value attribute for
webservice.war or to change the jar command.

- jeremiah