Udap.Server 0.0.4-preview024

This is a prerelease version of Udap.Server.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Udap.Server --version 0.0.4-preview024
                    
NuGet\Install-Package Udap.Server -Version 0.0.4-preview024
                    
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.0.4-preview024" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Udap.Server" Version="0.0.4-preview024" />
                    
Directory.Packages.props
<PackageReference Include="Udap.Server" />
                    
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.Server --version 0.0.4-preview024
                    
#r "nuget: Udap.Server, 0.0.4-preview024"
                    
#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.Server@0.0.4-preview024
                    
#: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.Server&version=0.0.4-preview024&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Udap.Server&version=0.0.4-preview024&prerelease
                    
Install as a Cake Tool

Udap.Server

UDAP logo

📦 This package

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 only thing of interest in this endpoint 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.

Program.cs could look like this.

TODO Work to do here to demonstrate how to use.

  • Update readme
  • Instructions on creating database. dotnet run /seed from Udap.Idp.Admin
  • Need to finish loading root CAs into database
  • Add and test other DBs like SQL, PostgreSql and CockroachDB. Maybe Windows Store? 😏

using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Serilog;
using Udap.Server;
using Udap.Server.Extensions;
using Udap.Server.Registration;

namespace Udap.Idp;

internal static class HostingExtensions
{
    public static WebApplication ConfigureServices(this WebApplicationBuilder builder)
    {
        if (! int.TryParse(Environment.GetEnvironmentVariable("ASPNETCORE_HTTPS_PORT"), out int sslPort))
        {
            sslPort = 5002;
        }

        var connectionString = builder.Configuration.GetConnectionString("DefaultConnection");

        // uncomment if you want to add a UI
        builder.Services.AddRazorPages();

        var migrationsAssembly = typeof(Program).Assembly.GetName().Name;
        builder.Services.AddIdentityServer(options =>
            {
                // https://docs.duendesoftware.com/identityserver/v6/fundamentals/resources/api_scopes#authorization-based-on-scopes
                options.EmitStaticAudienceClaim = true;
            })
            .AddConfigurationStore(options =>
            {
                options.ConfigureDbContext = b => b.UseSqlite(connectionString,
                    sql => sql.MigrationsAssembly(migrationsAssembly));
            })
            .AddOperationalStore(options =>
            {
                options.ConfigureDbContext = b => b.UseSqlite(connectionString,
                    sql => sql.MigrationsAssembly(migrationsAssembly));
            })
            .AddInMemoryIdentityResources(Config.IdentityResources)
            .AddInMemoryApiScopes(Config.ApiScopes)
            .AddInMemoryClients(Config.Clients)
            //TODO remove
            .AddTestUsers(TestUsers.Users)
            .AddUdapDiscovery()
            .AddUdapServerConfiguration()
            .AddUdapConfigurationStore(options =>
            {
                options.UdapDbContext = b => b.UseSqlite(connectionString,
                    sql => sql.MigrationsAssembly(typeof(UdapDiscoveryEndpoint).Assembly.FullName));
            });

        return builder.Build();
    }
    
    public static WebApplication ConfigurePipeline(this WebApplication app)
    { 
        app.UseSerilogRequestLogging();
    
        if (app.Environment.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }

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

        app.MapPost("/connect/register", async (HttpContext httpContext, [FromServices] UdapDynamicClientRegistrationEndpoint endpoint) =>
        {
            //TODO:  Tests and response codes needed...    httpContext.Response
            await endpoint.Process(httpContext);
        })
        .AllowAnonymous()
        .Produces(StatusCodes.Status201Created)
        .Produces(StatusCodes.Status401Unauthorized);

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

        return app;
    }
}


Product 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.  net9.0 was computed.  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.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.5.16 178 10/13/2025
0.5.15 181 10/12/2025
0.5.14 103 10/10/2025
0.5.13 115 10/10/2025
0.5.12 117 10/10/2025
0.5.11 120 10/10/2025
0.5.10 183 9/14/2025
0.5.9 185 8/19/2025
0.5.8 178 8/18/2025
0.5.7 193 8/8/2025
0.5.5 179 7/15/2025
0.5.4 174 7/14/2025
0.5.3 131 7/11/2025
0.5.2 180 7/10/2025
0.5.1 165 7/9/2025
0.5.0 172 7/6/2025
0.4.12 116 7/5/2025
0.4.11 278 6/13/2025
0.4.10 326 6/12/2025
0.4.9 347 6/12/2025
0.4.8 181 6/3/2025
0.4.7 258 4/18/2025
0.4.6 393 3/17/2025
0.4.5 501 3/4/2025
0.4.4 258 1/15/2025
0.4.3 197 1/14/2025
0.4.2 187 1/14/2025
0.4.1 324 1/13/2025
0.4.0 217 12/14/2024
0.3.96 220 11/6/2024
0.3.95 198 11/2/2024
0.3.94 187 10/31/2024
0.3.93 369 10/13/2024
0.3.92 148 10/13/2024
0.3.91 185 10/10/2024
0.3.89 179 10/10/2024
0.3.87 158 10/5/2024
0.3.86 169 10/5/2024
0.3.85 149 10/4/2024
0.3.84 159 10/3/2024
0.3.83 168 10/3/2024
0.3.82 213 9/20/2024
0.3.81 165 9/19/2024
0.3.80 171 9/19/2024
0.3.79 181 9/19/2024
0.3.78 149 9/19/2024
0.3.77 174 9/17/2024
0.3.76 187 9/17/2024
0.3.75 179 9/12/2024
0.3.74 177 9/12/2024
0.3.73 195 9/10/2024
0.3.72 194 9/7/2024
0.3.71 193 9/5/2024
0.3.70 189 9/5/2024
0.3.69 204 9/5/2024
0.3.68 181 9/4/2024
0.3.67 164 9/4/2024
0.3.66 177 9/4/2024
0.3.65 160 9/4/2024
0.3.64 163 9/2/2024
0.3.63 191 8/31/2024
0.3.62 176 8/29/2024
0.3.61 195 8/28/2024
0.3.60 134 8/2/2024
0.3.59 143 8/1/2024
0.3.58 165 8/1/2024
0.3.57 189 7/19/2024
0.3.56 154 7/19/2024
0.3.54 158 7/18/2024
0.3.53 166 7/15/2024
0.3.52 166 7/15/2024
0.3.51 178 7/12/2024
0.3.50 181 7/1/2024
0.3.49 161 7/1/2024
0.3.48 205 5/22/2024
0.3.47 204 5/15/2024
0.3.46 167 5/14/2024
0.3.45 197 5/12/2024
0.3.44 176 5/12/2024
0.3.43 212 5/12/2024
0.3.42 197 5/12/2024
0.3.41 221 5/6/2024
0.3.40 221 5/4/2024
0.3.39 136 5/1/2024
0.3.38 173 4/30/2024
0.3.37 195 4/11/2024
0.3.36 198 4/10/2024
0.3.35 202 4/9/2024
0.3.34 173 4/8/2024
0.3.33 187 4/7/2024
0.3.32 195 4/5/2024
0.3.31 190 4/4/2024
0.3.30 179 4/4/2024
0.3.29 199 4/3/2024
0.3.28 145 4/3/2024
0.3.27 183 4/2/2024
0.3.26 175 4/2/2024
0.3.25 198 4/2/2024
0.3.24 220 3/24/2024
0.3.22 232 3/6/2024
0.3.21 210 3/6/2024
0.3.20 182 3/5/2024
0.3.19 203 3/2/2024
0.3.18 226 3/2/2024
0.3.13 194 3/1/2024
0.3.12 191 2/24/2024
0.3.10 190 2/14/2024
0.3.8 216 2/11/2024
0.3.7 175 2/11/2024
0.3.6 176 2/10/2024
0.3.5 193 2/10/2024
0.3.4 175 2/10/2024
0.3.2 191 2/10/2024
0.3.0 207 1/31/2024
0.2.21 291 10/24/2023
0.2.20 174 10/23/2023
0.2.19 195 10/20/2023
0.2.18 198 10/11/2023
0.2.17 192 10/5/2023
0.2.16 171 9/21/2023
0.2.15 183 9/21/2023
0.2.14 207 9/20/2023
0.2.13 198 9/20/2023
0.2.12 156 9/20/2023
0.2.11 188 9/19/2023
0.2.10 227 9/13/2023
0.2.9 309 8/26/2023
0.2.8 234 8/18/2023
0.2.7 213 8/15/2023
0.2.6 234 8/12/2023
0.2.5 248 8/11/2023
0.2.4 235 8/10/2023
0.2.3 231 8/2/2023
0.2.2 226 8/1/2023
0.2.1 259 7/25/2023
0.2.0 250 7/16/2023
0.1.24 248 5/26/2023
0.1.23 272 5/22/2023
0.1.22 221 5/22/2023
0.1.21 224 5/21/2023
0.1.20 250 5/20/2023
0.1.17 216 5/9/2023
0.1.16 229 5/6/2023
0.1.15 223 5/4/2023
0.1.14 246 5/2/2023
0.1.12 215 5/1/2023
0.1.11 254 4/29/2023
0.1.9 255 4/29/2023
0.1.8 234 4/29/2023
0.1.7 240 4/28/2023
0.1.6 247 4/27/2023
0.1.5 235 4/27/2023
0.1.4 261 4/25/2023
0.1.3 250 4/23/2023
0.1.2 266 4/22/2023
0.1.1 253 4/22/2023
0.0.4-preview040 235 4/21/2023
0.0.4-preview039 245 4/13/2023
0.0.4-preview038 215 4/11/2023
0.0.4-preview037 244 4/7/2023
0.0.4-preview036 236 3/31/2023
0.0.4-preview035 203 3/31/2023
0.0.4-preview034 209 3/31/2023
0.0.4-preview033 237 3/30/2023
0.0.4-preview032 242 3/19/2023
0.0.4-preview029 208 3/18/2023
0.0.4-preview028 225 3/15/2023
0.0.4-preview027 238 3/13/2023
0.0.4-preview026 187 3/12/2023
0.0.4-preview025 188 3/10/2023
0.0.4-preview024 255 3/9/2023
0.0.4-preview022 208 3/9/2023
0.0.4-preview021 233 3/7/2023
0.0.4-preview020 245 3/7/2023
0.0.4-preview019 228 3/4/2023
0.0.4-preview018 244 3/4/2023
0.0.4-preview017 229 3/4/2023
0.0.4-preview016 245 3/1/2023
0.0.4-preview015 229 2/28/2023
0.0.4-preview014 241 2/23/2023
0.0.4-preview013 216 2/23/2023
0.0.4-preview012 221 2/21/2023
0.0.4-preview011 244 2/20/2023
0.0.4-preview010 218 2/20/2023
0.0.4-preview009 235 2/19/2023
0.0.4-preview008 201 2/14/2023
0.0.4-preview007 216 2/10/2023
0.0.4-preview006 209 2/8/2023
0.0.4-preview005 255 2/8/2023
0.0.4-preview004 247 2/7/2023
0.0.4-preview003 206 2/7/2023
0.0.4-preview002 263 2/7/2023
0.0.4-preview001 264 2/3/2023
0.0.4-preview000 255 2/2/2023
0.0.3-preview032 244 2/1/2023
0.0.3-preview031 233 2/1/2023
0.0.3-preview030 238 1/30/2023
0.0.3-preview029 231 1/21/2023
0.0.3-preview028 231 1/19/2023
0.0.3-preview027 231 1/18/2023
0.0.3-preview026 221 1/16/2023
0.0.3-preview025 239 1/15/2023
0.0.3-preview024 245 1/15/2023
0.0.3-preview020 249 1/15/2023
0.0.3-preview019 239 1/11/2023
0.0.3-preview018 242 1/11/2023
0.0.3-preview017 242 1/7/2023
0.0.3-preview016 257 1/7/2023
0.0.3-preview015 259 1/6/2023
0.0.3-preview014 245 1/6/2023
0.0.3-preview013 231 1/6/2023
0.0.3-preview012 232 1/6/2023
0.0.3-preview011 204 1/6/2023
0.0.3-preview010 250 1/3/2023
0.0.3-preview009 236 1/3/2023
0.0.3-preview008 252 1/2/2023
0.0.3-preview007 244 1/2/2023
0.0.3-preview006 235 1/2/2023
0.0.3-preview005 248 1/2/2023
0.0.3-preview004 205 1/1/2023
0.0.3-preview003 242 12/31/2022
0.0.3-preview002 252 12/28/2022
0.0.3-preview001 299 12/21/2022
0.0.3-preview000 259 11/29/2022
0.0.2-preview003 196 11/4/2022
0.0.2-preview002 204 11/4/2022
0.0.2-preview000 225 11/4/2022
0.0.1-preview3373625764 282 11/1/2022
0.0.1-preview002 229 11/4/2022
0.0.1-preview001 211 11/4/2022