Udap.Server 0.3.37

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

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

Udap.Server

UDAP logo

📦 Nuget Package: Udap.Server

This package is intended to be used with Duende's Identity Server. Duende must be licensed if you are using it for anything more than testing and you make more than 1 million dollars a year. I am willing to build samples using other identity providers. Keep in mind Udap.Server is meant to add auto registration only. Then it relies on Identity Server for identity rather than build a complete identity provider server. There is great value Duende provides that would take a very long time to get correct.

This package contains a few extension methods and two endpoints. The first endpoint is an UDAP metadata endpoint, implementing Duende's IEndpointHandler interface allowing /.well-known/udap to render metadata. The items of interest in the metadata is the registration_endpoint which points to the next endpoint; UdapDynamicClientRegistrationEndpoint. This code is a simple endpoint called as a delegate using the dotnet minimal api technique. All of this is configured by adding the AddUdapServer() extension method to the Identity Server pipeline.

Assumptions: An Identity Sever exists is backed by a relational database. Use Udap.Auth.Server as an example. I may revisit this in the future and build an in memory version but this reference implementation. For now it assumes a relational database is deployed.

Full Example

Below is a full example. Alternatively the 2023 FHIR® DevDays Tutorial is another great way to learn how to use Udap.Server.


var builder = WebApplication.CreateBuilder(args);

builder.Services.AddIdentityServer()
    .AddConfigurationStore(options =>
    {
        options.ConfigureDbContext = b => b.UseSqlite(connectionString,
            dbOpts => dbOpts.MigrationsAssembly(migrationsAssembly));
    })
    .AddOperationalStore(options =>
    {
        options.ConfigureDbContext = b => b.UseSqlite(connectionString,
            dbOpts => dbOpts.MigrationsAssembly(migrationsAssembly));

    })
    .AddResourceStore<ResourceStore>()
    .AddClientStore<ClientStore>()
    .AddTestUsers(TestUsers.Users)
    .AddUdapServer(
        options =>
        {
            var udapServerOptions = builder.Configuration.GetOption<ServerSettings>("ServerSettings");
            options.DefaultSystemScopes = udapServerOptions.DefaultSystemScopes;
            options.DefaultUserScopes = udapServerOptions.DefaultUserScopes;
            options.ServerSupport = udapServerOptions.ServerSupport;
            options.ForceStateParamOnAuthorizationCode = udapServerOptions.
                ForceStateParamOnAuthorizationCode;
        },
        options =>
            options.UdapDbContext = b =>
                b.UseSqlite(connectionString,
                    dbOpts =>
                        dbOpts.MigrationsAssembly(typeof(Program).Assembly.FullName)),
        baseUrl: "https://localhost:5002/connect/register"
    );

  var app = builder.Build();

  // uncomment if you want to add a UI
  app.UseStaticFiles();
  app.UseRouting();

  app.UseUdapServer();
  app.UseIdentityServer();

  // uncomment if you want to add a UI
  app.UseAuthorization();
  app.MapRazorPages().RequireAuthorization();

  app.Run;

Udap.Auth.Server Database Configuration

For your convenience a EF Migrations Project called UdapDb.SqlServer can deploy the database schema. Run from Visual Studio using the UdapDb profile (/properties/launchSettings.json). This project will create all the Udap tables and Duende Identity tables. It will seed data needed for running local system tests. See the SeedData.cs for details.

If you need another database such as PostgreSQL I could be motivated to create one.

Not the UdapDb.SqlServer project includes two migrations for Duende's Identity Server tables. I have not put anytime into migrating a schema. At this point my pattern is to just delete the database and re-create it. At some point I will version this and start migrating officially.

UDAP Authorization Server Examples

  • Udap.Auth.Server

  • Udap.Auth.Server Deployed

  • FHIR® is the registered trademark of HL7 and is used with the permission of HL7. Use of the FHIR trademark does not constitute endorsement of the contents of this repository by HL7.

  • UDAP® and the UDAP gear logo, ecosystem gears, and green lock designs are trademarks of UDAP.org. UDAP Draft Specifications are referenced and displayed in parts of this source code to document specification implementation.

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 (1)

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

Package Downloads
Udap.UI

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.37 77 4/11/2024
0.3.36 76 4/10/2024
0.3.35 82 4/9/2024
0.3.34 83 4/8/2024
0.3.33 87 4/7/2024
0.3.32 89 4/5/2024
0.3.31 87 4/4/2024
0.3.30 81 4/4/2024
0.3.29 87 4/3/2024
0.3.28 74 4/3/2024
0.3.27 88 4/2/2024
0.3.26 73 4/2/2024
0.3.25 83 4/2/2024
0.3.24 97 3/24/2024
0.3.22 102 3/6/2024
0.3.21 88 3/6/2024
0.3.20 74 3/5/2024
0.3.19 92 3/2/2024
0.3.18 101 3/2/2024
0.3.13 85 3/1/2024
0.3.12 84 2/24/2024
0.3.10 92 2/14/2024
0.3.8 87 2/11/2024
0.3.7 87 2/11/2024
0.3.6 85 2/10/2024
0.3.5 87 2/10/2024
0.3.4 85 2/10/2024
0.3.2 87 2/10/2024
0.3.0 91 1/31/2024
0.2.21 205 10/24/2023
0.2.20 87 10/23/2023
0.2.19 105 10/20/2023
0.2.18 106 10/11/2023
0.2.17 102 10/5/2023
0.2.16 108 9/21/2023
0.2.15 103 9/21/2023
0.2.14 101 9/20/2023
0.2.13 95 9/20/2023
0.2.12 94 9/20/2023
0.2.11 89 9/19/2023
0.2.10 126 9/13/2023
0.2.9 192 8/26/2023
0.2.8 113 8/18/2023
0.2.7 130 8/15/2023
0.2.6 129 8/12/2023
0.2.5 137 8/11/2023
0.2.4 118 8/10/2023
0.2.3 128 8/2/2023
0.2.2 126 8/1/2023
0.2.1 128 7/25/2023
0.2.0 146 7/16/2023
0.1.24 119 5/26/2023
0.1.23 137 5/22/2023
0.1.22 113 5/22/2023
0.1.21 114 5/21/2023
0.1.20 114 5/20/2023
0.1.17 107 5/9/2023
0.1.16 108 5/6/2023
0.1.15 115 5/4/2023
0.1.14 123 5/2/2023
0.1.12 123 5/1/2023
0.1.11 131 4/29/2023
0.1.9 138 4/29/2023
0.1.8 124 4/29/2023
0.1.7 132 4/28/2023
0.1.6 127 4/27/2023
0.1.5 122 4/27/2023
0.1.4 129 4/25/2023
0.1.3 144 4/23/2023
0.1.2 152 4/22/2023
0.1.1 147 4/22/2023
0.0.4-preview040 99 4/21/2023
0.0.4-preview039 105 4/13/2023
0.0.4-preview038 107 4/11/2023
0.0.4-preview037 101 4/7/2023
0.0.4-preview036 100 3/31/2023
0.0.4-preview035 105 3/31/2023
0.0.4-preview034 100 3/31/2023
0.0.4-preview033 102 3/30/2023
0.0.4-preview032 111 3/19/2023
0.0.4-preview029 107 3/18/2023
0.0.4-preview028 92 3/15/2023
0.0.4-preview027 110 3/13/2023
0.0.4-preview026 82 3/12/2023
0.0.4-preview025 101 3/10/2023
0.0.4-preview024 120 3/9/2023
0.0.4-preview022 108 3/9/2023
0.0.4-preview021 107 3/7/2023
0.0.4-preview020 107 3/7/2023
0.0.4-preview019 108 3/4/2023
0.0.4-preview018 109 3/4/2023
0.0.4-preview017 106 3/4/2023
0.0.4-preview016 116 3/1/2023
0.0.4-preview015 105 2/28/2023
0.0.4-preview014 127 2/23/2023
0.0.4-preview013 118 2/23/2023
0.0.4-preview012 116 2/21/2023
0.0.4-preview011 108 2/20/2023
0.0.4-preview010 113 2/20/2023
0.0.4-preview009 112 2/19/2023
0.0.4-preview008 89 2/14/2023
0.0.4-preview007 110 2/10/2023
0.0.4-preview006 110 2/8/2023
0.0.4-preview005 114 2/8/2023
0.0.4-preview004 110 2/7/2023
0.0.4-preview003 108 2/7/2023
0.0.4-preview002 116 2/7/2023
0.0.4-preview001 113 2/3/2023
0.0.4-preview000 122 2/2/2023
0.0.3-preview032 125 2/1/2023
0.0.3-preview031 112 2/1/2023
0.0.3-preview030 126 1/30/2023
0.0.3-preview029 123 1/21/2023
0.0.3-preview028 121 1/19/2023
0.0.3-preview027 105 1/18/2023
0.0.3-preview026 122 1/16/2023
0.0.3-preview025 121 1/15/2023
0.0.3-preview024 122 1/15/2023
0.0.3-preview020 115 1/15/2023
0.0.3-preview019 125 1/11/2023
0.0.3-preview018 124 1/11/2023
0.0.3-preview017 111 1/7/2023
0.0.3-preview016 108 1/7/2023
0.0.3-preview015 117 1/6/2023
0.0.3-preview014 113 1/6/2023
0.0.3-preview013 120 1/6/2023
0.0.3-preview012 115 1/6/2023
0.0.3-preview011 105 1/6/2023
0.0.3-preview010 116 1/3/2023
0.0.3-preview009 118 1/3/2023
0.0.3-preview008 118 1/2/2023
0.0.3-preview007 124 1/2/2023
0.0.3-preview006 113 1/2/2023
0.0.3-preview005 108 1/2/2023
0.0.3-preview004 105 1/1/2023
0.0.3-preview003 115 12/31/2022
0.0.3-preview002 141 12/28/2022
0.0.3-preview001 160 12/21/2022
0.0.3-preview000 113 11/29/2022
0.0.2-preview003 84 11/4/2022
0.0.2-preview002 90 11/4/2022
0.0.2-preview000 113 11/4/2022
0.0.1-preview3373625764 135 11/1/2022
0.0.1-preview002 121 11/4/2022
0.0.1-preview001 114 11/4/2022