Udap.Client
0.2.15
See the version list below for details.
dotnet add package Udap.Client --version 0.2.15
NuGet\Install-Package Udap.Client -Version 0.2.15
<PackageReference Include="Udap.Client" Version="0.2.15" />
paket add Udap.Client --version 0.2.15
#r "nuget: Udap.Client, 0.2.15"
// Install Udap.Client as a Cake Addin #addin nuget:?package=Udap.Client&version=0.2.15 // Install Udap.Client as a Cake Tool #tool nuget:?package=Udap.Client&version=0.2.15
Udap.Client
📦 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": {
"ResourceServers": [
{
"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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
-
net6.0
- IdentityModel (>= 6.2.0)
- Microsoft.IdentityModel.JsonWebTokens (>= 7.0.0)
- Udap.Common (>= 0.2.15)
- Udap.Model (>= 0.2.15)
-
net7.0
- IdentityModel (>= 6.2.0)
- Microsoft.IdentityModel.JsonWebTokens (>= 7.0.0)
- Udap.Common (>= 0.2.15)
- Udap.Model (>= 0.2.15)
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.3.96 | 118 | 11/6/2024 |
0.3.95 | 126 | 11/2/2024 |
0.3.94 | 115 | 10/31/2024 |
0.3.93 | 194 | 10/13/2024 |
0.3.92 | 93 | 10/13/2024 |
0.3.91 | 93 | 10/10/2024 |
0.3.89 | 124 | 10/10/2024 |
0.3.87 | 128 | 10/5/2024 |
0.3.86 | 146 | 10/5/2024 |
0.3.85 | 110 | 10/4/2024 |
0.3.84 | 100 | 10/3/2024 |
0.3.83 | 95 | 10/3/2024 |
0.3.82 | 157 | 9/20/2024 |
0.3.81 | 204 | 9/19/2024 |
0.3.80 | 150 | 9/19/2024 |
0.3.79 | 141 | 9/19/2024 |
0.3.78 | 136 | 9/19/2024 |
0.3.77 | 175 | 9/17/2024 |
0.3.76 | 106 | 9/17/2024 |
0.3.75 | 113 | 9/12/2024 |
0.3.74 | 109 | 9/12/2024 |
0.3.73 | 132 | 9/10/2024 |
0.3.72 | 281 | 9/7/2024 |
0.3.71 | 120 | 9/5/2024 |
0.3.70 | 114 | 9/5/2024 |
0.3.69 | 120 | 9/5/2024 |
0.3.68 | 138 | 9/4/2024 |
0.3.67 | 107 | 9/4/2024 |
0.3.66 | 100 | 9/4/2024 |
0.3.65 | 104 | 9/4/2024 |
0.3.64 | 106 | 9/2/2024 |
0.3.63 | 113 | 8/31/2024 |
0.3.62 | 125 | 8/29/2024 |
0.3.61 | 126 | 8/28/2024 |
0.3.60 | 186 | 8/2/2024 |
0.3.59 | 134 | 8/1/2024 |
0.3.58 | 98 | 8/1/2024 |
0.3.57 | 204 | 7/19/2024 |
0.3.56 | 111 | 7/19/2024 |
0.3.54 | 118 | 7/18/2024 |
0.3.53 | 123 | 7/15/2024 |
0.3.52 | 119 | 7/15/2024 |
0.3.51 | 118 | 7/12/2024 |
0.3.50 | 194 | 7/1/2024 |
0.3.49 | 130 | 7/1/2024 |
0.3.48 | 338 | 5/22/2024 |
0.3.47 | 231 | 5/15/2024 |
0.3.46 | 103 | 5/14/2024 |
0.3.45 | 168 | 5/12/2024 |
0.3.44 | 108 | 5/12/2024 |
0.3.43 | 91 | 5/12/2024 |
0.3.42 | 103 | 5/12/2024 |
0.3.41 | 180 | 5/6/2024 |
0.3.40 | 162 | 5/4/2024 |
0.3.39 | 126 | 5/1/2024 |
0.3.38 | 134 | 4/30/2024 |
0.3.37 | 207 | 4/11/2024 |
0.3.36 | 121 | 4/10/2024 |
0.3.35 | 248 | 4/9/2024 |
0.3.34 | 149 | 4/8/2024 |
0.3.33 | 147 | 4/7/2024 |
0.3.32 | 141 | 4/5/2024 |
0.3.31 | 138 | 4/4/2024 |
0.3.30 | 116 | 4/4/2024 |
0.3.29 | 172 | 4/3/2024 |
0.3.28 | 107 | 4/3/2024 |
0.3.27 | 124 | 4/2/2024 |
0.3.26 | 100 | 4/2/2024 |
0.3.25 | 151 | 4/2/2024 |
0.3.24 | 184 | 3/24/2024 |
0.3.22 | 233 | 3/6/2024 |
0.3.21 | 130 | 3/6/2024 |
0.3.20 | 134 | 3/5/2024 |
0.3.19 | 148 | 3/2/2024 |
0.3.18 | 141 | 3/2/2024 |
0.3.13 | 155 | 3/1/2024 |
0.3.12 | 125 | 2/24/2024 |
0.3.10 | 128 | 2/14/2024 |
0.3.8 | 202 | 2/11/2024 |
0.3.7 | 131 | 2/11/2024 |
0.3.6 | 129 | 2/10/2024 |
0.3.5 | 113 | 2/10/2024 |
0.3.4 | 116 | 2/10/2024 |
0.3.2 | 127 | 2/10/2024 |
0.3.0 | 283 | 1/31/2024 |
0.2.21 | 543 | 10/24/2023 |
0.2.20 | 141 | 10/23/2023 |
0.2.19 | 178 | 10/20/2023 |
0.2.18 | 192 | 10/11/2023 |
0.2.17 | 189 | 10/5/2023 |
0.2.16 | 258 | 9/21/2023 |
0.2.15 | 144 | 9/21/2023 |
0.2.14 | 205 | 9/20/2023 |
0.2.13 | 135 | 9/20/2023 |
0.2.12 | 156 | 9/20/2023 |
0.2.11 | 152 | 9/19/2023 |
0.2.10 | 223 | 9/13/2023 |
0.2.9 | 304 | 8/26/2023 |
0.2.8 | 177 | 8/18/2023 |
0.2.7 | 178 | 8/15/2023 |
0.2.6 | 167 | 8/12/2023 |
0.2.5 | 206 | 8/11/2023 |
0.2.4 | 184 | 8/10/2023 |
0.2.3 | 218 | 8/2/2023 |
0.2.2 | 185 | 8/1/2023 |
0.2.1 | 195 | 7/25/2023 |
0.2.0 | 240 | 7/16/2023 |
0.1.24 | 340 | 5/26/2023 |
0.1.23 | 159 | 5/22/2023 |
0.1.22 | 129 | 5/22/2023 |
0.1.21 | 157 | 5/21/2023 |
0.1.20 | 163 | 5/20/2023 |
0.1.17 | 165 | 5/9/2023 |
0.1.16 | 139 | 5/6/2023 |
0.1.15 | 156 | 5/4/2023 |
0.1.14 | 177 | 5/2/2023 |
0.1.12 | 147 | 5/1/2023 |
0.1.11 | 160 | 4/29/2023 |
0.1.9 | 156 | 4/29/2023 |
0.1.8 | 156 | 4/29/2023 |
0.1.7 | 186 | 4/28/2023 |
0.1.6 | 170 | 4/27/2023 |
0.1.5 | 179 | 4/27/2023 |
0.1.4 | 183 | 4/25/2023 |
0.1.3 | 198 | 4/23/2023 |
0.1.2 | 210 | 4/22/2023 |
0.1.1 | 231 | 4/22/2023 |
0.0.4-preview040 | 148 | 4/21/2023 |
0.0.4-preview039 | 123 | 4/13/2023 |
0.0.4-preview038 | 150 | 4/11/2023 |
0.0.4-preview037 | 132 | 4/7/2023 |
0.0.4-preview036 | 144 | 3/31/2023 |
0.0.4-preview035 | 127 | 3/31/2023 |
0.0.4-preview034 | 141 | 3/31/2023 |
0.0.4-preview033 | 149 | 3/30/2023 |
0.0.4-preview032 | 152 | 3/19/2023 |
0.0.4-preview029 | 145 | 3/18/2023 |
0.0.4-preview028 | 144 | 3/15/2023 |
0.0.4-preview027 | 135 | 3/13/2023 |
0.0.4-preview026 | 134 | 3/12/2023 |
0.0.4-preview025 | 143 | 3/10/2023 |
0.0.4-preview024 | 141 | 3/9/2023 |
0.0.4-preview022 | 165 | 3/9/2023 |
0.0.4-preview021 | 136 | 3/7/2023 |
0.0.4-preview020 | 164 | 3/7/2023 |
0.0.4-preview019 | 124 | 3/4/2023 |
0.0.4-preview018 | 163 | 3/4/2023 |
0.0.4-preview017 | 148 | 3/4/2023 |
0.0.4-preview016 | 129 | 3/1/2023 |
0.0.4-preview015 | 148 | 2/28/2023 |
0.0.4-preview014 | 154 | 2/23/2023 |
0.0.4-preview013 | 166 | 2/23/2023 |
0.0.4-preview012 | 173 | 2/21/2023 |
0.0.4-preview011 | 142 | 2/20/2023 |
0.0.4-preview010 | 138 | 2/20/2023 |
0.0.4-preview009 | 131 | 2/19/2023 |
0.0.4-preview008 | 170 | 2/14/2023 |
0.0.4-preview007 | 139 | 2/10/2023 |
0.0.4-preview006 | 149 | 2/8/2023 |
0.0.4-preview005 | 157 | 2/8/2023 |
0.0.4-preview004 | 124 | 2/7/2023 |
0.0.4-preview003 | 127 | 2/7/2023 |
0.0.4-preview002 | 142 | 2/7/2023 |
0.0.4-preview001 | 142 | 2/3/2023 |
0.0.4-preview000 | 141 | 2/2/2023 |
0.0.3-preview032 | 147 | 2/1/2023 |
0.0.3-preview031 | 140 | 2/1/2023 |
0.0.3-preview030 | 162 | 1/30/2023 |
0.0.3-preview029 | 153 | 1/21/2023 |
0.0.3-preview028 | 146 | 1/19/2023 |
0.0.3-preview027 | 161 | 1/18/2023 |
0.0.3-preview026 | 177 | 1/16/2023 |
0.0.3-preview025 | 130 | 1/15/2023 |
0.0.3-preview024 | 175 | 1/15/2023 |
0.0.3-preview020 | 155 | 1/15/2023 |
0.0.3-preview019 | 141 | 1/11/2023 |
0.0.3-preview018 | 165 | 1/11/2023 |
0.0.3-preview017 | 171 | 1/7/2023 |
0.0.3-preview016 | 149 | 1/7/2023 |
0.0.3-preview015 | 158 | 1/6/2023 |
0.0.3-preview014 | 150 | 1/6/2023 |
0.0.3-preview013 | 156 | 1/6/2023 |
0.0.3-preview012 | 163 | 1/6/2023 |
0.0.3-preview011 | 156 | 1/6/2023 |
0.0.3-preview010 | 178 | 1/3/2023 |
0.0.3-preview009 | 161 | 1/3/2023 |
0.0.3-preview008 | 165 | 1/2/2023 |
0.0.3-preview007 | 164 | 1/2/2023 |
0.0.3-preview006 | 150 | 1/2/2023 |
0.0.3-preview005 | 159 | 1/2/2023 |
0.0.3-preview004 | 166 | 1/1/2023 |
0.0.3-preview003 | 158 | 12/31/2022 |
0.0.3-preview002 | 204 | 12/28/2022 |
0.0.3-preview001 | 210 | 12/21/2022 |
0.0.3-preview000 | 159 | 11/29/2022 |
0.0.2-preview003 | 139 | 11/4/2022 |
0.0.2-preview002 | 153 | 11/4/2022 |
0.0.2-preview000 | 208 | 11/4/2022 |
0.0.1-preview002 | 184 | 11/4/2022 |
0.0.1-preview001 | 170 | 11/4/2022 |