Activities of "damien.heasman"

Question
  • ABP Framework version: v4.4.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes

I have had a good look through Documentation, Samples and Framework Source Code but I can't find how to do the following:

I need to get a List of Users that have a certain Permission. For example from the Screenshot below of our Permissions I would like to get a List back of Users that have the Permission Dispatch.Dockets.Create. Is there an AppService method that I can call where I pass in a Permission I get back a List of Users. If there is no direct method to do this can you please suggest how this would be possible with the Framework. Even if I was to get a full List of Users and their Permissions would be helpful. I need to call the Appservice from C# Razor Pages Code behind.

I have resolved the issue.

The issue is being caused by an Azure Access Restriction (i.e. Azure Web App Firewall) that was applied to both the API and Identity Server web apps. We had an Access Restriction on the Sites so that they could only be accessed from our corporate network. It's only because I noticed in maliming posts that there was a 403 Forbidden Error that I decided to remove the Access Restriction to help with resolving this Support Issue. Now I just need to figure out what Firewall Rule is required to let Identity Server work.

Thanks maliming and gterdem for your help

  • ABP Framework version: v4.4.0
  • UI type: MVC
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): Yes
  • Exception message and stack trace: System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'System.String'.
  • Steps to reproduce the issue:"

Hi. I’m really having some issues with deploying the ABP API project into Azure. I have spent many days going through all the different Settings, each of your related Support articles and your Tutorial on deploying to Azure. The current Solution I have deployed is just the Startup Template code with no Code changes. The solution is an MVC Tiered project and the only reason it is Tiered is because we are building a Xamarin Mobile App which we wish to use the separated Identity Server and Web API projects.

After deploying the API project to Azure the API works fine when using Swagger and I get a successful result when I’m not Authenticated. For example if I load the API project and Test the /api/abp/api-definition/ without authentication it works. As soon as I Authenticate with the Identity Server via the Swagger Authorize Dialog and I retry the same API Test (/api/abp/api-definition/) I get a 500 Error.

When looking at the API Logs I’m getting the following Exception:
2021-08-09 08:57:39.921 +00:00 [INF] Request finished HTTP/1.1 GET [https://app-civtraccore-api-test-001.azurewebsites.net/abp/Swashbuckle/SetCsrfCookie](https://app-civtraccore-api-test-001.azurewebsites.net/abp/Swashbuckle/SetCsrfCookie) \- \- \- 500 \- \- 11\.9688ms
2021-08-09 08:57:40.344 +00:00 [INF] Request starting HTTP/1.1 GET [https://app-civtraccore-api-test-001.azurewebsites.net/api/abp/application-configuration](https://app-civtraccore-api-test-001.azurewebsites.net/api/abp/application-configuration) \- \-
2021-08-09 08:57:40.346 +00:00 [ERR] Exception occurred while processing message.
System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'System.String'.
   at Microsoft.IdentityModel.Protocols.ConfigurationManager\`1.GetConfigurationAsync(CancellationToken cancel)
   at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync()
   at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync()
2021-08-09 08:57:40.346 +00:00 [ERR] An unhandled exception has occurred while executing the request.
System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'System.String'.
   at Microsoft.IdentityModel.Protocols.ConfigurationManager\`1.GetConfigurationAsync(CancellationToken cancel)
   at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync()
   at Microsoft.AspNetCore.Authentication.JwtBearer.JwtBearerHandler.HandleAuthenticateAsync()
   at Microsoft.AspNetCore.Authentication.AuthenticationHandler\`1.AuthenticateAsync()
   at Microsoft.AspNetCore.Authentication.AuthenticationService.AuthenticateAsync(HttpContext context, String scheme)
   at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context)
   at Microsoft\.AspNetCore\.Diagnostics\.ExceptionHandlerMiddleware\.\<Invoke\>g\_\_Awaited\|6\_0\(ExceptionHandlerMiddleware middleware\, HttpContext context\, Task task\)
   at Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware.HandleException(HttpContext context, ExceptionDispatchInfo edi)
   at Microsoft\.AspNetCore\.Diagnostics\.ExceptionHandlerMiddleware\.\<Invoke\>g\_\_Awaited\|6\_0\(ExceptionHandlerMiddleware middleware\, HttpContext context\, Task task\)
   at Microsoft.AspNetCore.Diagnostics.StatusCodePagesMiddleware.Invoke(HttpContext context)
   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()

When checking in Google Dev Tools I get the following

I have changed the AppSettings file in both API and Identity projects based on my Azure URLs and I have also changed the Identity Server settings via the Web UI. I'm happy to share all my Settings if that helps.

Showing 1 to 3 of 3 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11