Activities of "EngincanV"

  1. With SignalR automated reconnect turned on in the HUB connection, how can i know when a user has disconnected from the application rather then having lost connection and trying to reconnect?

Frankly speaking, I'm not sure you can do this with 100% correctness. However, you may create a temporary table/queue, push the current disconnected user to the queue, then read from the queue in a specific time interval, and check if there is an audit log there is related to the user after adding it to the queue. So, you can check if its really leave the application or temporarily disconnected.

  1. How do you handle hub connection in the Chat Module, is there any standard you use in Blazor WASM?

You can download the chat module's source code and use its hub by your needs or you can follow the approach I suggested above.

  1. If multiple hubs are registered, would they interfere with each others or live independetly without problems?

They should live independently without problems.


Using SignalR might be hard to maintain and ensure user leaved the application or not. Maybe you can search for another approach for your use case. For example, you might use beforeunload event on the JS side (https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event), or use a similar approach for the Blazor WASM.

Regards.

Hi again,

I created a new microservice and started to use it. Can you refund my ticket please?

Hi, sure. I have refunded your ticket:

Can you confirm that your problem is resolved, so, I can close the question?

Answer

Hi, it seems the appsettings.json path is wrong:

Can you please share your *.DbContextFactory class? (and do you use MacOS or Windows?)

Can we deploy and run app on IIS with http?

Hi, yes you can there is no restriction for that. We have an IIS Deployment documentation, you can check this document.

Note: If IIS is not accepting HTTP traffic, you may need to run (https://learn.microsoft.com/en-us/windows/win32/http/add-urlacl):

netsh http add urlacl url=http://*:<yourapplicationport>/ user=Everyone

Regards.

Hi, I've checked your appsettings.json files and the values seem correct. Sometimes, Azure overwrites appsettings.json values. So, by any chance, can you check the Configuration section in the Azure Portal:

  1. Navigate to Azure Portal → App Service (for each of your apps).
  2. Go to ConfigurationApp Settings.
  3. Ensure that values like AuthServer:Authority, App:SelfUrl, and RemoteServices:Default:BaseUrl are pointing to the new domain.

Btw, I have also checked https://account.pekkish.net/.well-known/openid-configuration and all values are correct, and they are not referencing the old azurewebsites.net address.

Hi,

No, these entities must be in Identity Microservice and we will create releations with other AbpUser tables.

Okay. I will test your case and try to write you back asap.

let me try to create an new project and check again.

Thanks. I'll wait for your response.

Hi, for the pre-existing microservice solutions are designed to use the ABP's relevant modules. By any chance, can you create a new microservice and generate your CRUD pages in that microservice. In that case, you will get better integration with the ABP Suite, by design.

Regards.

i fixed the error by adding

                ValidateAudience = false 

and now policy.RequireAuthenticatedUser(); is working fine

but when i used

policy.RequireRole("Admin");

i get 403 error

plz advise.

Hi, I'm currently testing, I will write you back asap.

Regards.

Creating a new project and adding a new entity to it works as expected. One of my teammates is still capable of running CRUDs on the same project using abp on a MAC with Cli@0.9.21 and suite@9.0.2 Is there any other configuration I could check to fix my project?

Hi, it is really weird that your teammate is capable of generating CRUD pages, but you are not. Can you share more information about the entity metadata?

For example:

  • Entity Name: Book
  • Properties: Name (string), PublishDate (DateTime)
  • Has 1-n or n-n relationship etc.

Also, do you have any recent solutions in this list (that might be moved to another directory)?

Showing 531 to 540 of 1371 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.1.0-preview. Updated on November 07, 2025, 08:20