Static Configurations
By default, values such as SOAP proxy endpoint and timeout are pre-configured in the default configuration file config-default.yaml.
The file to update depends on how the gateway is deployed:
- Host or Docker
- Kubernetes (Helm)
For host or Docker deployments, configure the following settings:
plugin_attr:
soap:
endpoint: http://127.0.0.1:5000
timeout: 3000 # in milliseconds
Then reload the gateway for changes to take effect.
For Helm deployments, set the following values in the API7 Gateway Helm chart. Keep the rest of your values file unchanged.
soapProxy:
enabled: true
pluginAttrs:
soap:
endpoint: http://127.0.0.1:5000
timeout: 3000
Then apply the values file to the existing gateway release:
helm upgrade <gateway-release-name> api7/gateway -n <namespace> -f values.yaml
Parameters
See plugin common configurations for configuration options available to all plugins.
wsdl_url
URL to the WSDL file.
max_req_body_size
Maximum request body size in bytes buffered into memory. Larger request bodies are rejected. Available in API7 Enterprise from version 3.9.17 on the 3.9 line and from version 3.10.4 on the 3.10 line.