Skip to content

Solace Server Binding v0.3.0

The Solace server binding v0.3.0 defines the connection to a Solace PubSub+ event broker by specifying the Message VPN to use.

Overview

A Message VPN provides a logically separate namespace on the broker. This binding is used to ensure a client application connects to the correct Message VPN to access its intended topics and queues.

Server Properties

PropertyTypeRequiredDescription
bindingVersionstringNoBinding version (defaults to 0.3.0).
msgVpnstringYesThe name of the Message VPN on the Solace broker.

Example

This example defines a server connection that targets the prod-payments-vpn Message VPN.

yaml
servers:
  production-broker:
    url: solace.example.com:55555
    protocol: solace
    bindings:
      solace:
        bindingVersion: '0.3.0'
        msgVpn: 'prod-payments-vpn'

Changelog

Version 0.3.0

  • msgVpn is the only property, establishing the connection target.