Я только что настроил IdentityServer для нового приложения .NET Framework 4.7.2.
Когда я регистрирую пользователя, используя стандартную форму, ему удается создать пользователя в базе данных, однако появляется следующая ошибка:
Server Error in '/' Application.
Access to the path 'C:\Program Files (x86)\IIS Express\20190124154304_636839413844068496.json' is denied.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.UnauthorizedAccessException: Access to the path 'C:\Program Files (x86)\IIS Express\20190124154304_636839413844068496.json' is denied.
ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via , the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
To grant ASP.NET access to a file, right-click the file in File Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
Source Error:
Line 154: {
Line 155: var user = new ApplicationUser { UserName = model.Email, Email = model.Email };
Line 156: var result = await UserManager.CreateAsync(user, model.Password);
Line 157: if (result.Succeeded)
Line 158: {
Source File: C:\Repositories\Viper\Viper.Web\Controllers\AccountController.cs Line: 156
Stack Trace:
[UnauthorizedAccessException: Access to the path 'C:\Program Files (x86)\IIS Express\20190124154304_636839413844068496.json' is denied.]
System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) +12856161
System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath, Boolean checkHost) +776
System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy) +60
Не удалось опубликовать все Stacktrace, но при необходимости можно загрузить изображение. Я полностью застрял на том, почему он пытается создать этот файл.
Любой совет по этому вопросу будет принята с благодарностью.
Спасибо