Hi,
Did you try dotnet clean
?
See https://github.com/abpframework/abp-samples/blob/abd1a864f273523640853362581c65cb85f5ac5b/DomainTenantResolver/MVC-TIERED/src/Acme.BookStore.Web/BookStoreWebModule.cs#L162
Hi,
Use HTTP will get some problems,we don't recommend using HTTP. HTTPS is best way.
If you still use HTTP, please refer: https://community.abp.io/articles/patch-for-chrome-login-issue-identityserver4-samesite-cookie-problem-weypwp3n
Hi,
Are you using tiered architecture? if not, you just need configure auto api controllers for public project.
private void ConfigureAutoApiControllers()
{
Configure<AbpAspNetCoreMvcOptions>(options =>
{
options.ConventionalControllers.Create(typeof(MyProjectNameApplicationModule).Assembly);
});
}
If you are using tiered architecture, you can create a controller to call appservice, e.g:
public class ProductController : MyProjectNameController
{
private readonly IProductAppService _productAppService;
public ProductController(IProductAppService productAppService)
{
_productAppService = productAppService;
}
public async Task<IActionResult> GetListAsync()
{
return Json(await _productAppService.GetListAsync())
}
}
Hi,
Can you share the error stack? thanks.
Hi,
You can upgrade to 4.3.x, we have done confirm user UI in 4.3.0
Hi,
Why you can't access IIdentityRoleRepository
? Can you explain the structure of your project
HI,
Can I check it remotely? shiwei.liang@volosoft.com
Hi, @viswajwalith
Yes we can have a remote metting. shiwei.liang@volosoft.com