Open Closed

Missing Reference to volo.abp.identity in v5.1.3 #2559


User avatar
0
viswajwalith created
  • ABP Framework version: v5.1.3
  • UI type: MVC
  • DB provider: EF Core / MongoDB
  • Tiered (MVC) or Identity Server Separated (Angular): es / Microservice
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

We upgraded our application from 4.4.0 to 5.1.3. we could not find volo.abp.identity Do we missing any references that need to be added in v5.1.3


1 Answer(s)
  • User Avatar
    0
    gterdem created
    Support Team Senior .NET Developer

    IdentityService is using static proxy as default, so they are not generated on run time dynamically. To generate it, in your web application use the command: abp generate-proxy --type js --module identity --url https://localhost:44388 while your identityService (localhost:44388) is running.

    This will generate client proxies under wwwroot.

    Then you can add this script in any page you want to use and access to endpoints from javascript.

Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11