stop json listener: Stop the wire listener (deprecated)
Use the stop json listener argument with the admin() or task() function to stop the wire listener.
Syntax
>>-EXECUTE FUNCTION--+-admin-+--(-------------------------------> '-task--' >--"stop json listener"--,"--+-------------------------------------------------+--"--> '-,--"property_file"--+-------------------------+-' '-,--"listener_arguments"-' >--)--;--------------------------------------------------------><
Element | Description | Key Considerations |
---|---|---|
property_file | The name of the wire listener configuration file to use instead of the default. | The property_file is optional. The default wire listener configuration file is in $INFORMIXDIR/etc/jsonListener.properties. |
listener_arguments | The command line argument to pass to the wire listener. |
Usage
The stop json listener argument stops the wire listener.
Example
In the following example, the wire
listener is stopped by using the mycustom.properties file
instead of the default jsonListener.properties file:
EXECUTE FUNCTION task("stop json listener", "mycustom.properties");
In
this example, the wire listener is stopped by using mycustom.properties file
instead of the default jsonListener.properties,
and a command line argument is passed to the wire listener:
EXECUTE FUNCTION task("stop json listener", "mycustom.properties", "-port 27018");