The StorageService will provide get/ push operations to store and retrieve data from various backends. This is currently under development and not yet released. Its WSDL is located at http://server:port/XServices/StorageService?wsdl
Description here
Table 2.5. Input parameters
parameter | type | required | description |
---|---|---|---|
host | HostConnection | Yes | Host where to execute the command. See HostConnection . |
command | String | No | Any command including arguments |
timeout | Long | Yes | Timeout in milliseconds. The command is forcefully terminated when timeout is reached. |
The ReturnCode type is used as the generic answer type for most of the BruteXservices operations.
The defining Java class is
net.brutex.xservices.types.ReturnCode
.
<xs:complexType name="ReturnCodeType"> <xs:sequence> <xs:element name="returnCode" type="xs:int"/> <xs:element minOccurs="0" name="stdOut" type="xs:string"/> <xs:element minOccurs="0" name="stdErr" type="xs:string"/> <xs:element maxOccurs="unbounded" minOccurs="0" name="propertyList" nillable="true" type="tns:antProperty"/> </xs:sequence> </xs:complexType>
<ReturnCode xmlns:ns2="http://ws.xservices.brutex.net"> <returnCode>0</returnCode> <stdOut/> <stdErr/> <propertyList> See tns:antProperty for details about the <propertyList> elements. <name>key1</name> <value>value1</value> </propertyList> <propertyList> <name>key2</name> <value>value2</value> </propertyList> </ReturnCode>