Questions tagged [aspnetboilerplate]

Use this tag to ask questions about the previous ASP.NET Boilerplate, a web applications framework. Bug reports and feature requests should be posted to GitHub. For the successor use [tag:abp]

ASP.NET Boilerplate is an open source web application framework and the predecessor of .

Use GitHub for your bug reports and feature requests.

1376 questions
2
votes
0 answers

aspnetboilerplate failing stress test with transactional UoW

The stress test consists of calling the following API 500 times concurrently: [UnitOfWork(IsDisabled = true)] [AbpAllowAnonymous] public async Task StressTest(string input) { using (var uow = UnitOfWorkManager.Begin …
2
votes
0 answers

ASP.NET Boilerplate: ObjectDisposedException in EventHandler

I use ABP 5.1.0 .Net Core, I have my class ItemAsyncEventBaseHandler : IAsyncEventHandler, ITransientDependency where TEvent : EventData {…} Then i have class: CustomHandler: ItemAsyncEventBaseHandler { public CustomHandler( …
lufi
  • 21
  • 3
2
votes
0 answers

Redis backplane with SignalR and AspNetBoilerPlate

I have implemented SignalR with AspNetBoilerPlate with .Net core 3.1. We have an azure server with multiple instances. So I am trying to implement Redis. I followed this link and installed Microsoft.AspNetCore.SignalR.StackExchangeRedis…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
2
votes
0 answers

asp.net core version 5 boilerplate is working on production

Asp.net core boilerplate version 5 is not working on production. Following error occurred after publishing on server. Spin.js not present moment is not defined Cannot read properties of undefined (reading 'unspecifiedClockProvider') $ is not…
2
votes
2 answers

One to many relationship doesn`t retrieve data in entity framework

I`m in process of learning C# & .NET and EF (with aspnetboilerplate) and I came up with idea to create some dummy project so I can practice. But last 4 hour Im stuck with this error and hope someone here can help me. What I create( well at least I…
2
votes
1 answer

Swashbuckle Swagger Generator: StringBuilder out of Memory

We have a fairly sizable ASP.NET Boilerplate .NET Core 3.1 project and Swashbuckle appears to run out of memory when generating the Swagger JSON. We encounter the following error: RequestAborted: Exception of type 'System.OutOfMemoryException' was…
André Haupt
  • 3,294
  • 5
  • 32
  • 57
2
votes
2 answers

AsyncCrudAppService Breaks Swagger When Providing TCreateInput and TUpdateInput

I recently downloaded a Single Page Web Application (Angular) from https://aspnetboilerplate.com/Templates using 3.x target version. I just simply added a few entities and then started to follow the steps on this page…
Sean W.
  • 863
  • 5
  • 14
2
votes
1 answer

ASP.NET Boilerplate - Custom repository no longer working after upgrade

I have recently upgraded to the latest version of asp.net boilerplate. I have managed to fix all issues with the upgrade. The only issue left is that my custom repositories are no longer working. The error I am getting is "Context does not exist in…
Stanton Roux
  • 141
  • 1
  • 14
2
votes
0 answers

Too many dotnet processes with high memory use

I have just deployed an app to ubuntu server (aws - lightsail). When the app runs its creating multiple dotnet processes with high virtual memory. The app becomes really slow. Not inresponsive but really slow. You can notice multiple dotnet…
activebiz
  • 6,000
  • 9
  • 41
  • 64
2
votes
1 answer

Abp.Zero.Common, Version=6.0.0.0, Culture=neutra l, PublicKeyToken=null' does not have an implementation.”

System.TypeLoadException: “Method 'Get' in type 'Abp.DynamicEntityProperties. DynamicEntityPropertyValueStore' from assembly 'Abp.Zero.Common, Version=6.0.0.0, Culture=neutra l, PublicKeyToken=null' does not have an implementation.” How can I deal…
yuuuding
  • 31
  • 1
2
votes
0 answers

JWT Authentication in ABP

In asp.net boilerplate, I'm wondering, why there is an encryptedAccessToken in the api/TokenAuth/Authenticate method? there is no documentation on this. Also, the JWT is 1 day valid so: -is it secure to have this long time JWT? -what happen after…
Ramy Yousef
  • 2,982
  • 2
  • 25
  • 24
2
votes
1 answer

EventBus is not triggering event on ASP.NET Core using Abp

I am trying to use EventBus as described here. Here is my EventData class public class UpdateEntryEventData: EventData { public long? AttributeId { get; set; } public int? TenantId { get; set; } public Guid Id { get;…
2
votes
1 answer

How to get planned execution DateTime inside a Hangfire recurring job?

I'm trying to migrate an existing ABP project backed by Quartz.NET to Hangfire. I have a recurring job and I need to get the scheduled fire time inside the job. Note that I do not need the real execution time, but rather the expected one. Let’s…
2
votes
1 answer

How is code organized in the ABP framework?

I have some doubts about organizing code. I see two ways of organizing code: package by layer and package by component. http://www.codingthearchitecture.com/2015/03/08/package_by_component_and_architecturally_aligned_testing.html The ABP framework…
SAssassin
  • 23
  • 3
2
votes
0 answers

ASPNET CORE: Data Protection takes over 3 minutes when first time startup

My ASPNET CORE MVC startup is too slow, when I check the log file, there was a task that take over 3 mins as below. Could anyone give me some advice? INFO 2020-10-03 11:06:28,471 [1 ] taProtection.KeyManagement.XmlKeyManager - User profile is…
Hoang Tran
  • 886
  • 3
  • 13
  • 32