Base solution for your next web application

Activities of "maliming"

hi

can you explain why the method should be virtual for it to work?

Castle Windsor's interceptor can only intercept:

  1. All public or public virtual methods for classes that are used over an interface (Like an application service used over a service interface).
  2. All public virtual methods for self-injected classes (Like MVC Controllers and Web API Controllers).
  3. All protected virtual methods.

Because application services will use classes as MVC controllers, virtual methods are needed.

I wasn't expecting virtual, cause for AbpAuthorize we do not need to make it virtual. Can you elaborate on that?

Abp also uses MVC filters to intercept method calls. It does not require virtual methods. It is only suitable for controllers or Pages.

https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.AspNetCore/AspNetCore/Mvc/Authorization/AbpAuthorizationFilter.cs#L54

hi

Please make the GetOffers method virtual. in this way the Interceptor will works.

public virtual async Task<GetOffersForMobileOutput> GetOffers(GetOffersForMobileInput input)

unAuthorizedRequest will be true when AbpAuthorizationException happened. this is by design,

hi

I got your project, Please share some necessary steps, Thanks.

hi cangunaydin

Can you share a project and steps to reproduce the problem? [email protected]

You can copy your code to the demo project.

hi cangunaydin

I don't think you need to create additional interceptors and attributes. You can continue to use abpauthorize, you need to try to authenticate the second jwt in startup.

app.UseAuthentication();
app.UseJwtTokenMiddleware();
app.UseJwtTokenMiddleware("AssociateBearer");

The ConfigureServices method of startup class.

services.PostConfigure<MvcOptions>(mvcOptions =>
{
    mvcOptions.Conventions.RemoveType<AbpAppServiceConvention>();
    mvcOptions.Conventions.Add(new MyAbpAppServiceConvention(services));
});

The MyAbpAppServiceConvention: https://gist.github.com/maliming/b252b1cf23db538769e87f7434945057

hi

Can you try to the code of this PR? https://github.com/aspnetboilerplate/aspnetboilerplate/pull/6114

Answer

hi kansoftware

There is no sample at the moment, you can try to get help on Google or identity server community.

https://github.com/aspnetzero/aspnet-zero-core/pull/3764

hi @conzepta

I will add some comment to IDesignTimeDbContextFactory

Showing 1 to 10 of 2993 entries