Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.46 KB

connecting.md

File metadata and controls

45 lines (30 loc) · 1.46 KB
title summary reviewed component versions related
Connecting endpoints
Connecting NServiceBus endpoints to the Particular Service Platform
2024-10-01
PlatformConnector
PlatformConnector:*
platform/json-schema
samples/platform-connector

The ServicePlatform Connector plugin provides a unified API to connect an NServiceBus endpoint to the Particular Service Platform by configuring:

JSON

The connection details can be parsed from JSON-compliant text with a specific configuration schema.

snippet: PlatformConnector-FromJson

The JSON file looks like this:

snippet: PlatformConnector-Json

A JSON file specific to a concrete deployment of the ServicePlatform is available via ServicePulse.

Screenshot of ServicePulse showing the configuration endpoint connection json file tab

Code first

The connection details can be constructed in code.

snippet: PlatformConnector-CodeFirst

Combined

It is possible to load configuration from JSON and then override settings via code.

snippet: PlatformConnector-Combo