Activities of "manchi"

We would like to implement a notification widget as an ABP module that displays a popup in the top right corner of the screen. This could be achieved using messaging (async), pub/sub, or WebSocket for real-time updates. Please advise on any existing modules or examples that can help us implement this functionality, as shown in the screenshot below. kindly advise on how we could leverage on the abp framework to implement such notification feature ?

  • Exception message and full stack trace:
  • Steps to reproduce the issue:

currently we are using the dotnet 8 and blazor webassembly. the performance is very very slow. the user always needs to wait for a long time for loading the WASM, before able to see any content on the browser screen.

may I know how we could increase the performance of the loading the WASM on browser?

  • is it possible to reduce the size of the WASM?
  • or can we preload the WASM at the background?
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
  • ABP Framework version: v8.2
  • UI Type: Blazor WASM
  • Database System: EF Core (sqlite)
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

I am using Abp Commercial framework to create the Acme BookStore sample following the Web Application Development Tutorial. I chose the No tiered mode. However, when I reached step 9 of the tutorial, involving Authors.razor and Authors.razor.cs, I encountered numerous errors that prevent the application from running.

I would like to ask if anyone else has faced these issues and if there are any solutions available.

Note: I have resolved the issue, no action is required further but I am happy to share my lesson learned to avoid others going through the pain!

if you have encountered the SSL connection error while following the ABP commercial installation note. it is probably due to missing CA certificate in your environment. I have resolved this issue with the following instructions, and I would like to share it with you:

Error Message

System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid because of errors in the certificate chain: UntrustedRoot

Resolution

Environment environment is very critical, this resolution is probably only work on Ubuntu. I would recommend you to use Github Codespace which has free tier with .NET template available.

$ uname -a Linux codespaces-fee234 6.5.0-1022-azure #23~22.04.1-Ubuntu SMP Thu May 9 17:59:24 UTC 2024 x86_64 GNU/Linux

execute the following command line in terminal

$dotnet tool install -g Volo.Abp.Cli $abp login <username> $abp suite install $sudo apt update $sudo apt install nodejs npm $npm install --global yarn $abp new Acme.BookStore -t app-pro -u blazor -dbms SQLite $sudo -E dotnet dev-certs https -ep /usr/local/share/ca-certificates/aspnet/https.crt --format PEM $sudo update-ca-certificates $cd src/Acme.BookStore.DbMigrator $dotnet run $cd src/Acme.BookStore.HttpApi.Host $dotnet run (in background) $cd src/Acme.BookStore.Blazor $dotnet run (in background)

Showing 1 to 4 of 4 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 01, 2025, 08:37