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 ?
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?
@Anjali_Musmade please kindly help on this, this issue has been blocking to your critical path in license evaluation process.
greatly appreciated for your help
My peer created another ticket that reported the same issue. we can close this ticket and continue with his #7537, thanks. https://abp.io/support/questions/7537/Authorsrazor-and-Authorsrazorcs-in-AcmeBookStore
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:
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
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)