IdentityServer / IdentityServer3.Admin.EntityFramework

Apache License 2.0
12 stars 30 forks source link

UI shows up, but nothing seems to work. #15

Closed danielwagn3r closed 8 years ago

danielwagn3r commented 8 years ago

I'm trying to configure the IdentityAdmin w/ EntityFramework but somehow I can't work it out.

I've created a custom IdentityAdminService class, like in the Host example

public class IdentityAdminManagerService : IdentityAdminCoreManager<IdentityClient, int, IdentityScope, int>
{
  public IdentityAdminManagerService(string connectionString)
    : base(connectionString)
    {
    }
}

and using it in the Startup.cs as follows:

var factory = new IdentityAdminServiceFactory
{
  IdentityAdminService = new Registration<IIdentityAdminService, IdentityAdminManagerService>(configurationDbConnectionStringName)
};

When browsing to the application the IdentityAdmin UI shows up, but I can't do anything there and also the already configured clients and scopes aren't visble.

Can you give me a hint where to look further?

madhavabhyankar commented 8 years ago

Check this out. That has WSFed - which you dont need.