Udap.Client 0.4.5

dotnet add package Udap.Client --version 0.4.5                
NuGet\Install-Package Udap.Client -Version 0.4.5                
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.4.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Udap.Client --version 0.4.5                
#r "nuget: Udap.Client, 0.4.5"                
#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 Udap.Client as a Cake Addin
#addin nuget:?package=Udap.Client&version=0.4.5

// Install Udap.Client as a Cake Tool
#tool nuget:?package=Udap.Client&version=0.4.5                

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. 
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.4.5 91 3/4/2025
0.4.4 452 1/15/2025
0.4.3 70 1/14/2025
0.4.2 66 1/14/2025
0.4.1 168 1/13/2025
0.4.0 252 12/14/2024
0.3.96 324 11/6/2024
0.3.95 242 11/2/2024
0.3.94 138 10/31/2024
0.3.93 329 10/13/2024
0.3.92 117 10/13/2024
0.3.91 113 10/10/2024
0.3.89 144 10/10/2024
0.3.87 148 10/5/2024
0.3.86 164 10/5/2024
0.3.85 128 10/4/2024
0.3.84 120 10/3/2024
0.3.83 114 10/3/2024
0.3.82 176 9/20/2024
0.3.81 218 9/19/2024
0.3.80 166 9/19/2024
0.3.79 157 9/19/2024
0.3.78 152 9/19/2024
0.3.77 192 9/17/2024
0.3.76 122 9/17/2024
0.3.75 129 9/12/2024
0.3.74 123 9/12/2024
0.3.73 145 9/10/2024
0.3.72 294 9/7/2024
0.3.71 133 9/5/2024
0.3.70 127 9/5/2024
0.3.69 133 9/5/2024
0.3.68 152 9/4/2024
0.3.67 120 9/4/2024
0.3.66 115 9/4/2024
0.3.65 117 9/4/2024
0.3.64 121 9/2/2024
0.3.63 128 8/31/2024
0.3.62 144 8/29/2024
0.3.61 141 8/28/2024
0.3.60 199 8/2/2024
0.3.59 149 8/1/2024
0.3.58 111 8/1/2024
0.3.57 241 7/19/2024
0.3.56 126 7/19/2024
0.3.54 135 7/18/2024
0.3.53 142 7/15/2024
0.3.52 133 7/15/2024
0.3.51 133 7/12/2024
0.3.50 208 7/1/2024
0.3.49 144 7/1/2024
0.3.48 352 5/22/2024
0.3.47 243 5/15/2024
0.3.46 117 5/14/2024
0.3.45 188 5/12/2024
0.3.44 129 5/12/2024
0.3.43 106 5/12/2024
0.3.42 124 5/12/2024
0.3.41 193 5/6/2024
0.3.40 175 5/4/2024
0.3.39 137 5/1/2024
0.3.38 148 4/30/2024
0.3.37 218 4/11/2024
0.3.36 136 4/10/2024
0.3.35 261 4/9/2024
0.3.34 164 4/8/2024
0.3.33 160 4/7/2024
0.3.32 154 4/5/2024
0.3.31 151 4/4/2024
0.3.30 129 4/4/2024
0.3.29 185 4/3/2024
0.3.28 120 4/3/2024
0.3.27 136 4/2/2024
0.3.26 111 4/2/2024
0.3.25 164 4/2/2024
0.3.24 197 3/24/2024
0.3.22 246 3/6/2024
0.3.21 141 3/6/2024
0.3.20 145 3/5/2024
0.3.19 163 3/2/2024
0.3.18 152 3/2/2024
0.3.13 166 3/1/2024
0.3.12 135 2/24/2024
0.3.10 142 2/14/2024
0.3.8 218 2/11/2024
0.3.7 145 2/11/2024
0.3.6 143 2/10/2024
0.3.5 127 2/10/2024
0.3.4 134 2/10/2024
0.3.2 143 2/10/2024
0.3.0 293 1/31/2024
0.2.21 555 10/24/2023
0.2.20 151 10/23/2023
0.2.19 192 10/20/2023
0.2.18 202 10/11/2023
0.2.17 199 10/5/2023
0.2.16 268 9/21/2023
0.2.15 156 9/21/2023
0.2.14 215 9/20/2023
0.2.13 145 9/20/2023
0.2.12 166 9/20/2023
0.2.11 162 9/19/2023
0.2.10 233 9/13/2023
0.2.9 316 8/26/2023
0.2.8 189 8/18/2023
0.2.7 188 8/15/2023
0.2.6 177 8/12/2023
0.2.5 216 8/11/2023
0.2.4 194 8/10/2023
0.2.3 228 8/2/2023
0.2.2 195 8/1/2023
0.2.1 205 7/25/2023
0.2.0 252 7/16/2023
0.1.24 353 5/26/2023
0.1.23 174 5/22/2023
0.1.22 142 5/22/2023
0.1.21 173 5/21/2023
0.1.20 176 5/20/2023
0.1.17 181 5/9/2023
0.1.16 155 5/6/2023
0.1.15 172 5/4/2023
0.1.14 193 5/2/2023
0.1.12 163 5/1/2023
0.1.11 175 4/29/2023
0.1.9 172 4/29/2023
0.1.8 172 4/29/2023
0.1.7 202 4/28/2023
0.1.6 186 4/27/2023
0.1.5 195 4/27/2023
0.1.4 199 4/25/2023
0.1.3 214 4/23/2023
0.1.2 226 4/22/2023
0.1.1 247 4/22/2023
0.0.4-preview040 162 4/21/2023
0.0.4-preview039 137 4/13/2023
0.0.4-preview038 163 4/11/2023
0.0.4-preview037 148 4/7/2023
0.0.4-preview036 158 3/31/2023
0.0.4-preview035 141 3/31/2023
0.0.4-preview034 155 3/31/2023
0.0.4-preview033 163 3/30/2023
0.0.4-preview032 166 3/19/2023
0.0.4-preview029 159 3/18/2023
0.0.4-preview028 158 3/15/2023
0.0.4-preview027 149 3/13/2023
0.0.4-preview026 151 3/12/2023
0.0.4-preview025 157 3/10/2023
0.0.4-preview024 155 3/9/2023
0.0.4-preview022 179 3/9/2023
0.0.4-preview021 150 3/7/2023
0.0.4-preview020 178 3/7/2023
0.0.4-preview019 138 3/4/2023
0.0.4-preview018 175 3/4/2023
0.0.4-preview017 162 3/4/2023
0.0.4-preview016 143 3/1/2023
0.0.4-preview015 162 2/28/2023
0.0.4-preview014 167 2/23/2023
0.0.4-preview013 179 2/23/2023
0.0.4-preview012 191 2/21/2023
0.0.4-preview011 155 2/20/2023
0.0.4-preview010 151 2/20/2023
0.0.4-preview009 144 2/19/2023
0.0.4-preview008 183 2/14/2023
0.0.4-preview007 152 2/10/2023
0.0.4-preview006 162 2/8/2023
0.0.4-preview005 170 2/8/2023
0.0.4-preview004 137 2/7/2023
0.0.4-preview003 140 2/7/2023
0.0.4-preview002 155 2/7/2023
0.0.4-preview001 155 2/3/2023
0.0.4-preview000 154 2/2/2023
0.0.3-preview032 160 2/1/2023
0.0.3-preview031 153 2/1/2023
0.0.3-preview030 175 1/30/2023
0.0.3-preview029 166 1/21/2023
0.0.3-preview028 159 1/19/2023
0.0.3-preview027 176 1/18/2023
0.0.3-preview026 190 1/16/2023
0.0.3-preview025 143 1/15/2023
0.0.3-preview024 188 1/15/2023
0.0.3-preview020 168 1/15/2023
0.0.3-preview019 154 1/11/2023
0.0.3-preview018 178 1/11/2023
0.0.3-preview017 184 1/7/2023
0.0.3-preview016 165 1/7/2023
0.0.3-preview015 171 1/6/2023
0.0.3-preview014 163 1/6/2023
0.0.3-preview013 171 1/6/2023
0.0.3-preview012 178 1/6/2023
0.0.3-preview011 169 1/6/2023
0.0.3-preview010 191 1/3/2023
0.0.3-preview009 176 1/3/2023
0.0.3-preview008 180 1/2/2023
0.0.3-preview007 177 1/2/2023
0.0.3-preview006 163 1/2/2023
0.0.3-preview005 172 1/2/2023
0.0.3-preview004 179 1/1/2023
0.0.3-preview003 171 12/31/2022
0.0.3-preview002 219 12/28/2022
0.0.3-preview001 224 12/21/2022
0.0.3-preview000 172 11/29/2022
0.0.2-preview003 152 11/4/2022
0.0.2-preview002 166 11/4/2022
0.0.2-preview000 221 11/4/2022
0.0.1-preview002 197 11/4/2022
0.0.1-preview001 183 11/4/2022