DNV.Vista.Gateway.Client 1.0.0-rc.2

This is a prerelease version of DNV.Vista.Gateway.Client.
dotnet add package DNV.Vista.Gateway.Client --version 1.0.0-rc.2                
NuGet\Install-Package DNV.Vista.Gateway.Client -Version 1.0.0-rc.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DNV.Vista.Gateway.Client" Version="1.0.0-rc.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DNV.Vista.Gateway.Client --version 1.0.0-rc.2                
#r "nuget: DNV.Vista.Gateway.Client, 1.0.0-rc.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DNV.Vista.Gateway.Client as a Cake Addin
#addin nuget:?package=DNV.Vista.Gateway.Client&version=1.0.0-rc.2&prerelease

// Install DNV.Vista.Gateway.Client as a Cake Tool
#tool nuget:?package=DNV.Vista.Gateway.Client&version=1.0.0-rc.2&prerelease                

Vista Gateway Client

.NET Version NuGet Version License: MIT

Vista Gateway Client is a library that provides a configured client for supported protocols and package types. It ensures strict implementation and validation of the packages according to their respective supported types.

Supported Protocols

  • HTTPS
  • MQTT

Supported Package Types

  • ISO19848 DataChannelList
  • ISO19848 TimeSeriesData

What is ISO19848?

ISO 19848 is an international standard for the digital exchange of data between ship systems, covering both operational and technical data. It standardizes the structure of data for easier exchange and interpretation, facilitating data integration in maritime industries.

Acquire an API Key

To use Vista Gateway Client, you will need an API key to authenticate with the gateway. Please reach out to your DNV contact to request an API key. When doing so, make sure to mention the specific service you are interested in to ensure you receive the correct key for your use case.

Installation

To use the Vista Gateway Client, you need .NET 8. Follow the steps below to install and configure the client.

1. Add Package Reference

Install the package via NuGet Package Manager or using the .NET CLI:

dotnet add package DNV.Vista.Gateway.Client

2. Add Client to the Dependency Injection Builder

using Vista.Gateway.Client;

var builder = WebApplication.CreateBuilder(args); // Must be an IHostApplicationBuilder
builder.AddVistaGatewayClient(options =>
{
    options.ApiKey = "<Your API Key>";
    options.Protocol = Protocol.Http; // or Protocol.MQTT
});

3. Create and Send a Package

using Vista.SDK;
using Vista.Gateway.Client;

// Resolve the client from the DI container
var client = serviceProvider.GetRequiredService<IVistaGatewayClient>();

// Create package. E.g. ISO19848 DataChannelList
var package = new DataChannelList
{
    // Configure the package according to ISO 19848 standard
};

// Create client package
var clientPackage = new GatewayPackage.ISO19848.DataChannelList(
    Package: package,
    ExternalId: "<Your External ID>",
    CorrelationId: "<Your Correlation ID>",
    UserAgent: "<Your User Agent>"
);

try {
    // Send the package
    await client.SendAsync(clientPackage);
}
catch (VistaGatewayException ex)
{
    // Handle VistaGatewayException
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0-rc.2 39 11/11/2024
1.0.0-preview-2 37 10/29/2024