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
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
1 Answer(s)
-
0
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:44388while 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.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
