You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I develop a web API project using .net core 5, and I configure The project using swagger, and it works correctly. However, when I Add Web.config file to the project, It faces the problem and shows this error:
This page isn’t working localhost is currently unable to handle this request.
HTTP ERROR 500
This My Web.Confg file: <?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <modules> <remove name="WebDAVModule" /> </modules> <handlers> <remove name="WebDAV" /> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" /> </handlers> <aspNetCore stdoutLogEnabled="false" hostingModel="InProcess" /> </system.webServer> </configuration>
Any help will be appreciated,
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
I develop a web API project using .net core 5, and I configure The project using swagger, and it works correctly. However, when I Add Web.config file to the project, It faces the problem and shows this error:
This page isn’t working localhost is currently unable to handle this request.
HTTP ERROR 500
This My Web.Confg file:
<?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <modules> <remove name="WebDAVModule" /> </modules> <handlers> <remove name="WebDAV" /> <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" /> </handlers> <aspNetCore stdoutLogEnabled="false" hostingModel="InProcess" /> </system.webServer> </configuration>
Any help will be appreciated,
Thanks.
The text was updated successfully, but these errors were encountered: