Sets the value of the property for a Web service collection either using a name value pair or by specifying a file that contains the property name-value pair.
set_props [entity name value | file ]
<taskdef name="wst_antTask" classname="com.sybase.wst.wstool.ant.AntTask"/> <target name="set_props" > <wst_antTask command="set_props" entity=”entity” name=”nameOfProperty” value=”propertyValue”>
Where:
Option |
Description |
---|---|
entity |
The entity that is being modified: collection:CollectionName – identifies the Web service collection for which the properties are set. |
name |
The name of the property being modified. |
value |
The new value of the property. |
file |
The name of the file that contains the name value pairs of properties being modified. |
This command sets the description of MyWebServiceCollection:
wstool set_props collection:MyWebServiceCollection com.sybase.jaguar.webApplication.description “My test description”
Ant build example:
<wst_antTask command="set_props" entity="collection:myCollection" name=”com.sybase.jaguar.webApplication.description” value=”My test description” />