Thanks you for a quick response to this and also the created ticket on GitHub. And yes, I fully understand that keeping docs updated is somewhat of a PIA.
Since we seem to agree about the need for this, I guess this ticket should be refunded :)
Sure. I have refunded your ticket :)
Best regards.
Hi, thanks for your suggestion. As you said, some parts of the documentation might be outdated. Therefore, we need to revise all of our Angular documents from that perspective. I have created an issue for that and assigned it to a member of our angular team, which you can follow the progress from https://github.com/abpframework/abp/issues/22092.
We are revising and updating our documents whenever possible but as you know it's really hard to maintain such a big documentation system. Thanks for your understanding, in advance.
Best regards.
Hi,
I can't seem to be able to download the Chat Module source code, could you kindly send it to my email or explain the approach you used in the module?
Thanks.
In the chat module, there is a hub class called ChatHub and we simply use it to trigger a socket connection (for sending a message, deleting a conversation, and deleting a message on the server side, and on the client side doing the receiving events). Creating a new hub and using its DisconnectAsync is what comes to my mind as the first solution.
However, investigating the other options can be better, because it might be hard to maintain and understand if the user really disconnected temporarily or permanently. Since this is not related to ABP, I'm sorry to not being able to answer with a concrete solution.
Regards.
Is this a known issue when reverting from source code to package reference?
Hi, no similar issue has been reported before. When you revert back to using NuGet packages, it should work as expected.
To confirm your problem, can you answer the questions below:
*.BlazorServer project depends on the typeof(SaasHostBlazorServerModule),?*.Application project depends on the typeof(SaasHostApplicationModule),?i fixed the error by adding
ValidateAudience = falseand now
policy.RequireAuthenticatedUser();is working finebut when i used
policy.RequireRole("Admin");i get 403 error
plz advise.
Hi, tried with the exact code that you shared and it worked smoothly. By any chance, is there a typo or case-sensitivity in your Admin role?
Hi, @EngincanV. As requested, I've sent the application code and added a bit of context to the issue mentioned here.
Let me know if you need anything else, thanks!
Hi again @bmulinari, I'm trying to download the application but it says "page not found" when clicking to the link and providing the password. Can you please check it and let me know about the final status?
Regards.
Hi, currently it should work. Here is my test result:
namespace AbpSolution6;
[Dependency(ReplaceServices = true)]
public class AbpSolution6BrandingProvider : DefaultBrandingProvider
{
public override string? LogoUrl { get; } = "/images/logo/new-logo.png";
}
Can you access the image file through your browser? (https://localhost:<your-port>/images/logo/logo2.png) If you can, you may clear the browser cache.
Hi
Thank you very much for the insight. That worked! There were no values as stated above actually on the Azure Portal. But i added them in any case, which forced the URLs and that worked!
Regards!
Great to hear that! Regards.
I am getting this error after deployment
Volo.Abp.AbpInitializationException: An error occurred during ConfigureServicesAsync phase of the module Volo.Abp.OpenIddict.AbpOpenIddictAspNetCoreModule, Volo.Abp.OpenIddict.AspNetCore, Version=9.0.2.0, Culture=neutral, PublicKeyToken=null. See the inner exception for details. ---> System.Security.Cryptography.CryptographicException: The specified network password is not correct.
Can you please check this thread for this problem?