Questions tagged [abp]

ABP is an open source application framework focused on ASP.NET Core based web application development, but also supports developing other types of applications.

The ABP Framework is a complete infrastructure based on the ASP.NET Core to create modern web applications and APIs. It is the next generation of the open source ASP.NET Boilerplate framework.

For documentation visit: https://abp.io/documents/abp/latest

811 questions
24
votes
2 answers

Which is the real ASP.NET Boilerplate project?

Might be a dumb question for many but we are thinking of adopting ASP.NET Boilerplate for our next project. Just a bit confused as there seems to be 2 different websites for it and 2 different Git repositories. First one is…
DP001
  • 371
  • 2
  • 7
10
votes
2 answers

IdentityServer 4, how to add Custom Login page

I wish to customize the IdentityServer 4 and use custom pages for login / registration / lost password / etc... ( FYI, I use Blazor, but it should be the same ! ). Example By example, for now, I use the following code: Challenge(authProps,…
ClubberLang
  • 1,624
  • 3
  • 21
  • 45
6
votes
1 answer

How to seed an AppUser in abp framework

I'm trying to seed and AppUser with Entity framework database in using the abp.framework (version 3). I know how to seed a IdentityUser using IdentityUserManager but can not find any documentation of how to seed an entity that extends abpUser like…
Ryan Layton
  • 161
  • 1
  • 7
6
votes
1 answer

Which design pattern Abp Framework (abp.io) are developers using?

At my company we are using the brand new Abp framework (abp.io). As it's a new framework, lots of documents are missing so we have to search at source code. Looking so much at the code I realized that's a pattern they're using that always appears…
carlosza
  • 365
  • 2
  • 9
5
votes
2 answers

ABP Framework HttpApi.Host failure in K8S deployment with nginx reverse proxy

I have deployed the ABP framework in a Kubernetes cluster. Following deployments are present: Redis MSSql AuthServer HttpApi.Host Nginx ingress / reverse proxy with https termination, no encryption within the cluster. Hence, the AuthServer,…
kungcc
  • 1,832
  • 5
  • 25
  • 48
4
votes
1 answer

Data seeder throw an error after add new Not null foreign key to abp user table

I created a new required foreign key column for the AbpUsers table; the problem started when I ran the data seeder. it is throwing the following error: Cannot insert the value NULL into column 'TimeZoneId', table 'dbo.AbpUsers'; column does not…
Jesus
  • 331
  • 1
  • 4
  • 19
4
votes
2 answers

Adding Value Object to EF Entity - The entity type cannot be configured as owned because it has already been configured as a non-owned

We are getting the following error, which only seems to occur when datetimes are added to the value object. 'The entity type 'TimeWindow' cannot be configured as owned because it has already been configured as a non-owned. If you want to override…
Jame
  • 131
  • 2
  • 7
4
votes
1 answer

Failed connection handshake and 500 error when refreshing page - Abp Zero with Angular and .Net Core

When I log into the application, angular changes the ulr to https://baseurl/app/home and the home page renders correctly. If I refresh the page I get a server (500) error. if I remove the /app/home part in the address bar and refresh, the page…
Hagbourne
  • 96
  • 7
4
votes
1 answer

Correct Implementation of Forgot Password AspNetBoilerPlate

Im using aspnetboilerplate (MVC) and wanted to implement a forgot password feature to allow the user to reset their own passwords using a link on the login screen. I imagine this to work by generating a password reset code which is then emailed to…
PowerMan2015
  • 1,307
  • 5
  • 19
  • 40
4
votes
0 answers

Integrated LDAP login in the abp framework

How to give the LDAP account the default role, now the LDAP account login default role is admin Integrated LDAP login in the abp framework public async override Task CreateUserAsync(string userNameOrEmailAddress, Tenant tenant) { await…
chinasky
  • 41
  • 1
3
votes
0 answers

How to assign value in protected set declaration like creatorId in abp io .net

I am using .net abp io. I have a problem to assign a protected set like creatorId. Below is the sample: public virtual Guid? CreatorId { get; protected set; } My code in service : var status = new rejectStatus()` { Id = query.Id, RejectDate…
amer 123
  • 33
  • 3
3
votes
2 answers

ABP Framework: Background Job Disable Retry

I am using background job for some definition operations. Some of the definitions can completed in 2 minutes, some in 10 minutes. I don't want it to retry on fail. The job shouldn't retry when it success or failed.Is it possible ? Thanks.
moonlight
  • 33
  • 2
3
votes
1 answer

Abp.io angular project. Swagger page loads, but all calls return 500 internal server error

I created an angular abp.io application. I mainly followed step for a blazor app in this tutorial. see tut. The db and api are hosted on azure. Everything runs correctly locally. The remote database is updated. There are no CORS errors. The logs.txt…
3
votes
2 answers

About using DomainService

I cannot fully understand in which case I will use DomainService and in which case ApplicationService. Your documents are not detailed enough on this subject. Can you give a more detailed explanation with an example? What could be a problem if I…
shvy
  • 33
  • 3
3
votes
3 answers

ABP/Swashbuckle - Generating swagger docs using Swashbuckle CLI

Using ABP Framework (3.3) and ASP.NET Core (3.1). I'm attempting to generate swagger.json using Swashbuckle.AspNetCore.Cli (https://github.com/domaindrivendev/Swashbuckle.AspNetCore#retrieve-swagger-directly-from-a-startup-assembly) after compiling…
1
2 3
53 54