Skip to main content

All Questions

Tagged with
4 votes
3 answers
7k views

Get the local path of a file in a virtual directory

I have an ASP.NET Core 3.0 MVC application with images in it. E.g., http://foo.bar/images/image.jpg Now, the folder images is a virtual directory which is mapped to a network drive, such as \\192.168....
Impostor's user avatar
  • 1,980
0 votes
2 answers
468 views

Uploaded file have no content when uploaded from Remote IIS Server

I am trying to upload files to Google Drive using ASP.NET Core 3.0, here is my code to upload the file. GData.File fileMetadata = new GData.File() { Id = null, Name = Path.GetFileName(path), ...
Muhammad Jazab's user avatar
1 vote
1 answer
2k views

ASP.NET Core 3 app not refreshing HTML/CSS changes in browser

I have issues when saving HTML/CSS files, these are not being shown when I refresh the page, doesn't matter what browser I try; I have tried disabling cache in the Network tab in google chrome but ...
Tofetopo's user avatar
  • 486
1 vote
0 answers
505 views

A connection attempt failed [ASP .Net Core, IIS]

I host the ASP.NET Core (3.0) Web Application in IIS. The application works in my development environment and also in a docker image inside a linux machine. Now I tried to host the application as ...
Nemies's user avatar
  • 11
2 votes
2 answers
816 views

My Entity Framework Core API works fine locally, but fails with a 405 error in production

I have a .NetCore 3.1 API project that uses Entity Framework. It is working perfectly when I run it locally from Visual Studio. However, after publishing to a production IIS 8.5 server, I get the ...
SkyeBoniwell's user avatar
  • 6,935
0 votes
0 answers
18 views

MVC core 3 as IIS10 application in a Website. But the root is the website, not the virtual directory

I'm trying to deploy an MVC Core 3.1 project. I can only deploy it on a Webserver as "Application" of a specific Website. So the application is reachable at [Website]/[ApplicationName] but every ...
Fabio Maccari's user avatar
0 votes
1 answer
2k views

Can you run a asp.net core 3.0 gRPC CLIENT in IIS? (possibly on Azure?)

I've read a lot of conflicting information about this and it seems people are not 100% clear on what is possible and what is not. I am certain that you cannot host a gRPC server app in IIS due to the ...
Mike S.'s user avatar
  • 502
8 votes
3 answers
4k views

.NET Core 3 - IIS - Application Initialization doesn't work

I've been following the IHostedService documentation in order to run a background task using the .NET Core MVC framework. I would like the service to start automatically in IIS, however, it doesn't ...
Coruscate5's user avatar
  • 2,453
1 vote
0 answers
955 views

Getting ANCM Failed to Find Native Dependencies error occasionally (.Net Core 3.0)

I'm trying to host my ASP.Net Core 3.0 application on my server and localhost. But I get this error occasionally in both of them. When I get this error, I change the project's deploy configuration ...
okkali's user avatar
  • 11
0 votes
0 answers
43 views

I cannot publish an ASP.NET Core 3.0 project on IIS

The project was created at ASP. I can’t post. Below screenshots of errors and code ERROR WEB.config
Roman's user avatar
  • 1
1 vote
1 answer
303 views

IIS config error after upgrading to ASP.NET Core 3.0 from Core 2.2

I upgraded a few if my web projects to asp.net core 3.0 and am trying to push them to an IIS web server. I installed the .net core 3.0 hosting bundle and runtime and uninstalled the old versions just ...
Hawke's user avatar
  • 564
1 vote
0 answers
494 views

Asp.net core 3. Problem in hosting app in IIS and development side by side

I have recently updated my asp.net core 2.1 application to .net core 3.0 On my development my machine i have hosted my application on IIS so that some other components consume it and whenever i need ...
Kamran Shahid's user avatar
9 votes
4 answers
28k views

Hosting multiple .net core using the same application pool with AspNetCoreModuleV2

Hi I am trying to host a multiple .net core 3 application using the same application pool in IIS But were receiving ACME 500 error on the other application and only first one hosted is working Does ...
NumbahOneCoder's user avatar
0 votes
1 answer
2k views

After upgrading to ASP.NET Core 3.0, I get "Could not create stdoutLogFile ErrorCode = -2147024893."

I'm upgrading an existing ASP.NET Core 2.2 application to 3.0. When I publish and host my APIs inside local IIS, I get the HTTP Error 502.5 - Process Failure page. The point is, I don't see the logs ...
mohammad rostami siahgeli's user avatar
23 votes
4 answers
20k views

Is live reload with in-process aspnet core 3 possible?

I recently upgraded an .Net Framwork AspNet MVC app to a AspNet Core 3 MVC app and I'd like the ability to change a view, save, and refresh my browser window to see the changes. Now it appears I have ...
user3953989's user avatar
  • 1,901