The client applications provided with the gateway can be configured using a configuration file. The xml schema for the configuration file can be found in the following file: conf.xsd The configuration file is not required, but if it is present the client will use it to set the username, password, and WSDL location. The default configuration file name is conf.xml . This page provides some examples of valid configuration files.
All fields are optional, so you can store just the information you want in the config file and configure the rest at runtime through the GUI or command line options.
<?xml version="1.0" encoding="UTF-8"?>
<conf:conf version="2007V01" xmlns:conf="http://gateway.sf.net/Conf">
<conf:username>GATEWAY99</conf:username>
<conf:password>GATEWAY99</conf:password>
<conf:wsdl>http://gateway-demo.osuosl.org/gateway/services/EFileServiceSoap?WSDL</conf:wsdl>
</conf:conf>
<?xml version="1.0" encoding="UTF-8"?>
<conf:conf version="2007V01" xmlns:conf="http://gateway.sf.net/Conf">
<conf:username>GATEWAY99</conf:username>
<conf:password>GATEWAY99</conf:password>
</conf:conf>
<?xml version="1.0" encoding="UTF-8"?>
<conf:conf version="2007V01" xmlns:conf="http://gateway.sf.net/Conf">
<conf:wsdl>http://gateway-demo.osuosl.org/gateway/services/EFileServiceSoap?WSDL</conf:wsdl>
</conf:conf>
<?xml version="1.0" encoding="UTF-8"?>
<conf:conf version="2007V01" xmlns:conf="http://gateway.sf.net/Conf">
<conf:username>GATEWAY99</conf:username>
<conf:wsdl>http://gateway-demo.osuosl.org/gateway/services/EFileServiceSoap?WSDL</conf:wsdl>
</conf:conf>