"arvind.srivastava.tas" की गतिविधियाँ

  • UI Type: Angular
  • Database System: EF Core (PostgreSQL, etc..)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, and please first use the search on the homepage. Provide us with the following info:

  • ABP Framework version: 7.4.2
  • UI Type: Angular /
  • Database System: EF Core (PostgreSQL.)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace: Timestamp - 03/07/2024 09:25:16 +00:00 | Level - Error | Message The operation was canceled. { "SourceContext": { "Value": "Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware" }, "RequestId": { "Value": "0HN1UG5GQEH55:00000005" }, "RequestPath": { "Value": "/invoice/api/InvoiceManagement/AR/FX/invoice/getInvoicesListByStatusId" }, "ConnectionId": { "Value": "0HN1UG5GQEH55" }, "TenantName": { "Value": "Product" } }

Exception - System.OperationCanceledException: The operation was canceled.

at System.Threading.CancellationToken.ThrowOperationCanceledException()

at Npgsql.Internal.NpgsqlConnector.g__DoStartUserAction|279_0(ConnectorState newState, NpgsqlCommand command, <&gt;c__DisplayClass279_0&)

at Npgsql.Internal.NpgsqlConnector.StartUserAction(ConnectorState newState, NpgsqlCommand command, CancellationToken cancellationToken, Boolean attemptPgCancellation)

at Npgsql.NpgsqlTransaction.Commit(Boolean async, CancellationToken cancellationToken)

at Microsoft.EntityFrameworkCore.Storage.RelationalTransaction.CommitAsync(CancellationToken cancellationToken)

at Microsoft.EntityFrameworkCore.Storage.RelationalTransaction.CommitAsync(CancellationToken cancellationToken)

at Volo.Abp.Uow.EntityFrameworkCore.EfCoreTransactionApi.CommitAsync(CancellationToken cancellationToken)

at Volo.Abp.Uow.UnitOfWork.CommitTransactionsAsync(CancellationToken cancellationToken)

at Volo.Abp.Uow.UnitOfWork.CompleteAsync(CancellationToken cancellationToken)

at Volo.Abp.AspNetCore.Uow.AbpUnitOfWorkMiddleware.InvokeAsync(HttpContext context, RequestDelegate next)

at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<b__1>d.MoveNext()

--- End of stack trace from previous location ---

at Volo.Abp.AspNetCore.ExceptionHandling.AbpExceptionHandlingMiddleware.InvokeAsync(HttpContext context, RequestDelegate next)

  • Steps to reproduce the issue:

Sample code we are using [Obsolete] public async Task&lt;List> GetListAsyncByStatusId( DateTime? fromDueDate, DateTime? toDueDate, bool isActive, int statusId = 0, string sorting = null, int maxResultCount = int.MaxValue, int skipCount = 0, string invoiceNumber = null, List buyerCodes = null, List BuyerMarketUserCodes = null, List invoiceCurreincies = null, List invoiceDueStatuses = null, List proofAvailables = null, CancellationToken cancellationToken = default) { var query = ApplyFilterByStatusId(DbSet, fromDueDate, toDueDate, isActive, statusId, invoiceNumber, buyerCodes, BuyerMarketUserCodes, invoiceCurreincies, invoiceDueStatuses, proofAvailables); query = query.OrderBy(string.IsNullOrWhiteSpace(sorting) ? InvoiceConsts.DefaultSorting : sorting); return await query.PageBy(skipCount, maxResultCount).ToListAsync(cancellationToken); }

Team - We need to create a new access management system that can control Data (for example customers) visibility on hierarchical users (Mapped to BusinessUnits). parent user can see all the Data (customer(s)) that belong to the user's BusinessUnits and its children's BusinessUnits as well For Example Use Case 1 - Anchor-Global can access and see all customer(s) data. Use Case 2 - Anchor-Asia can access and see only customer(s) related to NG and PK data. Use Case 3 - Anchor-Europe users can access and see only customer(s) related to France and Germany data.

Need your input or any references for the same. Your help will be appreciated in this regard.

  • ABP Framework version: v7.3.0
  • UI Type: Angular
  • Database System: EF Core (PostgreSQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace: Need your input or any sample code for the given requirement.
  • Steps to reproduce the issue:
Team - We need your help to fix this issue related to ASP.NET Core Data Protection and we are getting the below exception:

An exception was thrown while deserializing the token fail: Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery[7] An exception was thrown while deserializing the token. Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException: The antiforgery token could not be decrypted. ---> System.Security.Cryptography.CryptographicException: The key {6b4986b7-d78c-42ac-985c-551a682fb951} was not found in the key ring. For more information go to http://aka.ms/dataprotectionwarning at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.UnprotectCore(Byte[] protectedData, Boolean allowOperationsOnRevokedKeys, UnprotectStatus& status) at Microsoft.AspNetCore.DataProtection.KeyManagement.KeyRingBasedDataProtector.Unprotect(Byte[] protectedData) at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) --- End of inner exception stack trace --- at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgeryTokenSerializer.Deserialize(String serializedToken) at Microsoft.AspNetCore.Antiforgery.DefaultAntiforgery.GetCookieTokenDoesNotThrow(HttpContext httpContext)*

  • ABP Framework version: v7.3.0
  • UI type: Angular
  • DB provider: EF Core / Postgres
  • Tiered (MVC) or Auth Server Separated (Angular): Yes
  • Exception message and stack trace

Team - We need your help, Somehow we can not able to see the stack trace of the given exception. We have seen exception information under the table "AbpAuditLogs".

we are not able to see ValidationErrors details and need your help to locate the stack trace for these validation errors so that we can identify which props are invalid.

  • ABP Framework version: v7.3.0
  • UI type: Angular
  • DB provider: EF Core / Postgres
  • Tiered (MVC) or Auth Server Separated (Angular): Yes
  • Exception message and stack trace: Volo.Abp.Validation.AbpValidationException: ModelState is not valid! See ValidationErrors for details. at Volo.Abp.AspNetCore.Mvc.Validation.ModelStateValidator.Validate(ModelStateDictionary modelState) at Volo.Abp.AspNetCore.Mvc.Validation.AbpValidationActionFilter.OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.<InvokeNextActionFilterAsync>g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeNextExceptionFilterAsync>g__Awaited|25_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)

Team - We already have ABP.IO microservices which are internally using OpenIddict/IdentityServer for authentication and authorization. As part of the new requirement, we have to integrate WS02 API with our existing microservices (which are configured with OpenIddict/IdentityServer). We need your help to Need to Integrate OpenIddict/IdentityServer with WSO2 API.

Need your input or any references for the same. Your help will be appreciated in this regard.

  • ABP Framework version: v7.3.0
  • UI type: Angular
  • DB provider: EF Core / Postgres
  • Tiered (MVC) or Auth Server Separated (Angular): Yes
  • Exception message and stack trace: Need your input or any reference link for the same.
6 प्रविष्टियों में 1 से 6 दिखा रहा है
Made with ❤️ on ABP v8.2.0-preview Updated on मार्च 25, 2024, 15:11