Activities of "viswajwalith"

We have created new controller called passwordless2

Please share code of passwordless2

using System;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Volo.Abp.AspNetCore.Mvc;
using Volo.Abp.Identity;
using Volo.Abp.Identity.AspNetCore;

namespace Passwordless2Authentication.Web.Controllers
{
    public class Passwordless2Controller : AbpController
    {
        protected IdentityUserManager UserManager { get; }

        protected AbpSignInManager SignInManager { get; }

        public Passwordless2Controller(IdentityUserManager userManager, AbpSignInManager signInManager)
        {
            UserManager = userManager;
            SignInManager = signInManager;
        }

        public virtual async Task<IActionResult> Login(string token, string userId)
        {
            var user = await UserManager.FindByIdAsync(userId);

            var isValid = await UserManager.VerifyUserTokenAsync(user, "PasswordlessLoginProvider", "passwordless-auth", token);
            if (!isValid)
            {
                throw new UnauthorizedAccessException("The token " + token + " is not valid for the user " + userId);
            }

            await UserManager.UpdateSecurityStampAsync(user);

            await SignInManager.SignInAsync(user, isPersistent: false);

            return Redirect("/");
        }
    }
}
``

We have created new controller called passwordless2 and tried ur code, but getting the below error. are we missing anything?

Error Log: 2021-09-16 13:19:50.105 +00:00 [INF] Request starting HTTP/2 GET https://localhost:44321/Passwordless2/Login?token=727076&userId=bc89cb04-d25d-651e-9417-39fcb9258fd3 - - 2021-09-16 13:19:50.121 +00:00 [INF] Executing endpoint 'Passwordless2Authentication.Web.Controllers.Passwordless2Controller.Login (Exceego.EHSWatch.AppV3.Web)' 2021-09-16 13:19:50.121 +00:00 [INF] Route matched with {action = "Login", controller = "Passwordless2", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.IActionResult] Login(System.String, System.String) on controller Passwordless2Authentication.Web.Controllers.Passwordless2Controller (Exceego.EHSWatch.AppV3.Web). 2021-09-16 13:19:50.125 +00:00 [INF] Executed action Passwordless2Authentication.Web.Controllers.Passwordless2Controller.Login (Exceego.EHSWatch.AppV3.Web) in 4.0034ms 2021-09-16 13:19:50.126 +00:00 [INF] Executed endpoint 'Passwordless2Authentication.Web.Controllers.Passwordless2Controller.Login (Exceego.EHSWatch.AppV3.Web)' 2021-09-16 13:19:50.130 +00:00 [ERR] An unhandled exception has occurred while executing the request. Autofac.Core.DependencyResolutionException: An exception was thrown while activating Passwordless2Authentication.Web.Controllers.Passwordless2Controller. ---> Autofac.Core.DependencyResolutionException: None of the constructors found with 'Volo.Abp.Autofac.AbpAutofacConstructorFinder' on type 'Passwordless2Authentication.Web.Controllers.Passwordless2Controller' can be invoked with the available services and parameters: Cannot resolve parameter 'Volo.Abp.Identity.AspNetCore.AbpSignInManager signInManager' of constructor 'Void .ctor(Volo.Abp.Identity.IdentityUserManager, Volo.Abp.Identity.AspNetCore.AbpSignInManager)'. at Autofac.Core.Activators.Reflection.ReflectionActivator.GetAllBindings(ConstructorBinder[] availableConstructors, IComponentContext context, IEnumerable1 parameters) at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IComponentContext context, IEnumerable1 parameters) at Autofac.Core.Activators.Reflection.ReflectionActivator.<ConfigurePipeline>b__11_0(ResolveRequestContext ctxt, Action1 next) at Autofac.Core.Resolving.Middleware.DisposalTrackingMiddleware.Execute(ResolveRequestContext context, Action1 next) at Autofac.Builder.RegistrationBuilder3.<>c__DisplayClass41_0.<PropertiesAutowired>b__0(ResolveRequestContext ctxt, Action1 next) at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action1 next) --- End of inner exception stack trace --- at Autofac.Core.Resolving.Middleware.ActivatorErrorHandlingMiddleware.Execute(ResolveRequestContext context, Action1 next) at Autofac.Core.Resolving.Middleware.SharingMiddleware.Execute(ResolveRequestContext context, Action1 next) at Autofac.Core.Resolving.Middleware.CircularDependencyDetectorMiddleware.Execute(ResolveRequestContext context, Action1 next) at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifetimeScope currentOperationScope, ResolveRequest request) at Autofac.Core.Resolving.ResolveOperation.ExecuteOperation(ResolveRequest request) at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context, Service service, IEnumerable1 parameters, Object& instance) at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Service service, IEnumerable1 parameters) at Microsoft.AspNetCore.Mvc.Controllers.ServiceBasedControllerActivator.Create(ControllerContext actionContext) at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass5_0.<CreateControllerFactory>g__CreateController|0(ControllerContext controllerContext) 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) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ExceptionContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeNextResourceFilter() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Rethrow(ResourceExecutedContextSealed context) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.InvokeFilterPipelineAsync() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.<InvokeAsync>g__Logged|17_1(ResourceInvoker invoker) at Microsoft.AspNetCore.Routing.EndpointMiddleware.<Invoke>g__AwaitRequestTask|6_0(Endpoint endpoint, Task requestTask, ILogger logger) at Microsoft.AspNetCore.Builder.Extensions.MapMiddleware.Invoke(HttpContext context) at Elsa.Activities.Http.Middleware.RequestHandlerMiddleware1.InvokeAsync(HttpContext httpContext, THandler handler) at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) at Volo.Abp.AspNetCore.Serilog.AbpSerilogMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<<UseMiddlewareInterface>b__1>d.MoveNext() --- End of stack trace from previous location --- at Volo.Abp.AspNetCore.MultiTenancy.MultiTenancyMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<<UseMiddlewareInterface>b__1>d.MoveNext() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) at Prometheus.HttpMetrics.HttpRequestDurationMiddleware.Invoke(HttpContext context) at Prometheus.HttpMetrics.HttpRequestCountMiddleware.Invoke(HttpContext context) at Prometheus.HttpMetrics.HttpInProgressMiddleware.Invoke(HttpContext context) at Volo.Abp.AspNetCore.Tracing.AbpCorrelationIdMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<<UseMiddlewareInterface>b__1>d.MoveNext() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Localization.RequestLocalizationMiddleware.Invoke(HttpContext context) at Microsoft.AspNetCore.RequestLocalization.AbpRequestLocalizationMiddleware.InvokeAsync(HttpContext context, RequestDelegate next) at Microsoft.AspNetCore.Builder.UseMiddlewareExtensions.<>c__DisplayClass6_1.<<UseMiddlewareInterface>b__1>d.MoveNext() --- End of stack trace from previous location --- at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware.Invoke(HttpContext context) 2021-09-16 13:19:50.139 +00:00 [INF] Request finished HTTP/2 GET https://localhost:44321/Passwordless2/Login?token=727076&userId=bc89cb04-d25d-651e-9417-39fcb9258fd3 - - - 500 - text/html;+charset=utf-8 33.7823ms

Did you define claims for the user that try to login passwordless, like here?
These claims are required for user and role specific permissions.

Yes we did but still will cross verify and get back to you

This is what we had in out code

after login, I kept the display of claims in home page

You can see role is coming as admin.

Our actual menu will look like something below

Did you define claims for the user that try to login passwordless, like here? These claims are required for user and role specific permissions.

Yes we did but still will cross verify and get back to you

Hi @viswajwalith, there is a community article about passwordless authentication, you can read from here. Can you check it and ensure there are not any steps that you missed?

Hi we already followed that but that is for Application Template, when we implemented the same in Micro service template facing the above issue mentioned

  • ABP Framework version: v4.2.X
  • UI type: MVC
  • DB provider: EF Core / MongoDB
  • Tiered (MVC) or Identity Server Separated (Angular): yes / no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Hello, We are trying to implement passwordless sign-in refer to this link (https://github.com/abpframework/abp-samples/tree/master/PasswordlessAuthentication). On Successful sign and redirect to the home page page, we are unable to see our application menus it seems some permission issues. Can you help us lettig us know if we missed any? Do we suppose to do any kind of callback after sign-in Do we suppose to add any extra claim to this login portion of code (https://github.com/abpframework/abp-samples/blob/master/PasswordlessAuthentication/src/PasswordlessAuthentication.Web/Controllers/PasswordlessController.cs)

I tried thsi as well, but no luck. Please find my updated docker file and let us know anything else also need to be done

#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.

FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
ENV DOTNET_USE_POLLING_FILE_WATCHER 1
WORKDIR /src
#COPY ["nuget.config", "."]
RUN dotnet tool install -g dotnet-serve
ENV PATH="${PATH}:/root/.dotnet/tools"
RUN dotnet tool install --global Volo.Abp.Cli
RUN abp login "USERNAME" -p "PASSWORD"
COPY ["gateways/internal/src/Exceego.EHSWatch.AppV3.InternalGateway/Exceego.EHSWatch.AppV3.InternalGateway.csproj", "gateways/internal/src/Exceego.EHSWatch.AppV3.InternalGateway/"]
COPY ["shared/Exceego.EHSWatch.AppV3.Shared.Hosting.Gateways/Exceego.EHSWatch.AppV3.Shared.Hosting.Gateways.csproj", "shared/Exceego.EHSWatch.AppV3.Shared.Hosting.Gateways/"]
COPY ["shared/Exceego.EHSWatch.AppV3.Shared.Hosting.AspNetCore/Exceego.EHSWatch.AppV3.Shared.Hosting.AspNetCore.csproj", "shared/Exceego.EHSWatch.AppV3.Shared.Hosting.AspNetCore/"]
COPY ["shared/Exceego.EHSWatch.AppV3.Shared.Hosting/Exceego.EHSWatch.AppV3.Shared.Hosting.csproj", "shared/Exceego.EHSWatch.AppV3.Shared.Hosting/"]
RUN dotnet restore "gateways/internal/src/Exceego.EHSWatch.AppV3.InternalGateway/Exceego.EHSWatch.AppV3.InternalGateway.csproj"
COPY . .
WORKDIR "/src/gateways/internal/src/Exceego.EHSWatch.AppV3.InternalGateway"
RUN dotnet build "Exceego.EHSWatch.AppV3.InternalGateway.csproj" -c Release -o /app/build

FROM build AS publish
RUN dotnet publish "Exceego.EHSWatch.AppV3.InternalGateway.csproj" -c Release -o /app/publish

FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "Exceego.EHSWatch.AppV3.InternalGateway.dll"]

I tried but not able to make it running? can you share the abp-docker-yaml mentioned in https://gist.github.com/ebicoglu/f7cd77069fa053cbe9cf9e9ffcc2f2d2

HI

Can you try to StartWithoutDebugging instead of StartDebugging?

https://docs.microsoft.com/en-us/visualstudio/containers/launch-profiles?view=vs-2019#create-a-launch-profile-that-uses-a-docker-compose-profile

In Fact I already tried

With this Even logs are not genereated + application also not working.

Let me know if you would like to have a screen share.

hi

Can you share the steps(screenshots) of how you run the container?

To start with I am trying to run the internalgateway , for that Adding the diocker file to Project

Docker file will be created

Now add Container Orchestrator support

docker compose will be created

open docker-compose.override.yml and change the ASPNETCORE_ENVIRONMENT to "Production"

updated the program.cs to get further info

click on dockercompose to run the solution in docker

you can see the application in docker

Log:

The Environment is :Production Mode=Release [03:34:09 INF] Starting Exceego.EHSWatch.AppV3.InternalGateway. [03:34:12 WRN] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of the container. Protected data will be unavailable when container is destroyed. [03:34:12 INF] User profile is available. Using '/root/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest. [03:34:12 INF] Creating key {04418a65-c934-47bb-ac1d-748d68b6e9e3} with creation date 2021-09-16 03:34:12Z, activation date 2021-09-16 03:34:12Z, and expiration date 2021-12-15 03:34:12Z. [03:34:12 WRN] No XML encryptor configured. Key {04418a65-c934-47bb-ac1d-748d68b6e9e3} may be persisted to storage in unencrypted form. [03:34:12 INF] Writing data to file '/root/.aspnet/DataProtection-Keys/key-04418a65-c934-47bb-ac1d-748d68b6e9e3.xml'. [03:34:12 INF] Loaded ABP modules: [03:34:12 INF] - Exceego.EHSWatch.AppV3.InternalGateway.AppV3InternalGatewayModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.Shared.Hosting.Gateways.AppV3SharedHostingGatewaysModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.Shared.Hosting.AspNetCore.AppV3SharedHostingAspNetCoreModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.Shared.Hosting.AppV3SharedHostingModule [03:34:12 INF] - Volo.Abp.Autofac.AbpAutofacModule [03:34:12 INF] - Volo.Abp.Castle.AbpCastleCoreModule [03:34:12 INF] - Volo.Abp.Data.AbpDataModule [03:34:12 INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule [03:34:12 INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule [03:34:12 INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule [03:34:12 INF] - Volo.Abp.Uow.AbpUnitOfWorkModule [03:34:12 INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule [03:34:12 INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule [03:34:12 INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule [03:34:12 INF] - Volo.Abp.Security.AbpSecurityModule [03:34:12 INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule [03:34:12 INF] - Volo.Abp.Auditing.AbpAuditingModule [03:34:12 INF] - Volo.Abp.Json.AbpJsonModule [03:34:12 INF] - Volo.Abp.Timing.AbpTimingModule [03:34:12 INF] - Volo.Abp.Localization.AbpLocalizationModule [03:34:12 INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule [03:34:12 INF] - Volo.Abp.Settings.AbpSettingsModule [03:34:12 INF] - Volo.Abp.Threading.AbpThreadingModule [03:34:12 INF] - Volo.Abp.Http.AbpHttpModule [03:34:12 INF] - Volo.Abp.Http.AbpHttpAbstractionsModule [03:34:12 INF] - Volo.Abp.Minify.AbpMinifyModule [03:34:12 INF] - Volo.Abp.Authorization.AbpAuthorizationModule [03:34:12 INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule [03:34:12 INF] - Volo.Abp.Validation.AbpValidationModule [03:34:12 INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule [03:34:12 INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule [03:34:12 INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule [03:34:12 INF] - Volo.Abp.Application.AbpDddApplicationContractsModule [03:34:12 INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule [03:34:12 INF] - Volo.Abp.UI.AbpUiModule [03:34:12 INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule [03:34:12 INF] - Volo.Abp.Application.AbpDddApplicationModule [03:34:12 INF] - Volo.Abp.Domain.AbpDddDomainModule [03:34:12 INF] - Volo.Abp.EventBus.AbpEventBusModule [03:34:12 INF] - Volo.Abp.Guids.AbpGuidsModule [03:34:12 INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule [03:34:12 INF] - Volo.Abp.Specifications.AbpSpecificationsModule [03:34:12 INF] - Volo.Abp.Features.AbpFeaturesModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy.AbpAspNetCoreMvcUiMultiTenancyModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.AbpAspNetCoreMvcUiThemeSharedModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.AbpAspNetCoreMvcUiBootstrapModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.AbpAspNetCoreMvcUiModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.Packages.AbpAspNetCoreMvcUiPackagesModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingAbstractionsModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.Widgets.AbpAspNetCoreMvcUiWidgetsModule [03:34:12 INF] - Volo.Abp.AspNetCore.Mvc.UI.Bundling.AbpAspNetCoreMvcUiBundlingModule [03:34:12 INF] - Volo.Abp.AspNetCore.MultiTenancy.AbpAspNetCoreMultiTenancyModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ProductService.ProductServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ProductService.ProductServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ProductService.ProductServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.IdentityService.IdentityServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.IdentityService.IdentityServiceApplicationContractsModule [03:34:12 INF] - Volo.Abp.Identity.AbpIdentityApplicationContractsModule [03:34:12 INF] - Volo.Abp.Identity.AbpIdentityProDomainSharedModule [03:34:12 INF] - Volo.Abp.Identity.AbpIdentityDomainSharedModule [03:34:12 INF] - Volo.Abp.Users.AbpUsersDomainSharedModule [03:34:12 INF] - Volo.Abp.Users.AbpUsersAbstractionModule [03:34:12 INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementApplicationContractsModule [03:34:12 INF] - Volo.Abp.PermissionManagement.AbpPermissionManagementDomainSharedModule [03:34:12 INF] - Volo.Abp.IdentityServer.AbpIdentityServerApplicationContractsModule [03:34:12 INF] - Volo.Abp.IdentityServer.AbpIdentityServerDomainSharedModule [03:34:12 INF] - Volo.Abp.Account.AbpAccountAdminApplicationContractsModule [03:34:12 INF] - Volo.Abp.Account.AbpAccountSharedApplicationContractsModule [03:34:12 INF] - Volo.Abp.Ldap.AbpLdapModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.IdentityService.IdentityServiceDomainSharedModule [03:34:12 INF] - Volo.Abp.Identity.AbpIdentityHttpApiModule [03:34:12 INF] - Volo.Abp.IdentityServer.AbpIdentityServerHttpApiModule [03:34:12 INF] - Volo.Abp.Account.AbpAccountAdminHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.SaasService.SaasServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.SaasService.SaasServiceApplicationContractsModule [03:34:12 INF] - Volo.Saas.Tenant.SaasTenantApplicationContractsModule [03:34:12 INF] - Volo.Saas.SaasDomainSharedModule [03:34:12 INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementDomainSharedModule [03:34:12 INF] - Volo.Payment.AbpPaymentDomainSharedModule [03:34:12 INF] - Volo.Saas.Host.SaasHostApplicationContractsModule [03:34:12 INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementApplicationContractsModule [03:34:12 INF] - Volo.Payment.AbpPaymentApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.SaasService.SaasServiceDomainSharedModule [03:34:12 INF] - Volo.Saas.Host.SaasHostHttpApiModule [03:34:12 INF] - Volo.Abp.FeatureManagement.AbpFeatureManagementHttpApiModule [03:34:12 INF] - Volo.Payment.AbpPaymentHttpApiModule [03:34:12 INF] - Volo.Saas.Tenant.SaasTenantHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.AdministrationService.AdministrationServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.AdministrationService.AdministrationServiceApplicationContractsModule [03:34:12 INF] - Volo.Abp.SettingManagement.AbpSettingManagementApplicationContractsModule [03:34:12 INF] - Volo.Abp.SettingManagement.AbpSettingManagementDomainSharedModule [03:34:12 INF] - Volo.Abp.AuditLogging.AbpAuditLoggingApplicationContractsModule [03:34:12 INF] - Volo.Abp.AuditLogging.AbpAuditLoggingDomainSharedModule [03:34:12 INF] - Volo.Abp.LeptonTheme.Management.LeptonThemeManagementApplicationContractsModule [03:34:12 INF] - Volo.Abp.LeptonTheme.Management.LeptonThemeManagementDomainSharedModule [03:34:12 INF] - Volo.Abp.LanguageManagement.LanguageManagementApplicationContractsModule [03:34:12 INF] - Volo.Abp.LanguageManagement.LanguageManagementDomainSharedModule [03:34:12 INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementApplicationContractsModule [03:34:12 INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.AdministrationService.AdministrationServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ObservationsService.ObservationsServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ObservationsService.ObservationsServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.UserTaskService.UserTaskServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.UserTaskService.UserTaskServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.IncidentService.IncidentServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.IncidentService.IncidentServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ActionService.ActionServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ActionService.ActionServiceDomainSharedModule [03:34:12 INF] - Volo.Abp.PermissionManagement.HttpApi.AbpPermissionManagementHttpApiModule [03:34:12 INF] - Volo.Abp.SettingManagement.AbpSettingManagementHttpApiModule [03:34:12 INF] - Volo.Abp.AuditLogging.AbpAuditLoggingHttpApiModule [03:34:12 INF] - Volo.Abp.LeptonTheme.LeptonThemeManagementHttpApiModule [03:34:12 INF] - Volo.Abp.LanguageManagement.LanguageManagementHttpApiModule [03:34:12 INF] - Volo.Abp.TextTemplateManagement.TextTemplateManagementHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.EmployeeService.EmployeeServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.EmployeeService.EmployeeServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.EmployeeService.EmployeeServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.BbsService.BbsServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.BbsService.BbsServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.BbsService.BbsServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.IncidentService.IncidentServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.AttachmentService.AttachmentServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.AttachmentService.AttachmentServiceApplicationContractsModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.AttachmentService.AttachmentServiceDomainSharedModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ObservationsService.ObservationsServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.ActionService.ActionServiceHttpApiModule [03:34:12 INF] - Exceego.EHSWatch.AppV3.UserTaskService.UserTaskServiceHttpApiModule [03:34:13 ERR] ABP-LIC-0008 - License check failed for 'Volo.Abp.AuditLogging.HttpApi-v4.4.0.0'. You need to log in using the command abp login <username>. For more information, contact to license@abp.io. [03:34:13 INF] Application is shutting down... [03:34:13 INF] Initialized all ABP modules.

Showing 211 to 220 of 315 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30