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:
config.yaml
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.
values.yaml
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
string
required
URL to the WSDL file.