0
OwinStartup.csSimpleInjectorが動作しない - ウェブAPIをOWINに
public class OwinStartup
{
internal static IDataProtectionProvider DataProtectionProvider { get; private set; }
public void Configuration(IAppBuilder app)
{
DataProtectionProvider = app.GetDataProtectionProvider();
var config = new HttpConfiguration();
SimpleInjectorConfig.Configure(app);
ConfigureOAuth(app);
WebApiConfig.Register(config);
app.UseCors(CorsOptions.AllowAll);
app.UseWebApi(config);
}
private static void ConfigureOAuth(IAppBuilder app)
{
app.CreatePerOwinContext(
() => (IDisposable)GlobalConfiguration.Configuration.DependencyResolver.GetService(
typeof(AppUserManager)));
var options = new OAuthAuthorizationServerOptions
{
TokenEndpointPath = new PathString("/Token"),
Provider = new AppAuthProvider(),
AllowInsecureHttp = true,
};
app.UseOAuthAuthorizationServer(options);
app.UseOAuthBearerAuthentication(new OAuthBearerAuthenticationOptions());
}
}
SimpleInjectorConfig.cs
AppUserManager
のインスタンスを取得しようとしている
AppAuthProvider
イムと呼ばれる
OAuthAuthorizationServerProvider
の私のimplemenationでそう
public static class SimpleInjectorConfig
{
public static void Configure(IAppBuilder app)
{
var container = new Container();
container.Options.DefaultScopedLifestyle = new AsyncScopedLifestyle();
//allows scoped instances to be resolved during OWIN request
app.Use(async (context, next) =>
{
using (AsyncScopedLifestyle.BeginScope(container))
{
await next();
}
});
container.Register<AppIdentityDbContext>(Lifestyle.Scoped);
container.Register<AppUserManager>(Lifestyle.Scoped);
container.Register(
() =>
container.IsVerifying
? new OwinContext().Authentication
: HttpContext.Current.GetOwinContext().Authentication, Lifestyle.Scoped);
container.Register<AppSignInManager>(Lifestyle.Scoped);
container.Verify();
GlobalConfiguration.Configuration.DependencyResolver =
new SimpleInjectorWebApiDependencyResolver(container);
}
}
(Iユーザーを見つける必要があります)
var manager = context.OwinContext.Get<AppUserManager>();
しかし、なぜ私はまだnull
を取得するか分からない。すべてのことが正しく設定されているように私は本当に何をすべきか分からない。何か案は ?ありがとう!
[Web APIとOWINでのシンプルインジェクタの使用]の複製があります(http://stackoverflow.com/questions/28230951/using-simple-injector-in-web-api-and-owin) – Martin
私はまだ「ヌル」になっていた。 'IDisposable'の代わりに' AppUserManager'にキャストすると問題が解決します。 – Bardr