Open Closed

IIS Deployment with Angular app #9446


User avatar
0
antoni.obrados created

I'm publishing the application on IIS. I followed the manual you have: https://abp.io/docs/commercial/8.1/startup-templates/application/deployment-iis?UI=NG&DB=EF&Tiered=No I don't understand why the Auth is separated when my project doesn't have it. I think the problem is the redirection of the Angular app is the problem. because in the backend there are the calls that are made from the Angular app: https://localhost:7511/.well-known/openid-configuration

https://localhost:7511/api/abp/application-configuration?includeLocalizationResources=false

Angular site

Why redirect to port 44374

The backend work fine:

Start

Make login

Backend work Ok

swagger

Thanks for all.


49 Answer(s)
  • User Avatar
    0
    AI-Bot created
    Support Team AI Bot

    Based on your screenshots and description, the main issue is that your Angular application is trying to call the OpenID Connect configuration and application configuration endpoints on the wrong port (44374), even though your backend is running on port 7511. This is a configuration issue, not related to the separation of AuthServer (since you are using a non-tiered template).

    Here’s how to resolve it:

    1. Check Angular Environment Configuration

      • In your environment.prod.ts (or the environment file used for production), ensure the oAuthConfig.issuer, redirectUri, and API URLs point to the correct backend port (7511), not 44374.
      • Example:
        export const environment = {
          production: true,
          application: {
            baseUrl: 'https://localhost:7511',
            name: 'YourAppName',
          },
          oAuthConfig: {
            issuer: 'https://localhost:7511',
            redirectUri: 'https://localhost:7511',
            clientId: 'YourAppName_App',
            responseType: 'code',
            scope: 'offline_access openid profile email phone YourAppName',
          },
          apis: {
            default: {
              url: 'https://localhost:7511',
              rootNamespace: 'YourAppName',
            },
          },
        };
        
      • Rebuild and redeploy your Angular app after making these changes.
    2. Check appsettings.json in Backend

      • Make sure the App:SelfUrl, App:AngularUrl, and AuthServer:Authority are all set to https://localhost:7511 (or your deployed domain).
      • Example:
        "App": {
          "SelfUrl": "https://localhost:7511",
          "AngularUrl": "https://localhost:7511",
          "CorsOrigins": "https://localhost:7511"
        },
        "AuthServer": {
          "Authority": "https://localhost:7511",
          "RequireHttpsMetadata": "false"
        }
        
    3. Clear Browser Cache

      • After updating and redeploying, clear your browser cache or use an incognito window to avoid cached configuration issues.
    4. No Need for AuthServer Separation

      • In a non-tiered template, the same backend serves both API and authentication endpoints. You do not need a separate AuthServer.
    5. IIS Rewrite Rules

      • Ensure your IIS rewrite rules (if any) do not redirect or rewrite requests to the wrong port.
    6. Verify Application Configuration

      • After deployment, open the browser console and network tab to confirm that all requests are being made to the correct port/domain.

    By ensuring all URLs in both Angular and backend configurations match your deployed backend port/domain, the redirection and CORS issues should be resolved.

    Sources:


    This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.

  • User Avatar
    0
    antoni.obrados created

    Angular: Configuración del environment:

    appsettings del Backend:

    Once the changes are made, I get the following error. ! imagen.png

    When you accept the error and try to login, this error appears.

    What am I doing wrong?

  • User Avatar
    0
    alper created
    Support Team Director

    what's your backend logs?

  • User Avatar
    0
    antoni.obrados created

    There are no logs, the folder is empty.

  • User Avatar
    0
    alper created
    Support Team Director

    probably authentication server address or port is wrong. this one

  • User Avatar
    0
    antoni.obrados created

    It must be the port where the backend is located, right? Well, that port is the backend's port.

    I think the backend is working correctly. The account login on port 7511 works correctly, without errors.

    what else can I look at?

    Regards

  • User Avatar
    0
    berkansasmaz created
    Support Team .NET Developer

    Hi,

    Thank you for the information you have provided. In addition, can you share the log records of the backend host application?

  • User Avatar
    0
    antoni.obrados created

    How can I attach the log? It's too big to put it here.

  • User Avatar
    0
    antoni.obrados created

    2025-06-11 13:07:21.424 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:07:21.629 +02:00 [INF] Application started. Press Ctrl+C to shut down. 2025-06-11 13:07:21.629 +02:00 [INF] Hosting environment: Production 2025-06-11 13:07:21.629 +02:00 [INF] Content root path: C:\inetpub\MTG_SetupWizardWebsite 2025-06-11 13:07:21.952 +02:00 [INF] Completed to save external localizations. 2025-06-11 13:07:22.225 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.260 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/openid-configuration - null null 2025-06-11 13:07:22.260 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/.well-known/openid-configuration - 204 null null 872.2819ms 2025-06-11 13:07:22.267 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.331 +02:00 [INF] The request URI matched a server endpoint: "Configuration". 2025-06-11 13:07:22.338 +02:00 [INF] The configuration request was successfully extracted: {}. 2025-06-11 13:07:22.340 +02:00 [INF] The configuration request was successfully validated. 2025-06-11 13:07:22.560 +02:00 [INF] The response was successfully returned as a JSON document: { "issuer": "https://localhost:7511/", "authorization_endpoint": "https://localhost:7511/connect/authorize", "token_endpoint": "https://localhost:7511/connect/token", "introspection_endpoint": "https://localhost:7511/connect/introspect", "end_session_endpoint": "https://localhost:7511/connect/endsession", "revocation_endpoint": "https://localhost:7511/connect/revocat", "userinfo_endpoint": "https://localhost:7511/connect/userinfo", "device_authorization_endpoint": "https://localhost:7511/device", "jwks_uri": "https://localhost:7511/.well-known/jwks", "grant_types_supported": [ "authorization_code", "implicit", "password", "client_credentials", "refresh_token", "urn:ietf:params:oauth:grant-type:device_code", "LinkLogin", "Impersonation" ], "response_types_supported": [ "code", "code id_token", "code id_token token", "code token", "id_token", "id_token token", "token", "none" ], "response_modes_supported": [ "query", "form_post", "fragment" ], "scopes_supported": [ "openid", "offline_access", "email", "profile", "phone", "roles", "address", "MTGCorp" ], "claims_supported": [ "aud", "exp", "iat", "iss", "sub" ], "id_token_signing_alg_values_supported": [ "RS256" ], "code_challenge_methods_supported": [ "plain", "S256" ], "subject_types_supported": [ "public" ], "prompt_values_supported": [ "consent", "login", "none", "select_account" ], "token_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "introspection_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "revocation_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "device_authorization_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "claims_parameter_supported": false, "request_parameter_supported": false, "request_uri_parameter_supported": false, "tls_client_certificate_bound_access_tokens": false, "authorization_response_iss_parameter_supported": true }. 2025-06-11 13:07:22.569 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/.well-known/openid-configuration - 200 2427 application/json;charset=UTF-8 309.1748ms 2025-06-11 13:07:22.572 +02:00 [INF] Request starting HTTP/2 OPTIONS https://localhost:7511/.well-known/jwks - null null 2025-06-11 13:07:22.573 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.573 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/.well-known/jwks - 204 null null 1.1519ms 2025-06-11 13:07:22.596 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/jwks - null null 2025-06-11 13:07:22.597 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.598 +02:00 [INF] The request URI matched a server endpoint: "JsonWebKeySet". 2025-06-11 13:07:22.600 +02:00 [INF] The JSON Web Key Set request was successfully extracted: {}. 2025-06-11 13:07:22.602 +02:00 [INF] The JSON Web Key Set request was successfully validated.

  • User Avatar
    0
    antoni.obrados created

    2025-06-11 13:07:21.424 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:07:21.629 +02:00 [INF] Application started. Press Ctrl+C to shut down. 2025-06-11 13:07:21.629 +02:00 [INF] Hosting environment: Production 2025-06-11 13:07:21.629 +02:00 [INF] Content root path: C:\inetpub\MTG_SetupWizardWebsite 2025-06-11 13:07:21.952 +02:00 [INF] Completed to save external localizations. 2025-06-11 13:07:22.225 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.260 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/openid-configuration - null null 2025-06-11 13:07:22.260 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/.well-known/openid-configuration - 204 null null 872.2819ms 2025-06-11 13:07:22.267 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.331 +02:00 [INF] The request URI matched a server endpoint: "Configuration". 2025-06-11 13:07:22.338 +02:00 [INF] The configuration request was successfully extracted: {}. 2025-06-11 13:07:22.340 +02:00 [INF] The configuration request was successfully validated. 2025-06-11 13:07:22.560 +02:00 [INF] The response was successfully returned as a JSON document: { "issuer": "https://localhost:7511/", "authorization_endpoint": "https://localhost:7511/connect/authorize", "token_endpoint": "https://localhost:7511/connect/token", "introspection_endpoint": "https://localhost:7511/connect/introspect", "end_session_endpoint": "https://localhost:7511/connect/endsession", "revocation_endpoint": "https://localhost:7511/connect/revocat", "userinfo_endpoint": "https://localhost:7511/connect/userinfo", "device_authorization_endpoint": "https://localhost:7511/device", "jwks_uri": "https://localhost:7511/.well-known/jwks", "grant_types_supported": [ "authorization_code", "implicit", "password", "client_credentials", "refresh_token", "urn:ietf:params:oauth:grant-type:device_code", "LinkLogin", "Impersonation" ], "response_types_supported": [ "code", "code id_token", "code id_token token", "code token", "id_token", "id_token token", "token", "none" ], "response_modes_supported": [ "query", "form_post", "fragment" ], "scopes_supported": [ "openid", "offline_access", "email", "profile", "phone", "roles", "address", "MTGCorp" ], "claims_supported": [ "aud", "exp", "iat", "iss", "sub" ], "id_token_signing_alg_values_supported": [ "RS256" ], "code_challenge_methods_supported": [ "plain", "S256" ], "subject_types_supported": [ "public" ], "prompt_values_supported": [ "consent", "login", "none", "select_account" ], "token_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "introspection_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "revocation_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "device_authorization_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "claims_parameter_supported": false, "request_parameter_supported": false, "request_uri_parameter_supported": false, "tls_client_certificate_bound_access_tokens": false, "authorization_response_iss_parameter_supported": true }. 2025-06-11 13:07:22.569 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/.well-known/openid-configuration - 200 2427 application/json;charset=UTF-8 309.1748ms 2025-06-11 13:07:22.572 +02:00 [INF] Request starting HTTP/2 OPTIONS https://localhost:7511/.well-known/jwks - null null 2025-06-11 13:07:22.573 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.573 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/.well-known/jwks - 204 null null 1.1519ms 2025-06-11 13:07:22.596 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/jwks - null null 2025-06-11 13:07:22.597 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:07:22.598 +02:00 [INF] The request URI matched a server endpoint: "JsonWebKeySet". 2025-06-11 13:07:22.600 +02:00 [INF] The JSON Web Key Set request was successfully extracted: {}. 2025-06-11 13:07:22.602 +02:00 [INF] The JSON Web Key Set request was successfully validated.

  • User Avatar
    0
    antoni.obrados created

    2025-06-11 13:07:41.686 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:07:41.687 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:07:51.700 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:07:51.700 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:01.703 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:08:01.704 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:11.711 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:08:11.711 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:21.710 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:08:21.711 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:31.721 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:08:31.722 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:41.731 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:08:41.732 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:45.328 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/ - null null 2025-06-11 13:08:45.333 +02:00 [INF] Executing endpoint '/Index' 2025-06-11 13:08:45.341 +02:00 [INF] Route matched with {page = "/Index", area = "", controller = "", action = ""}. Executing page /Index 2025-06-11 13:08:45.341 +02:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2025-06-11 13:08:45.356 +02:00 [INF] Executing handler method MTGCorp.Pages.IndexModel.OnGetAsync - ModelState is "Valid" 2025-06-11 13:08:45.385 +02:00 [INF] Executed handler method OnGetAsync, returned result . 2025-06-11 13:08:45.388 +02:00 [INF] Executing an implicit handler method - ModelState is "Valid" 2025-06-11 13:08:45.388 +02:00 [INF] Executed an implicit handler method, returned result Microsoft.AspNetCore.Mvc.RazorPages.PageResult. 2025-06-11 13:08:45.495 +02:00 [INF] Executed page /Index in 153.7243ms 2025-06-11 13:08:45.495 +02:00 [INF] Executed endpoint '/Index'

  • User Avatar
    0
    antoni.obrados created

    2025-06-11 13:08:50.076 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 314.7113ms 2025-06-11 13:08:50.076 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2025-06-11 13:08:50.170 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ServiceProxyScript - 200 76110 application/javascript 410.7017ms 2025-06-11 13:08:50.187 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js?_v=638852368521615748 - 200 956396 application/javascript 459.631ms 2025-06-11 13:08:50.274 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/moment.min.js.map; - null null 2025-06-11 13:08:50.281 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/moment.min.js.map; - 302 null null 7.3704ms 2025-06-11 13:08:50.281 +02:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:7511/__bundles/moment.min.js.map;, Response status code: 302 2025-06-11 13:08:50.324 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - null null 2025-06-11 13:08:50.326 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-11 13:08:50.326 +02:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2025-06-11 13:08:50.328 +02:00 [INF] Executing ViewResult, running view ~/Views/Error/404.cshtml. 2025-06-11 13:08:50.335 +02:00 [INF] Executed ViewResult - view ~/Views/Error/404.cshtml executed in 6.8452ms. 2025-06-11 13:08:50.335 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared) in 8.4009ms 2025-06-11 13:08:50.335 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-11 13:08:50.335 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - 404 null text/html; charset=utf-8 11.0205ms 2025-06-11 13:08:51.734 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:08:51.734 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:08:58.741 +02:00 [INF] Request starting HTTP/2 POST https://localhost:7511/Account/Login - application/x-www-form-urlencoded 278 2025-06-11 13:08:58.753 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:08:58.786 +02:00 [INF] Executing endpoint '/Account/Login' 2025-06-11 13:08:58.787 +02:00 [INF] Route matched with {page = "/Account/Login", area = "", controller = "", action = ""}. Executing page /Account/Login 2025-06-11 13:08:58.787 +02:00 [INF] Skipping the execution of current filter as its not the most effective filter implementing the policy Microsoft.AspNetCore.Mvc.ViewFeatures.IAntiforgeryPolicy 2025-06-11 13:08:58.799 +02:00 [INF] Executing handler method Volo.Abp.Account.Public.Web.Pages.Account.LoginModel.OnPostAsync - ModelState is "Valid" 2025-06-11 13:08:59.303 +02:00 [INF] Try to use LDAP for external authentication 2025-06-11 13:08:59.304 +02:00 [WRN] Ldap login feature is not enabled! 2025-06-11 13:08:59.309 +02:00 [INF] Try to use OAUTH for external authentication 2025-06-11 13:09:01.734 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-11 13:09:01.735 +02:00 [INF] Notification is sent on same window time. 2025-06-11 13:09:04.351 +02:00 [INF] AuthenticationScheme: Identity.Application signed in. 2025-06-11 13:09:04.576 +02:00 [INF] Executed handler method OnPostAsync, returned result Microsoft.AspNetCore.Mvc.RedirectResult. 2025-06-11 13:09:04.600 +02:00 [INF] Executing RedirectResult, redirecting to /. 2025-06-11 13:09:04.600 +02:00 [INF] Executed page /Account/Login in 5812.7727ms 2025-06-11 13:09:04.600 +02:00 [INF] Executed endpoint '/Account/Login' 2025-06-11 13:09:04.741 +02:00 [INF] Request finished HTTP/2 POST https://localhost:7511/Account/Login - 302 null null 6000.0156ms 2025-06-11 13:09:04.744 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/ - null null 2025-06-11 13:09:04.910 +02:00 [INF] Executing endpoint '/Index'

  • User Avatar
    0
    antoni.obrados created

    2025-06-11 13:09:08.359 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2025-06-11 13:09:08.359 +02:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2025-06-11 13:09:08.373 +02:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2025-06-11 13:09:08.373 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 13.8906ms 2025-06-11 13:09:08.373 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2025-06-11 13:09:08.376 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-11 13:09:08.376 +02:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2025-06-11 13:09:08.377 +02:00 [INF] Executing ViewResult, running view ~/Views/Error/404.cshtml. 2025-06-11 13:09:08.381 +02:00 [INF] Executed ViewResult - view ~/Views/Error/404.cshtml executed in 4.2144ms. 2025-06-11 13:09:08.382 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared) in 5.2873ms 2025-06-11 13:09:08.382 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-11 13:09:08.383 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2025-06-11 13:09:08.383 +02:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2025-06-11 13:09:08.430 +02:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2025-06-11 13:09:08.430 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 46.7819ms 2025-06-11 13:09:08.430 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2025-06-11 13:09:08.431 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - 404 null text/html; charset=utf-8 79.7893ms 2025-06-11 13:09:08.450 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ApplicationConfigurationScript - 200 10265 application/javascript 143.6456ms 2025-06-11 13:09:08.459 +02:00 [INF] Sending file. Request path: 'libs/moment/locale/es.js'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs\moment\locale\es.js.br' 2025-06-11 13:09:08.459 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-11 13:09:08.459 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/moment/locale/es.js?_v=638851347739523158 - 200 1166 text/javascript 159.6404ms 2025-06-11 13:09:08.463 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ApplicationLocalizationScript?cultureName=es - 200 83938 application/javascript 158.4724ms 2025-06-11 13:09:08.464 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ServiceProxyScript - 200 76110 application/javascript 119.2132ms 2025-06-11 13:09:08.486 +02:00 [INF] Sending file. Request path: '/__bundles/Volo.Abp.Account.Public.Web.Pages.Account.ManageModel.8DF4C9E6F8394D127F72F22FC1F41525.js'. Physical path: 'N/A' 2025-06-11 13:09:08.506 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.B7C02D525514EF2E1F839ED1E31F96BC.css?_v=638852368516488803 - 200 365653 text/css 248.9219ms 2025-06-11 13:09:08.614 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null 2025-06-11 13:09:08.614 +02:00 [INF] Sending file. Request path: '/Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'N/A' 2025-06-11 13:09:08.617 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - null null 2025-06-11 13:09:08.617 +02:00 [INF] CORS policy execution successful. 2025-06-11 13:09:08.634 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 20.1319ms 2025-06-11 13:09:08.648 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-11 13:09:08.650 +02:00 [INF] Sending file. Request path: 'libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs@fortawesome\fontawesome-free\webfonts\fa-solid-900.woff2' 2025-06-11 13:09:08.650 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-11 13:09:08.671 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 - 200 158220 font/woff2 53.8085ms 2025-06-11 13:09:08.704 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js?_v=638852368521615748 - 200 956396 application/javascript 441.8052ms 2025-06-11 13:09:08.824 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/moment.min.js.map; - null null 2025-06-11 13:09:08.833 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/moment.min.js.map; - 302 null null 9.1366ms 2025-06-11 13:09:08.833 +02:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:7511/__bundles/moment.min.js.map;, Response status code: 302 2025-06-11 13:09:08.841 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - null null 2025-06-11 13:09:08.850 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/Volo.Abp.Account.Public.Web.Pages.Account.ManageModel.8DF4C9E6F8394D127F72F22FC1F41525.js?_v=638852369481683753 - 200 1448386 application/javascript 516.2746ms 2025-06-11 13:09:08.851 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-11 13:09:08.853 +02:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2025-06-11 13:09:08.854 +02:00 [INF] Executing ViewResult, running view ~/Views/Error/404.cshtml. 2025-06-11 13:09:08.859 +02:00 [INF] Executed ViewResult - view ~/Views/Error/404.cshtml executed in 4.6718ms. 2025-06-11 13:09:08.859 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared) in 6.4997ms 2025-06-11 13:09:08.859 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-11 13:09:08.860 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - 404 null text/html; charset=utf-8 18.6666ms 2025-06-11 13:09:08.984 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/images/logo/leptonx/icon.svg - null null 2025-06-11 13:09:09.053 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/uppy.min.js.map - null null 2025-06-11 13:09:09.056 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-11 13:09:09.057 +02:00 [INF] Sending file. Request path: 'images/logo/leptonx/icon.svg'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\images\logo\leptonx\icon.svg.br' 2025-06-11 13:09:09.057 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint'

  • User Avatar
    0
    berkansasmaz created
    Support Team .NET Developer

    Hi,

    Does the Angular side run over HTTP or HTTPS? Also, when you click "Login" in the Angular app, what exact URL does it redirect you to?

  • User Avatar
    0
    antoni.obrados created

    Hi morning,

    The Angular side run over HTTPS.

    This is the IIS configuration:

    Regards

  • User Avatar
    0
    antoni.obrados created

    The IIS configuration of api is:

  • User Avatar
    0
    berkansasmaz created
    Support Team .NET Developer

    Hi morning ☺️,

    When you click "Login" in the Angular app, what exact URL does it redirect you to? I think we can understand the problem better if we can find the URL it redirects to before being redirected to the Error page.

  • User Avatar
    0
    antoni.obrados created

    2025-06-12 08:42:35.540 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.543 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/moment/locale/es.js?_v=638851347739523158 - 200 1166 text/javascript 28.2534ms 2025-06-12 08:42:35.543 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/appspecific/com.chrome.devtools.json - null null 2025-06-12 08:42:35.546 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/.well-known/appspecific/com.chrome.devtools.json - 302 null null 3.1805ms 2025-06-12 08:42:35.546 +02:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:7511/.well-known/appspecific/com.chrome.devtools.json, Response status code: 302 2025-06-12 08:42:35.577 +02:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2025-06-12 08:42:35.578 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 46.2279ms 2025-06-12 08:42:35.578 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:35.620 +02:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2025-06-12 08:42:35.620 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc) in 87.08ms 2025-06-12 08:42:35.620 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:35.621 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ApplicationConfigurationScript - 200 5666 application/javascript 92.8696ms 2025-06-12 08:42:35.647 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - null null 2025-06-12 08:42:35.650 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-12 08:42:35.650 +02:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2025-06-12 08:42:35.653 +02:00 [INF] Executing ViewResult, running view ~/Views/Error/404.cshtml. 2025-06-12 08:42:35.666 +02:00 [INF] Executed ViewResult - view ~/Views/Error/404.cshtml executed in 13.8816ms. 2025-06-12 08:42:35.666 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared) in 16.0373ms 2025-06-12 08:42:35.666 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-12 08:42:35.667 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - 404 null text/html; charset=utf-8 20.4219ms 2025-06-12 08:42:35.704 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ApplicationLocalizationScript?cultureName=es - 200 83938 application/javascript 183.8501ms 2025-06-12 08:42:35.753 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/css/bootstrap-light.css - 200 282028 text/css 274.5972ms 2025-06-12 08:42:35.776 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.B7C02D525514EF2E1F839ED1E31F96BC.css?_v=638853073549055179 - 200 365653 text/css 297.9779ms 2025-06-12 08:42:35.827 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/images/logo/leptonx/icon.svg - null null 2025-06-12 08:42:35.830 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.831 +02:00 [INF] Sending file. Request path: 'images/logo/leptonx/icon.svg'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\images\logo\leptonx\icon.svg.br' 2025-06-12 08:42:35.831 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.832 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/images/logo/leptonx/icon.svg - 200 1284 image/svg+xml 5.209ms 2025-06-12 08:42:35.832 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - null null 2025-06-12 08:42:35.833 +02:00 [INF] Sending file. Request path: '/Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2'. Physical path: 'N/A' 2025-06-12 08:42:35.835 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/LeptonX/images/login-pages/login-bg-img-light.svg - null null 2025-06-12 08:42:35.836 +02:00 [INF] Sending file. Request path: '/LeptonX/images/login-pages/login-bg-img-light.svg'. Physical path: 'N/A' 2025-06-12 08:42:35.839 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/LeptonX/images/login-pages/login-bg-img-light.svg - 200 54461 image/svg+xml 3.7359ms 2025-06-12 08:42:35.839 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/fonts/bootstrap-icons.woff2?30af91bf14e37666a085fb8a161ff36d - 200 92064 font/woff2 6.3986ms 2025-06-12 08:42:35.999 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js?_v=638853073554096765 - 200 956396 application/javascript 520.5784ms 2025-06-12 08:42:36.164 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/moment.min.js.map; - null null 2025-06-12 08:42:36.169 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/moment.min.js.map; - 302 null null 4.6494ms 2025-06-12 08:42:36.169 +02:00 [INF] Request reached the end of the middleware pipeline without being handled by application code. Request path: GET https://localhost:7511/__bundles/moment.min.js.map;, Response status code: 302 2025-06-12 08:42:36.174 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - null null 2025-06-12 08:42:36.177 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-12 08:42:36.177 +02:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2025-06-12 08:42:36.179 +02:00 [INF] Executing ViewResult, running view ~/Views/Error/404.cshtml. 2025-06-12 08:42:36.184 +02:00 [INF] Executed ViewResult - view ~/Views/Error/404.cshtml executed in 5.6104ms. 2025-06-12 08:42:36.184 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared) in 6.9757ms 2025-06-12 08:42:36.184 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-12 08:42:36.185 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Error?httpStatusCode=404 - 404 null text/html; charset=utf-8 11.1053ms 2025-06-12 08:42:36.292 +02:00 [INF] Executing ContentResult with HTTP Response ContentType of application/javascript 2025-06-12 08:42:36.293 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc) in 759.2412ms 2025-06-12 08:42:36.293 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:36.295 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Abp/ServiceProxyScript - 200 76110 application/javascript 765.7642ms 2025-06-12 08:42:43.594 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-12 08:42:43.595 +02:00 [INF] Notification is sent on same window time. 2025-06-12 08:42:53.607 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-12 08:42:53.607 +02:00 [INF] Notification is sent on same window time.

  • User Avatar
    0
    antoni.obrados created

    2025-06-12 08:42:35.407 +02:00 [INF] > Minified /Themes/LeptonX/Global/scripts/style-initializer.js (1637 bytes -> 750 bytes) 2025-06-12 08:42:35.409 +02:00 [INF] Bundled __bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js (954958 bytes) 2025-06-12 08:42:35.432 +02:00 [INF] Executed ViewResult - view ~/Views/Error/Default.cshtml executed in 1077.7912ms. 2025-06-12 08:42:35.433 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared) in 1110.1646ms 2025-06-12 08:42:35.433 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-12 08:42:35.435 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Error?httpStatusCode=400 - 400 null text/html; charset=utf-8 1122.5043ms 2025-06-12 08:42:35.478 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.B7C02D525514EF2E1F839ED1E31F96BC.css?_v=638853073549055179 - null null 2025-06-12 08:42:35.478 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js?_v=638853073554096765 - null null 2025-06-12 08:42:35.478 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/css/bootstrap-light.css - null null 2025-06-12 08:42:35.479 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/css/light.css - null null 2025-06-12 08:42:35.483 +02:00 [INF] Sending file. Request path: '/Themes/LeptonX/Global/side-menu/css/light.css'. Physical path: 'N/A' 2025-06-12 08:42:35.484 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/Themes/LeptonX/Global/side-menu/css/light.css - 200 5282 text/css 4.2143ms 2025-06-12 08:42:35.484 +02:00 [INF] Sending file. Request path: '/Themes/LeptonX/Global/side-menu/css/bootstrap-light.css'. Physical path: 'N/A' 2025-06-12 08:42:35.484 +02:00 [INF] Sending file. Request path: '/__bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js'. Physical path: 'N/A' 2025-06-12 08:42:35.484 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/libs/jquery-validation/localization/messages_es.js?_v=638851347497167822 - null null 2025-06-12 08:42:35.484 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/libs/timeago/locales/jquery.timeago.es.js?_v=638851348033912063 - null null 2025-06-12 08:42:35.484 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/libs/select2/js/i18n/es.js?_v=638851347916562820 - null null 2025-06-12 08:42:35.502 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.503 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.503 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.504 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js?_v=638851347360129896 - null null 2025-06-12 08:42:35.512 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.512 +02:00 [INF] Sending file. Request path: '/__bundles/LeptonX.Global.B7C02D525514EF2E1F839ED1E31F96BC.css'. Physical path: 'N/A' 2025-06-12 08:42:35.512 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/__bundles/Views.Error.DefaultErrorComponent.default.F15FCDEA56EC024E1CDCD86CA6B586D8.css?_v=638853073544880306 - null null 2025-06-12 08:42:35.513 +02:00 [INF] Sending file. Request path: '/__bundles/Views.Error.DefaultErrorComponent.default.F15FCDEA56EC024E1CDCD86CA6B586D8.css'. Physical path: 'N/A' 2025-06-12 08:42:35.513 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/__bundles/Views.Error.DefaultErrorComponent.default.F15FCDEA56EC024E1CDCD86CA6B586D8.css?_v=638853073544880306 - 200 168 text/css 0.5742ms 2025-06-12 08:42:35.514 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/libs/moment/locale/es.js?_v=638851347739523158 - null null 2025-06-12 08:42:35.515 +02:00 [INF] Sending file. Request path: 'libs/jquery-validation/localization/messages_es.js'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs\jquery-validation\localization\messages_es.js.br' 2025-06-12 08:42:35.515 +02:00 [INF] Sending file. Request path: 'libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs\bootstrap-datepicker\locales\bootstrap-datepicker.es.min.js.br' 2025-06-12 08:42:35.515 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.515 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.516 +02:00 [INF] Sending file. Request path: 'libs/timeago/locales/jquery.timeago.es.js'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs\timeago\locales\jquery.timeago.es.js.br' 2025-06-12 08:42:35.516 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.516 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js?_v=638851347360129896 - 200 263 text/javascript 12.2246ms 2025-06-12 08:42:35.516 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/jquery-validation/localization/messages_es.js?_v=638851347497167822 - 200 515 text/javascript 32.2752ms 2025-06-12 08:42:35.516 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/timeago/locales/jquery.timeago.es.js?_v=638851348033912063 - 200 295 text/javascript 32.1499ms 2025-06-12 08:42:35.517 +02:00 [INF] Sending file. Request path: 'libs/select2/js/i18n/es.js'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs\select2\js\i18n\es.js.br' 2025-06-12 08:42:35.517 +02:00 [INF] Executed endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.518 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/libs/select2/js/i18n/es.js?_v=638851347916562820 - 200 401 text/javascript 33.7171ms 2025-06-12 08:42:35.520 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Abp/ApplicationLocalizationScript?cultureName=es - null null 2025-06-12 08:42:35.528 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Abp/ApplicationConfigurationScript - null null 2025-06-12 08:42:35.528 +02:00 [INF] Executing endpoint 'Microsoft.AspNetCore.Routing.RouteEndpoint' 2025-06-12 08:42:35.528 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController.GetAsync (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:35.529 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Abp/ServiceProxyScript - null null 2025-06-12 08:42:35.530 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController.Get (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:35.531 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController.GetAll (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:35.532 +02:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationLocalizationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.ActionResult] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.Localization.AbpApplicationLocalizationScriptController (Volo.Abp.AspNetCore.Mvc). 2025-06-12 08:42:35.533 +02:00 [INF] Route matched with {area = "Abp", action = "Get", controller = "AbpApplicationConfigurationScript", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Microsoft.AspNetCore.Mvc.ActionResult] Get() on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationScriptController (Volo.Abp.AspNetCore.Mvc). 2025-06-12 08:42:35.534 +02:00 [INF] Route matched with {area = "Abp", action = "GetAll", controller = "AbpServiceProxyScript", page = ""}. Executing controller action with signature Microsoft.AspNetCore.Mvc.ActionResult GetAll(Volo.Abp.AspNetCore.Mvc.ProxyScripting.ServiceProxyGenerationModel) on controller Volo.Abp.AspNetCore.Mvc.ProxyScripting.AbpServiceProxyScriptController (Volo.Abp.AspNetCore.Mvc). 2025-06-12 08:42:35.540 +02:00 [INF] Sending file. Request path: 'libs/moment/locale/es.js'. Physical path: 'C:\inetpub\MTG_SetupWizardWebsite\wwwroot\libs\moment\locale\es.js.br'

  • User Avatar
    0
    antoni.obrados created

    2025-06-12 08:42:34.291 +02:00 [INF] Client validation failed because 'https://localhost:4500' was not a valid redirect_uri for MTGCorp_App. 2025-06-12 08:42:34.291 +02:00 [INF] The authorization request was rejected because the redirect_uri was invalid: 'https://localhost:4500'. 2025-06-12 08:42:34.308 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/connect/authorize?response_type=code&client_id=MTGCorp_App&state=bVctbldueXVNZmtqMktuNXQxRl9reGM4LW1SM052d3cuWUhqemRYNHNNWmVB&redirect_uri=https%3A%2F%2Flocalhost%3A4500&scope=openid%20offline_access%20MTGCorp&code_challenge=QM7eqA9ZyxUjzfrT2FzlLZfv0yFVzlDZacPTmPd_Er8&code_challenge_method=S256&nonce=bVctbldueXVNZmtqMktuNXQxRl9reGM4LW1SM052d3cuWUhqemRYNHNNWmVB&culture=es&ui-culture=es - 302 null null 451.8911ms 2025-06-12 08:42:34.312 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/Error?httpStatusCode=400 - null null 2025-06-12 08:42:34.317 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController.Index (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared)' 2025-06-12 08:42:34.322 +02:00 [INF] Route matched with {action = "Index", controller = "Error", area = "", page = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Microsoft.AspNetCore.Mvc.IActionResult] Index(Int32) on controller Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Controllers.ErrorController (Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared). 2025-06-12 08:42:34.358 +02:00 [INF] Executing ViewResult, running view ~/Views/Error/Default.cshtml. 2025-06-12 08:42:34.431 +02:00 [INF] Bundling __bundles/Views.Error.DefaultErrorComponent.default.F15FCDEA56EC024E1CDCD86CA6B586D8.css (1 files) 2025-06-12 08:42:34.485 +02:00 [INF] > Minified /Views/Error/DefaultErrorComponent/default.css (230 bytes -> 168 bytes) 2025-06-12 08:42:34.487 +02:00 [INF] Bundled __bundles/Views.Error.DefaultErrorComponent.default.F15FCDEA56EC024E1CDCD86CA6B586D8.css (168 bytes) 2025-06-12 08:42:34.585 +02:00 [INF] Bundling __bundles/LeptonX.Global.B7C02D525514EF2E1F839ED1E31F96BC.css (19 files) 2025-06-12 08:42:34.597 +02:00 [INF] > Minified /libs/abp/core/abp.css (1331 bytes -> 868 bytes) 2025-06-12 08:42:34.717 +02:00 [INF] > Minified /libs/@fortawesome/fontawesome-free/css/all.css (106394 bytes -> 72264 bytes) 2025-06-12 08:42:34.771 +02:00 [INF] > Minified /libs/@fortawesome/fontawesome-free/css/v4-shims.css (38514 bytes -> 30407 bytes) 2025-06-12 08:42:34.801 +02:00 [INF] > Minified /libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css (54850 bytes -> 43186 bytes) 2025-06-12 08:42:34.814 +02:00 [INF] > Minified /libs/datatables.net-bs5/css/dataTables.bootstrap5.css (21426 bytes -> 19138 bytes) 2025-06-12 08:42:34.820 +02:00 [INF] > Minified /libs/bootstrap-daterangepicker/daterangepicker.css (8069 bytes -> 6368 bytes) 2025-06-12 08:42:34.822 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-styles.css (266 bytes -> 212 bytes) 2025-06-12 08:42:34.823 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-styles.css (338 bytes -> 293 bytes) 2025-06-12 08:42:34.858 +02:00 [INF] > Minified /Themes/LeptonX/Global/side-menu/libs/bootstrap-icons/font/bootstrap-icons.css (74827 bytes -> 57858 bytes) 2025-06-12 08:42:34.879 +02:00 [INF] > Minified /Themes/LeptonX/Global/side-menu/css/js-bundle.css (44773 bytes -> 38859 bytes) 2025-06-12 08:42:34.897 +02:00 [INF] > Minified /Themes/LeptonX/Global/side-menu/css/layout-bundle.css (36836 bytes -> 30189 bytes) 2025-06-12 08:42:34.900 +02:00 [INF] > Minified /Themes/LeptonX/Global/side-menu/css/abp-bundle.css (4075 bytes -> 3058 bytes) 2025-06-12 08:42:34.902 +02:00 [INF] > Minified /Themes/LeptonX/Global/side-menu/css/font-bundle.css (128 bytes -> 126 bytes) 2025-06-12 08:42:34.903 +02:00 [INF] > Minified /global-scripts.js (27 bytes -> 0 bytes) 2025-06-12 08:42:34.904 +02:00 [INF] > Minified /global-styles.css (592 bytes -> 505 bytes) 2025-06-12 08:42:34.905 +02:00 [INF] Bundled __bundles/LeptonX.Global.B7C02D525514EF2E1F839ED1E31F96BC.css (357076 bytes) 2025-06-12 08:42:34.943 +02:00 [INF] Bundling __bundles/LeptonX.Global.4D60287B5E73BF5E2630D6B5AE4750A8.js (38 files) 2025-06-12 08:42:35.080 +02:00 [INF] > Minified /libs/abp/core/abp.js (25754 bytes -> 10316 bytes) 2025-06-12 08:42:35.245 +02:00 [INF] > Minified /libs/jquery/jquery.js (285314 bytes -> 87931 bytes) 2025-06-12 08:42:35.256 +02:00 [INF] > Minified /libs/abp/jquery/abp.jquery.js (13489 bytes -> 5683 bytes) 2025-06-12 08:42:35.282 +02:00 [INF] > Minified /libs/jquery-validation/jquery.validate.js (52535 bytes -> 25346 bytes) 2025-06-12 08:42:35.289 +02:00 [INF] > Minified /libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js (19820 bytes -> 5883 bytes) 2025-06-12 08:42:35.295 +02:00 [INF] > Minified /libs/datatables.net-bs5/js/dataTables.bootstrap5.js (2719 bytes -> 1489 bytes) 2025-06-12 08:42:35.305 +02:00 [INF] > Minified /libs/abp/luxon/abp.luxon.js (1361 bytes -> 606 bytes) 2025-06-12 08:42:35.310 +02:00 [INF] > Minified /libs/timeago/jquery.timeago.js (7404 bytes -> 4107 bytes) 2025-06-12 08:42:35.341 +02:00 [INF] > Minified /libs/bootstrap-daterangepicker/daterangepicker.js (67745 bytes -> 32632 bytes) 2025-06-12 08:42:35.346 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/ui-extensions.js (11706 bytes -> 3411 bytes) 2025-06-12 08:42:35.350 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/jquery-extensions.js (6166 bytes -> 2275 bytes) 2025-06-12 08:42:35.352 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery-form/jquery-form-extensions.js (3605 bytes -> 1588 bytes) 2025-06-12 08:42:35.356 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/jquery/widget-manager.js (4790 bytes -> 1752 bytes) 2025-06-12 08:42:35.363 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js (9958 bytes -> 4687 bytes) 2025-06-12 08:42:35.367 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js (8329 bytes -> 2449 bytes) 2025-06-12 08:42:35.374 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js (22772 bytes -> 7168 bytes) 2025-06-12 08:42:35.376 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/sweetalert2/abp-sweetalert2.js (3680 bytes -> 1858 bytes) 2025-06-12 08:42:35.378 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/toastr/abp-toastr.js (951 bytes -> 342 bytes) 2025-06-12 08:42:35.388 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/date-range-picker/date-range-picker-extensions.js (29172 bytes -> 9995 bytes) 2025-06-12 08:42:35.389 +02:00 [INF] > Minified /libs/abp/aspnetcore-mvc-ui-theme-shared/authentication-state/authentication-state-listener.js (776 bytes -> 375 bytes) 2025-06-12 08:42:35.391 +02:00 [INF] > Minified /Pages/Abp/MultiTenancy/tenant-switch.js (414 bytes -> 243 bytes) 2025-06-12 08:42:35.399 +02:00 [INF] > Minified /client-proxies/account-proxy.js (18919 bytes -> 12187 bytes) 2025-06-12 08:42:35.402 +02:00 [INF] > Minified /Pages/Account/AuthorityDelegation/account-authority-delegation-global.js (5800 bytes -> 2358 bytes) 2025-06-12 08:42:35.405 +02:00 [INF] > Minified /Pages/Account/LinkUsers/account-link-user-global.js (4816 bytes -> 2263 bytes)

  • User Avatar
    0
    antoni.obrados created

    2025-06-12 08:42:24.904 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/.well-known/jwks - 200 1667 application/json;charset=UTF-8 18.3505ms 2025-06-12 08:42:24.916 +02:00 [INF] Request starting HTTP/2 OPTIONS https://localhost:7511/api/abp/application-configuration?includeLocalizationResources=false - null null 2025-06-12 08:42:24.921 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:24.921 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/api/abp/application-configuration?includeLocalizationResources=false - 204 null null 5.2168ms 2025-06-12 08:42:24.924 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/api/abp/application-configuration?includeLocalizationResources=false - null null 2025-06-12 08:42:24.929 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:25.074 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:25.117 +02:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationConfiguration", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationRequestOptions) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController (Volo.Abp.AspNetCore.Mvc). 2025-06-12 08:42:25.708 +02:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto'. 2025-06-12 08:42:25.747 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 626.1796ms 2025-06-12 08:42:25.747 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationConfigurationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:25.755 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/api/abp/application-configuration?includeLocalizationResources=false - 200 null application/json; charset=utf-8 831.575ms 2025-06-12 08:42:25.765 +02:00 [INF] Request starting HTTP/2 OPTIONS https://localhost:7511/api/abp/application-localization?cultureName=es&onlyDynamics=false - null null 2025-06-12 08:42:25.765 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:25.766 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/api/abp/application-localization?cultureName=es&onlyDynamics=false - 204 null null 1.2881ms 2025-06-12 08:42:25.771 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/api/abp/application-localization?cultureName=es&onlyDynamics=false - null null 2025-06-12 08:42:25.772 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:25.781 +02:00 [INF] Executing endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:25.788 +02:00 [INF] Route matched with {area = "abp", action = "Get", controller = "AbpApplicationLocalization", page = ""}. Executing controller action with signature System.Threading.Tasks.Task1[Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto] GetAsync(Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationRequestDto) on controller Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController (Volo.Abp.AspNetCore.Mvc). 2025-06-12 08:42:25.945 +02:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto'. 2025-06-12 08:42:25.948 +02:00 [INF] Executed action Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc) in 159.8497ms 2025-06-12 08:42:25.948 +02:00 [INF] Executed endpoint 'Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.AbpApplicationLocalizationController.GetAsync (Volo.Abp.AspNetCore.Mvc)' 2025-06-12 08:42:25.956 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/api/abp/application-localization?cultureName=es&onlyDynamics=false - 200 null application/json; charset=utf-8 185.6057ms 2025-06-12 08:42:33.567 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-12 08:42:33.572 +02:00 [INF] Notification is sent on same window time. 2025-06-12 08:42:33.856 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/connect/authorize?response_type=code&client_id=MTGCorp_App&state=bVctbldueXVNZmtqMktuNXQxRl9reGM4LW1SM052d3cuWUhqemRYNHNNWmVB&redirect_uri=https%3A%2F%2Flocalhost%3A4500&scope=openid%20offline_access%20MTGCorp&code_challenge=QM7eqA9ZyxUjzfrT2FzlLZfv0yFVzlDZacPTmPd_Er8&code_challenge_method=S256&nonce=bVctbldueXVNZmtqMktuNXQxRl9reGM4LW1SM052d3cuWUhqemRYNHNNWmVB&culture=es&ui-culture=es - null null 2025-06-12 08:42:33.860 +02:00 [INF] The request URI matched a server endpoint: "Authorization". 2025-06-12 08:42:33.874 +02:00 [INF] The authorization request was successfully extracted: { "response_type": "code", "client_id": "MTGCorp_App", "state": "bVctbldueXVNZmtqMktuNXQxRl9reGM4LW1SM052d3cuWUhqemRYNHNNWmVB", "redirect_uri": "https://localhost:4500", "scope": "openid offline_access MTGCorp", "code_challenge": "QM7eqA9ZyxUjzfrT2FzlLZfv0yFVzlDZacPTmPd_Er8", "code_challenge_method": "S256", "nonce": "bVctbldueXVNZmtqMktuNXQxRl9reGM4LW1SM052d3cuWUhqemRYNHNNWmVB", "culture": "es", "ui-culture": "es" }.

  • User Avatar
    0
    antoni.obrados created

    2025-06-12 08:42:24.870 +02:00 [INF] The response was successfully returned as a JSON document: { "issuer": "https://localhost:7511/", "authorization_endpoint": "https://localhost:7511/connect/authorize", "token_endpoint": "https://localhost:7511/connect/token", "introspection_endpoint": "https://localhost:7511/connect/introspect", "end_session_endpoint": "https://localhost:7511/connect/endsession", "revocation_endpoint": "https://localhost:7511/connect/revocat", "userinfo_endpoint": "https://localhost:7511/connect/userinfo", "device_authorization_endpoint": "https://localhost:7511/device", "jwks_uri": "https://localhost:7511/.well-known/jwks", "grant_types_supported": [ "authorization_code", "implicit", "password", "client_credentials", "refresh_token", "urn:ietf:params:oauth:grant-type:device_code", "LinkLogin", "Impersonation" ], "response_types_supported": [ "code", "code id_token", "code id_token token", "code token", "id_token", "id_token token", "token", "none" ], "response_modes_supported": [ "query", "form_post", "fragment" ], "scopes_supported": [ "openid", "offline_access", "email", "profile", "phone", "roles", "address", "MTGCorp" ], "claims_supported": [ "aud", "exp", "iat", "iss", "sub" ], "id_token_signing_alg_values_supported": [ "RS256" ], "code_challenge_methods_supported": [ "plain", "S256" ], "subject_types_supported": [ "public" ], "prompt_values_supported": [ "consent", "login", "none", "select_account" ], "token_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "introspection_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "revocation_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "device_authorization_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_basic" ], "claims_parameter_supported": false, "request_parameter_supported": false, "request_uri_parameter_supported": false, "tls_client_certificate_bound_access_tokens": false, "authorization_response_iss_parameter_supported": true }. 2025-06-12 08:42:24.879 +02:00 [INF] Request finished HTTP/2 GET https://localhost:7511/.well-known/openid-configuration - 200 2427 application/json;charset=UTF-8 362.336ms 2025-06-12 08:42:24.883 +02:00 [INF] Request starting HTTP/2 OPTIONS https://localhost:7511/.well-known/jwks - null null 2025-06-12 08:42:24.883 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:24.884 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/.well-known/jwks - 204 null null 1.3738ms 2025-06-12 08:42:24.886 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/jwks - null null 2025-06-12 08:42:24.887 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:24.888 +02:00 [INF] The request URI matched a server endpoint: "JsonWebKeySet". 2025-06-12 08:42:24.890 +02:00 [INF] The JSON Web Key Set request was successfully extracted: {}. 2025-06-12 08:42:24.892 +02:00 [INF] The JSON Web Key Set request was successfully validated. 2025-06-12 08:42:24.903 +02:00 [INF] The response was successfully returned as a JSON document: { "keys": [ { "kid": "94749CB3EB68E51BA749B8A6AF1791A78D33C978", "use": "sig", "kty": "RSA", "alg": "RS256", "e": "AQAB", "n": "8LPVRnsT9UBRAwxzFEOHIhwQCultXTqI4-0eia0ikFi6p_LxH42_cjFiqcN61AfY4kWU6Gwa3Zpir0wIMUaxyjie9nzEluVk-s1Lr4bnV2P-A6hoaXcfUn2KTx3mLpDjMxnAKBkWJ2xRJeKG01mmVSwBvOo5sJ2XqoXatpM08LApprR6mAf24s7_PkcfTU1VjaKqaPI2lZ1W8ZisWAC-Fvvx6OiUMm8jmGsa4Mbs7jIvTpLCwFWFDlQMAZ_2SYRxpiJxRUeqnhZZWlWJ7ZZaMHBwcvuf_1ZkH3S-EVjKAqjNiLj5RLYLC6ctJbcUwz1YN8HTOr1z6HSLS6tAW3RWwQ", "x5t": "lHScs-to5RunSbimrxeRp40zyXg", "x5c": [ "MIIDDDCCAfSgAwIBAgIIDS8XEIsevdMwDQYJKoZIhvcNAQELBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTI0MTIxMjEyMjcwMVoXDTI1MTIxMjEyMjcwMVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8LPVRnsT9UBRAwxzFEOHIhwQCultXTqI4+0eia0ikFi6p/LxH42/cjFiqcN61AfY4kWU6Gwa3Zpir0wIMUaxyjie9nzEluVk+s1Lr4bnV2P+A6hoaXcfUn2KTx3mLpDjMxnAKBkWJ2xRJeKG01mmVSwBvOo5sJ2XqoXatpM08LApprR6mAf24s7/PkcfTU1VjaKqaPI2lZ1W8ZisWAC+Fvvx6OiUMm8jmGsa4Mbs7jIvTpLCwFWFDlQMAZ/2SYRxpiJxRUeqnhZZWlWJ7ZZaMHBwcvuf/1ZkH3S+EVjKAqjNiLj5RLYLC6ctJbcUwz1YN8HTOr1z6HSLS6tAW3RWwQIDAQABo2IwYDAMBgNVHRMBAf8EAjAAMA4GA1UdDwEB/wQEAwIFoDAWBgNVHSUBAf8EDDAKBggrBgEFBQcDATAXBgNVHREBAf8EDTALgglsb2NhbGhvc3QwDwYKKwYBBAGCN1QBAQQBAjANBgkqhkiG9w0BAQsFAAOCAQEAp7ZSmRpIcPpGfzA6xu7ZrVlWj3vLDqT4D8GYgdl+k08yFL3ABaW7z6ZF1Er+RJtV+XMVM97icD6TiG9/3xO1Yb8U+TWoJY/fkIAKkrIFxSpu4iGPFRSa6WX0ctUsdx96tRMRxaq0nvAjCxe29dQwVO1LrBTCIvDkihWHn1nlFo36F7IxAD09rsMNi1J3fNLw4zX/D05GQriUFfZmPvcpGBi8Lix2BpnBaAWs9ncJbpWqqJm7F7jlq/sxR6Z8VjQK6x/3Ma/U9Cuw+J/UZZ42u/jH35dYDLEwt7gWZgl8mt8665yCtNY7EdJJcVeFeeFcT3ADFnQI7hCsfY9UC1qGEg==" ] } ] }.

  • User Avatar
    0
    antoni.obrados created

    2025-06-12 08:42:20.805 +02:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule 2025-06-12 08:42:20.805 +02:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule 2025-06-12 08:42:21.894 +02:00 [INF] User profile is available. Using 'C:\Users\MTG_SetupWizardWebsite\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. 2025-06-12 08:42:22.425 +02:00 [INF] Saving external localizations... 2025-06-12 08:42:22.458 +02:00 [INF] Initialized all ABP modules. 2025-06-12 08:42:22.942 +02:00 [INF] Initializing UI Database 2025-06-12 08:42:23.111 +02:00 [INF] Saving healthchecks configuration to database 2025-06-12 08:42:23.268 +02:00 [INF] Request starting HTTP/2 OPTIONS https://localhost:7511/.well-known/openid-configuration - null null 2025-06-12 08:42:23.304 +02:00 [ERR] GetHealthReport threw an exception when trying to get report from /health-status configured with name MTGCorp Health Status. System.InvalidOperationException: Could not get endpoint uri from configuration at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetEndpointUri(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 176 at HealthChecks.UI.Core.HostedService.HealthCheckReportCollector.GetHealthReportAsync(HealthCheckConfiguration configuration) in /home/runner/work/AspNetCore.Diagnostics.HealthChecks/AspNetCore.Diagnostics.HealthChecks/src/HealthChecks.UI/Core/HostedService/HealthCheckReportCollector.cs:line 118 2025-06-12 08:42:23.521 +02:00 [INF] Application started. Press Ctrl+C to shut down. 2025-06-12 08:42:23.521 +02:00 [INF] Hosting environment: Production 2025-06-12 08:42:23.521 +02:00 [INF] Content root path: C:\inetpub\MTG_SetupWizardWebsite 2025-06-12 08:42:23.933 +02:00 [INF] Completed to save external localizations. 2025-06-12 08:42:24.354 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:24.421 +02:00 [INF] Request finished HTTP/2 OPTIONS https://localhost:7511/.well-known/openid-configuration - 204 null null 1153.3329ms 2025-06-12 08:42:24.517 +02:00 [INF] Request starting HTTP/2 GET https://localhost:7511/.well-known/openid-configuration - null null 2025-06-12 08:42:24.529 +02:00 [INF] CORS policy execution successful. 2025-06-12 08:42:24.607 +02:00 [INF] The request URI matched a server endpoint: "Configuration". 2025-06-12 08:42:24.616 +02:00 [INF] The configuration request was successfully extracted: {}. 2025-06-12 08:42:24.618 +02:00 [INF] The configuration request was successfully validated.

  • User Avatar
    0
    antoni.obrados created

    Have these logs solved your question? Or do you want to see any configuration files for the Angular application?

  • User Avatar
    0
    berkansasmaz created
    Support Team .NET Developer

    Unfortunately, nothing can be understood from the logs due to the log level. Please enable Debug logs and then share just logs.txt file.

    To enable Debug logs you can check this link.

Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.3.0-preview. Updated on June 13, 2025, 11:37