The Stambia Web Services which are designed to have Input and Output files will generate these at invocation.
By default, they are deleted except if the invocation ends with errors, but this can be configured in the Runtime properties.
Prerequisites:
- Stambia DI Runtime S17.4.0 or higher
To change this behavior:
- Open the
<stambiaRuntime>/properties/engineParameters.xml
file - Uncomment the three dedicated parameters
- Set their values accordingly to your needs
The parameters to set are:
<parameter name="webServiceInputMessageKeep" value="yes"/> <parameter name="webServiceOutputMessageKeep" value="yes"/> <parameter name="webServiceFaultMessageKeep" value="yes"/>
And the following values are available:
Value | Description |
yes | The temporary files are kept. |
no | The temporary files are deleted after the invocation. |
if_error | If an error occurred during the invocation, the temporary files are kept, otherwise, they are deleted. |