Activities of "balessi75"

Question

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi,

We've noticed that the default favicon in the templated solution (described above) does not show in Safari tabs. There is no issue in MS Edge or Google Chrome.

Any ideas or thoughts on this?

Thanks in advance,

Brian

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

The LockAsync method is not marked virtual and therefore cannot be overwritten. UnLockAsync is marked as virtual and is overridable.

Can this be made overridable in a future update?

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi,

The Role UI allows for a role name with a length up to 256 characters, however, the associated AbpPermissionGrants for the role, only allows for the ProviderKey column to have up to 64 characters. Since the role name is stored in the ProviderKey, an SQL exception can occur with long role names.

2023-08-07 22:16:16.993 +00:00 [ERR] An error occurred while saving the entity changes. See the inner exception for details.
Microsoft.EntityFrameworkCore.DbUpdateException: An error occurred while saving the entity changes. See the inner exception for details.
 ---> Microsoft.Data.SqlClient.SqlException (0x80131904): String or binary data would be truncated in table 'test_Web.dbo.AbpPermissionGrants', column 'ProviderKey'. Truncated value: 'Attendance & personal @#$%^&*()_+,.;'':"<>?/\!Updated to be 12345'.
   at Microsoft.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

When hosting an ABP application (Blazor Server), the Abp/ApplicationConfigurationScript endpoint appears to be publicly available, even for users that are not logged in (authenticated).

There is information here that an attacker could potentially exploit.

Please advise if we are misunderstanding something and/or if there are any recommendations in this matter.

Thanks in advance,

Brian

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi, We are trying to change the user's session cookie expiration from "session" to a limited time frame.

We added the following in our BlazorModule.cs implementation of the ConfigureServices() method, but the cookie always still has an expiration of "Session" when we view the cookie in the browser tools. What might we be missing?

Thanks in advance...

     context.Services.ConfigureApplicationCookie(ops =>
        {
            ops.Cookie.Name = "AspNetCore.Identity.Application";
            ops.ExpireTimeSpan = TimeSpan.FromMinutes(1);
            ops.SlidingExpiration = true;
        });

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

When saving a selected image from 'My Account' -> 'Profile Picture', the picture does not save. No errors occur on the UI or in the logs.

I reproduced the issue with a newly templated project: abp new ProfilePicIssue -u blazor-server -v 7.2.1

When I test with 7.0.1, everything works as expected. abp new ProfilePicIssue -u blazor-server -v 7.0.1

Something seems to have broke from v7.0.1 to v7.2.1.

Please provide confirmation of a fix as well as a possible work around for v7.2.1

Question

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi, We are seeing the following repeated many times in our log every time a user logs in. Is this standard behavior? The information doesn't note what requires authentication. Just curious if there is something we should be changing. We are using the default ABP templated logging settings in program.cs

DenyAnonymousAuthorizationRequirement: Requires an authenticated user.
2023-06-25 00:00:10.438 +00:00 [INF] AuthenticationScheme: Identity.Application was challenged.
2023-06-25 00:00:10.438 +00:00 [INF] Request finished HTTP/1.1 GET https://qa.nvisiononline.net/ - - - 302 - - 3.3881ms
2023-06-25 00:00:26.884 +00:00 [INF] Request starting HTTP/1.1 GET https://nvisionweb.azurewebsites.net/ - -
2023-06-25 00:00:26.887 +00:00 [INF] Authorization failed. These requirements were not met:

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi, on ABP Commercial 7.2.1, we are receiving the following. We reproduced the error with a newly created solution. abp new ABP.Test -u blazor-server -v 7.2.1 -theme lepton

Please advise.

Regards, Brian

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi, we have several extended properties on our tenant entity. How is the ordering of the columns on the list, create, and edit forms defined? We see a difference in the ordering of the columns. For example, the ordering of the columns in the tenant listing is different than the ordering on the create/edit modal.

Can the order of the rendered properties be customized?

Thanks in advance,

Brian

ABP Commercial 7.2.1 / Blazor Server / EF / Non tiered / Separate Host and Tenant DBs / Lepton Theme

Hi,

In 7.2.1, when a tree view node drop down item is clicked, previously opened drop down menu's don't close causing some confusion to the user. Depending on the overlaying of drop down menus, the user can get in a situation where a drop down menu can't be collapsed on their own.

Is there any way to have a previously opened dropdown menu be programmatically closed when a new one is opened?

Thanks in advance.

Brian

Showing 21 to 30 of 96 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13