Issue I am not sure what I did to get my "Attach to Process" feature of VS2019 to stop working. Last week it worked and now this week it doesn’t. Steps to Produce Issue: Open VS2019 Debug -> Attach to
Continue readingTag: iis
[SOLVED] Getting ERR_CONNECTION_REFUSED when running .NET API on localhost from Visual Studio
Issue I’m a newbie in .NET coding, I’m trying to run a project using .NET using IIS Express on Google chrome, I get this error : ERR_CONNECTION_REFUSED Here is what I’ve tried so far, and it does not work: Changing
Continue reading[SOLVED] Visual Studio Projects Fail to Load over WebDav Mapped Network Drive
Issue I recently set up a WebDav server on my network in New York so I can access web projects from my office in California. Everything appears to be working except that I can’t get any Visual Studio projects stored
Continue reading[SOLVED] IIS Express not running in Visual Studio 2019
Issue I am developing a chat application using ASP.NET Core MVC architecture. Initially, the project worked well and could run on IIS Express. but later I found that now the IDE is not working; the project cannot run IIS Express.
Continue reading[SOLVED] Do I need a separate Web Site in IIS for my ASP.NET Core Web API project and my Angular project?
Issue How can I host the published result of this simple tutorial in IIS? Is there guidance on how best to accomplish this? The solution contains an ASP.NET Core Web API project (backend) and an Angular project (front-end). It works
Continue reading[SOLVED] Read large XML file from webserver without splitting in smaller chunks
Issue I’m downloading a file from a 3rd party server, like so: Try req = DirectCast(HttpWebRequest.Create("https://www.example.com/my.xml"), HttpWebRequest) req.Timeout = 100000 ‘100 seconds Resp = DirectCast(req.GetResponse(), HttpWebResponse) reader = New StreamReader(Resp.GetResponseStream) responseString = reader.ReadToEnd() Catch ex As Exception End Try The
Continue reading[SOLVED] PHP Warning: date(): – thats all I get on IIS php 5.5.1
Issue OK, I’ve managed to install php and get it to run, but I use date(); in several scripts. First I got the error with the not set timezone, I’ve set the timezone like this: date.timezone = “Europe/Berlin” now I
Continue reading[SOLVED] Apache doesn't show the correct files
Issue I was messing around a bit trying to add a subdomain to my apache server. Following some tutorials trying to make it work I added virtual hosts. That clearly did not work because now I started getting this site
Continue reading[SOLVED] .NET Core Web API only gets JSON from the Mock Lambda Tool. Using Postman, Swagger & AWS Lambda fail
Issue I recently wrote a .NET Core Web API to receive JSON from a Lambda SNS message event. The Lambda sends the SNS event message JSON (via a POST request) to the API. When I use the ‘Mock Lambda Tool’
Continue reading[SOLVED] Azure App Services Specify Web Config Per Slot or App Service
Issue I’m new to Azure and setting up Microsoft Hosting so hoping someone can shed some light on environment specific Web.config files. I’ve inherited a .NET web application which has different Web.config files per environment. For example: Web.config Web.Test.config Web.Stage.config
Continue reading