FGLPROFILE: Web Services configuration / Examples |
The following is an FGLPROFILE sample, configured for a connection to a HTTPS server via a proxy, and with HTTP and Proxy Authentication.
############################ ## Security configuration ## ############################ security.global.script = "Cert/password.sh" security.global.ca = "Cert/CAList.pem" security.global.cipher = "HIGH" # Use only HIGH encryption ciphers security.mykey.certificate = "Cert/MyCertificateA.crt" security.mykey.privatekey = "Cert/MyPrivateKeyA.pem" ############################### ## Proxy HTTP Authentication ## ############################### authenticate.proxyauth.login = "myapplication" authenticate.proxyauth.password = "mypswd" authenticate.proxyauth.scheme = "Basic" ############################### ## HTTPS Proxy configuration ## ############################### proxy.https.location = "10.0.0.170" proxy.https.list = "www.mycompany.com;www.mycompany.com" proxy.https.authenticate = "proxyauth" ################################ ## Server HTTP Authentication ## ################################ authenticate.serverauth.login = "mylogin" authenticate.serverauth.password = "password" ########################## ## Server configuration ## ########################## ws.myserver.url = "https://www.MyMachine.com/cgi-bin/fglccgi.exe/ws/r/MyWebService" ws.myserver.authenticate = "serverauth" ws.myserver.security = "mykey"