Udap.Client 0.5.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Udap.Client --version 0.5.1
                    
NuGet\Install-Package Udap.Client -Version 0.5.1
                    
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="Udap.Client" Version="0.5.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Udap.Client" Version="0.5.1" />
                    
Directory.Packages.props
<PackageReference Include="Udap.Client" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Udap.Client --version 0.5.1
                    
#r "nuget: Udap.Client, 0.5.1"
                    
#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.
#:package Udap.Client@0.5.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Udap.Client&version=0.5.1
                    
Install as a Cake Addin
#tool nuget:?package=Udap.Client&version=0.5.1
                    
Install as a Cake Tool

Udap.Client

UDAP logo

📦 Nuget Package: Udap.Client

Udap.Config simple dependency injection example configuration

If you chose to load a trust anchor yourself or non at all then registration can be a simple as the following.

builder.Services.AddScoped<TrustChainValidator>();
builder.Services.AddHttpClient<IUdapClient, UdapClient>();

The Udap.Client returns a UdapDiscoveryDocumentResponse . For convenience it contains a IsError property. If you need to understand why there is an error then you can investigate the Error, Exception, ErrorType, and HttpErrorReason depending on the reason for the error. There are also events you can subscribe to to get details about JWT and Certificate chaining errors. The Problem events come from the TrustChainValidator and are very useful. See example below.

var udapClient = serviceProvider.GetRequiredService<IUdapClient>();
var loggerFactory = serviceProvider.GetRequiredService<ILoggerFactory>();
var logger = loggerFactory.CreateLogger(typeof(Program));

udapClient.Problem += element => logger.LogWarning(element.ChainElementStatus
    .Summarize(TrustChainValidator.DefaultProblemFlags));

udapClient.Untrusted += certificate2 => logger.LogWarning("Untrusted: " + certificate2.Subject);
udapClient.TokenError += message => logger.LogWarning("TokenError: " + message);

var response = await udapClient.ValidateResource(options.BaseUrl, trustAnchorStore, community);

if (response.IsError)
{
    logger.LogError(response.HttpErrorReason);
}
else
{
    logger.LogInformation(JsonSerializer.Serialize(
        response, 
        new JsonSerializerOptions{WriteIndented = true})); 
}

Experiment with this example code in the 1_UdapClientMetadata CLI Project

Example command line run: dotnet run --baseUrl https://fhirlabs.net/fhir/r4 --trustAnchor "C:\SureFhirLabs_CA.cer" --community udap://ECDSA/


NOTE The above example trust anchor (download) is used by most communities in the https://fhirlabs.net/fhir/r4 test server.


Udap.Client configuration with a ITrustAnchorStore implementation

Implement the ITrustAnchorStore to load trust anchors from a store. Below is dependency injection example of a file system store implementation. Note the CertStore folder in this project with anchors and intermediates folders. Also take note of the appsettings.json configuration. Notice each community has an Anchors and Intermediates collection of file references. In accompanying example project all communities issue certificates through a sub-certificate authority, yet the configuration only configured one Intermediate. Why is this? If the published certificate at the resource ./well-known/udap endpoint contains a AIA extension then the .NET X509Chain.Build method will follow the URL in the extension. This is true on Windows and Linux. Some Certificate Authorities may not follow this practice and you will have to configure for the intermediate certificate.


Note: An anchor must be chosen for each community. When you receive signed metadata the client will proceed to build a certificate chain from the first x5c header certificate and the anchor as the root certificate.


There is another way for intermediate certificates to be discovered. That is within the x5c header of the signed metadata. While the first certificate in the x5c header must be the signing certificate, the rest of the certificates may be the rest of the chain. But again you must have an anchor deliberately chosen and loaded into the client. The client will no load and trust an anchor from the x5c header.

<details><summary><a>View Metadata</></summary>

"UdapFileCertStoreManifest": {
  "Communities": [
    {
      "Name": "udap://stage.healthtogo.me/",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/EMRDirectTestCA.crt"
        }
      ]
    },
    {
      "Name": "udap://fhirlabs.net/",
      "Intermediates": [
        "CertStore/intermediates/SureFhirLabs_Intermediate.cer"
      ],
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    },
    {
      "Name": "udap://expired.fhirlabs.net/",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    },
    {
      "Name": "udap://revoked.fhirlabs.net/",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    },
    {
      "Name": "udap://untrusted.fhirlabs.net/",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    },
    {
      "Name": "udap://Iss.Miss.Match.To.SubjAltName/",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    },
    {
      "Name": "udap://Iss.Miss.Match.To.BaseUrl//",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    },
    {
      "Name": "udap://ECDSA/",
      "Anchors": [
        {
          "FilePath": "CertStore/anchors/SureFhirLabs_CA.cer"
        }
      ]
    }
  ]
}

</details> <br/>

services.Configure<UdapFileCertStoreManifest>(context.Configuration.GetSection("UdapFileCertStoreManifest"));
services.AddSingleton<ITrustAnchorStore, TrustAnchorFileStore>();
services.AddScoped<TrustChainValidator>();
services.AddHttpClient<IUdapClient, UdapClient>();

Experiment with this example code in the 1_UdapClientMetadata CLI Project

Udap.Client advanced configuration

The TrustChainValidator a couple ways to control it's behavior when validating a chain. One is the control the Problem Flags identified in the .NET X509ChainStatusFlags settings. The defaults are recommended. Perhaps you are running some unit tests that do not publish a certificate revocation list. Then your code might look something like the following where we mask out OfflineRevocation and RevocationStatusUnknown flags.

services.Configure<UdapFileCertStoreManifest>(context.Configuration.GetSection("UdapFileCertStoreManifest"));
                    
var problemFlags = X509ChainStatusFlags.NotTimeValid |
                    X509ChainStatusFlags.Revoked |
                    X509ChainStatusFlags.NotSignatureValid |
                    X509ChainStatusFlags.InvalidBasicConstraints |
                    X509ChainStatusFlags.CtlNotTimeValid |
                    X509ChainStatusFlags.UntrustedRoot |
                    // X509ChainStatusFlags.OfflineRevocation |
                    X509ChainStatusFlags.CtlNotSignatureValid;
                    // X509ChainStatusFlags.RevocationStatusUnknown;

services.AddSingleton<ITrustAnchorStore, TrustAnchorFileStore>();
services.AddScoped<TrustChainValidator>(sp => new TrustChainValidator(new X509ChainPolicy(), problemFlags, sp.GetService<ILogger<TrustChainValidator>>()));
services.AddHttpClient<IUdapClient, UdapClient>();

TODO: Cover X509ChainPolicy

Udap.Client Dynamic Client Registration with a ICertificateStore implementation

Example projects

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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Udap.Client:

Package Downloads
Udap.Server

Package is a part of the UDAP reference implementation for .NET.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.5 144 7/15/2025
0.5.4 145 7/14/2025
0.5.3 96 7/11/2025
0.5.2 152 7/10/2025
0.5.1 179 7/9/2025
0.5.0 146 7/6/2025
0.4.12 80 7/5/2025
0.4.11 268 6/13/2025
0.4.10 297 6/12/2025
0.4.9 305 6/12/2025
0.4.8 150 6/3/2025
0.4.7 270 4/18/2025
0.4.6 364 3/17/2025
0.4.5 492 3/4/2025
0.4.4 531 1/15/2025
0.4.3 101 1/14/2025
0.4.2 92 1/14/2025
0.4.1 264 1/13/2025
0.4.0 285 12/14/2024
0.3.96 358 11/6/2024
0.3.95 270 11/2/2024
0.3.94 162 10/31/2024
0.3.93 354 10/13/2024
0.3.92 139 10/13/2024
0.3.91 133 10/10/2024
0.3.89 165 10/10/2024
0.3.87 170 10/5/2024
0.3.86 185 10/5/2024
0.3.85 150 10/4/2024
0.3.84 140 10/3/2024
0.3.83 136 10/3/2024
0.3.82 197 9/20/2024
0.3.81 245 9/19/2024
0.3.80 198 9/19/2024
0.3.79 181 9/19/2024
0.3.78 172 9/19/2024
0.3.77 216 9/17/2024
0.3.76 142 9/17/2024
0.3.75 153 9/12/2024
0.3.74 146 9/12/2024
0.3.73 166 9/10/2024
0.3.72 320 9/7/2024
0.3.71 156 9/5/2024
0.3.70 147 9/5/2024
0.3.69 161 9/5/2024
0.3.68 181 9/4/2024
0.3.67 140 9/4/2024
0.3.66 135 9/4/2024
0.3.65 145 9/4/2024
0.3.64 150 9/2/2024
0.3.63 147 8/31/2024
0.3.62 166 8/29/2024
0.3.61 161 8/28/2024
0.3.60 221 8/2/2024
0.3.59 169 8/1/2024
0.3.58 133 8/1/2024
0.3.57 261 7/19/2024
0.3.56 147 7/19/2024
0.3.54 155 7/18/2024
0.3.53 165 7/15/2024
0.3.52 156 7/15/2024
0.3.51 154 7/12/2024
0.3.50 234 7/1/2024
0.3.49 166 7/1/2024
0.3.48 371 5/22/2024
0.3.47 263 5/15/2024
0.3.46 138 5/14/2024
0.3.45 213 5/12/2024
0.3.44 155 5/12/2024
0.3.43 133 5/12/2024
0.3.42 142 5/12/2024
0.3.41 220 5/6/2024
0.3.40 197 5/4/2024
0.3.39 157 5/1/2024
0.3.38 170 4/30/2024
0.3.37 241 4/11/2024
0.3.36 157 4/10/2024
0.3.35 281 4/9/2024
0.3.34 183 4/8/2024
0.3.33 183 4/7/2024
0.3.32 176 4/5/2024
0.3.31 171 4/4/2024
0.3.30 151 4/4/2024
0.3.29 206 4/3/2024
0.3.28 143 4/3/2024
0.3.27 155 4/2/2024
0.3.26 131 4/2/2024
0.3.25 184 4/2/2024
0.3.24 217 3/24/2024
0.3.22 268 3/6/2024
0.3.21 161 3/6/2024
0.3.20 164 3/5/2024
0.3.19 182 3/2/2024
0.3.18 181 3/2/2024
0.3.13 188 3/1/2024
0.3.12 163 2/24/2024
0.3.10 161 2/14/2024
0.3.8 239 2/11/2024
0.3.7 171 2/11/2024
0.3.6 163 2/10/2024
0.3.5 146 2/10/2024
0.3.4 152 2/10/2024
0.3.2 165 2/10/2024
0.3.0 314 1/31/2024
0.2.21 566 10/24/2023
0.2.20 164 10/23/2023
0.2.19 206 10/20/2023
0.2.18 214 10/11/2023
0.2.17 212 10/5/2023
0.2.16 281 9/21/2023
0.2.15 169 9/21/2023
0.2.14 228 9/20/2023
0.2.13 159 9/20/2023
0.2.12 178 9/20/2023
0.2.11 176 9/19/2023
0.2.10 252 9/13/2023
0.2.9 337 8/26/2023
0.2.8 210 8/18/2023
0.2.7 211 8/15/2023
0.2.6 197 8/12/2023
0.2.5 239 8/11/2023
0.2.4 218 8/10/2023
0.2.3 251 8/2/2023
0.2.2 217 8/1/2023
0.2.1 227 7/25/2023
0.2.0 275 7/16/2023
0.1.24 379 5/26/2023
0.1.23 198 5/22/2023
0.1.22 175 5/22/2023
0.1.21 204 5/21/2023
0.1.20 210 5/20/2023
0.1.17 210 5/9/2023
0.1.16 182 5/6/2023
0.1.15 204 5/4/2023
0.1.14 219 5/2/2023
0.1.12 188 5/1/2023
0.1.11 202 4/29/2023
0.1.9 208 4/29/2023
0.1.8 203 4/29/2023
0.1.7 229 4/28/2023
0.1.6 211 4/27/2023
0.1.5 221 4/27/2023
0.1.4 227 4/25/2023
0.1.3 241 4/23/2023
0.1.2 253 4/22/2023
0.1.1 275 4/22/2023
0.0.4-preview040 195 4/21/2023
0.0.4-preview039 166 4/13/2023
0.0.4-preview038 198 4/11/2023
0.0.4-preview037 173 4/7/2023
0.0.4-preview036 184 3/31/2023
0.0.4-preview035 167 3/31/2023
0.0.4-preview034 186 3/31/2023
0.0.4-preview033 195 3/30/2023
0.0.4-preview032 195 3/19/2023
0.0.4-preview029 184 3/18/2023
0.0.4-preview028 183 3/15/2023
0.0.4-preview027 173 3/13/2023
0.0.4-preview026 178 3/12/2023
0.0.4-preview025 187 3/10/2023
0.0.4-preview024 184 3/9/2023
0.0.4-preview022 210 3/9/2023
0.0.4-preview021 179 3/7/2023
0.0.4-preview020 207 3/7/2023
0.0.4-preview019 164 3/4/2023
0.0.4-preview018 203 3/4/2023
0.0.4-preview017 192 3/4/2023
0.0.4-preview016 173 3/1/2023
0.0.4-preview015 186 2/28/2023
0.0.4-preview014 194 2/23/2023
0.0.4-preview013 204 2/23/2023
0.0.4-preview012 221 2/21/2023
0.0.4-preview011 181 2/20/2023
0.0.4-preview010 181 2/20/2023
0.0.4-preview009 172 2/19/2023
0.0.4-preview008 208 2/14/2023
0.0.4-preview007 175 2/10/2023
0.0.4-preview006 189 2/8/2023
0.0.4-preview005 196 2/8/2023
0.0.4-preview004 167 2/7/2023
0.0.4-preview003 174 2/7/2023
0.0.4-preview002 184 2/7/2023
0.0.4-preview001 182 2/3/2023
0.0.4-preview000 181 2/2/2023
0.0.3-preview032 189 2/1/2023
0.0.3-preview031 185 2/1/2023
0.0.3-preview030 203 1/30/2023
0.0.3-preview029 208 1/21/2023
0.0.3-preview028 188 1/19/2023
0.0.3-preview027 203 1/18/2023
0.0.3-preview026 220 1/16/2023
0.0.3-preview025 170 1/15/2023
0.0.3-preview024 219 1/15/2023
0.0.3-preview020 197 1/15/2023
0.0.3-preview019 185 1/11/2023
0.0.3-preview018 210 1/11/2023
0.0.3-preview017 221 1/7/2023
0.0.3-preview016 199 1/7/2023
0.0.3-preview015 197 1/6/2023
0.0.3-preview014 192 1/6/2023
0.0.3-preview013 198 1/6/2023
0.0.3-preview012 208 1/6/2023
0.0.3-preview011 203 1/6/2023
0.0.3-preview010 217 1/3/2023
0.0.3-preview009 205 1/3/2023
0.0.3-preview008 210 1/2/2023
0.0.3-preview007 203 1/2/2023
0.0.3-preview006 194 1/2/2023
0.0.3-preview005 199 1/2/2023
0.0.3-preview004 212 1/1/2023
0.0.3-preview003 198 12/31/2022
0.0.3-preview002 250 12/28/2022
0.0.3-preview001 253 12/21/2022
0.0.3-preview000 206 11/29/2022
0.0.2-preview003 182 11/4/2022
0.0.2-preview002 199 11/4/2022
0.0.2-preview000 256 11/4/2022
0.0.1-preview002 227 11/4/2022
0.0.1-preview001 215 11/4/2022