Found 10 packages
Framework ServiceClient
Indiko Blocks Communication RestServiceClient
Client SDK for the Realtime service of Space Blocks
High-performance logging and distributed tracing client with Azure Service Bus integration. Designed for microservices requiring centralized observability with automatic batching, retry logic, and multi-tenant support.
Framework ServiceClient
Notification Service
Infrastructure for internal communication between services by HTTP protocol
PlatformData ClientService
Adds IAsyncOrganizationService and IAsyncDiscoveryService with async versions of interface methods to the CRM Dynamics SDK. When you call "IOrganizationService.Execute(request)" for instance, it blocks the current thread until the reply is received from the Dynamics CRM server. In case when multiple such operations are running in parallel the app will use too many worker threads (because they are blocked) and will start suffer from performance degradation due to thread exhaustion. To avoid this issue, it's better not to block threads and process server responses as soon as they are available. This extension library allows you to do this using Task Parrallel Library (TPL) and asynchronous calls to Dynamics CRM server, e.g. "await IAsyncOrganizationService.ExecuteAsync(request, cancellationToken)". To use you need to create an async version of the client (Microsoft.Xrm.Sdk.Client.Async.AsyncOrganizationServiceProxy, Microsoft.Xrm.Sdk.Client.Async.AsyncDiscoveryServiceProxy, Microsoft.Xrm.Sdk.WebServiceClient.Async.OrganizationWebProxyAsyncClient, Microsoft.Xrm.Sdk.WebServiceClient.Async.DiscoveryWebProxyAsyncClient) which does asynchronous WCF calls to the service. GitHub project: https://github.com/tyrotoxin/Microsoft.Xrm.Sdk.Async
Global Exception Handler Middleware for .NET Core The Global Exception Handler Middleware for .NET Core is a comprehensive middleware solution designed to enhance the readability and maintainability of your .NET Core web API projects by handling exceptions globally. This middleware eliminates the need for repetitive try-catch blocks in each unit, ensuring a cleaner and more efficient codebase. Key Features: Global Exception Handling: Automatically manages exceptions across your entire application without the need for manual intervention in each endpoint. Exception Types Supported: Server-side Exceptions: BadGatewayException ServiceUnavailableException InternalServerException Client-side Exceptions: BadRequestException ForbiddenException NotFoundException UnauthorizedException Other Exceptions: DomainException BusinessLogicException HTTP Status Code Management: Each exception class includes an appropriate HTTP status code, ensuring accurate error representation and consistency in API responses. Structured API Responses: Generates API responses in a structured format, providing detailed error messages, developer notes, and stack traces when exceptions occur. Logging Integration: Logs exceptions using a customizable logging mechanism (_logger.LogError($"Something went wrong {e.Message}")), facilitating effective monitoring and troubleshooting. Usage: Simply integrate the middleware into your .NET Core application pipeline to benefit from seamless exception handling and standardized error responses across your entire API. Get Started: Improve error management in your .NET Core projects today with the Global Exception Handler Middleware. Simplify development, enhance maintainability, and deliver robust APIs effortlessly.