iis-express

How do I prevent IISExpress & My Web Sites folders from cluttering up my My Documents folder?

回眸只為那壹抹淺笑 提交于 2020-05-09 18:06:22
问题 I noticed recently IISExpress & My Web Sites folders getting added to my My Documents folder on my Windows 7 machine. I recently installed VS2012, so I'm guess that's the culprit, but I haven't been able to find anything on line that explains how to change these defaults, if possible. 回答1: Microsoft cluttering up my 'Documents' folder with all their programs' (junk) folders drives me insane as well. I have conceded somewhat by creating a Data folder under my Documents folder, where I am

How do I prevent IISExpress & My Web Sites folders from cluttering up my My Documents folder?

倾然丶 夕夏残阳落幕 提交于 2020-05-09 18:05:42
问题 I noticed recently IISExpress & My Web Sites folders getting added to my My Documents folder on my Windows 7 machine. I recently installed VS2012, so I'm guess that's the culprit, but I haven't been able to find anything on line that explains how to change these defaults, if possible. 回答1: Microsoft cluttering up my 'Documents' folder with all their programs' (junk) folders drives me insane as well. I have conceded somewhat by creating a Data folder under my Documents folder, where I am

Accessing IISExpress for an asp.net core API via IP

╄→尐↘猪︶ㄣ 提交于 2020-03-20 05:31:47
问题 I have an asp.net core project running on IIS Express. The URLs (http://localhost:53142/ and https://localhost:44374/) work if I type into my browser as localhost, however, if i put in my IPv4 ip address (192.168.1.72) they don't work. Side-by-side I can ping the 192.168.1.72 address just fine. Why can't I access via ip, and how would I do so? 回答1: IIS Express does not allow remote connections by default. Here are two options for you: Configure to use UseKestrel like public static

Accessing IISExpress for an asp.net core API via IP

微笑、不失礼 提交于 2020-03-20 05:21:59
问题 I have an asp.net core project running on IIS Express. The URLs (http://localhost:53142/ and https://localhost:44374/) work if I type into my browser as localhost, however, if i put in my IPv4 ip address (192.168.1.72) they don't work. Side-by-side I can ping the 192.168.1.72 address just fine. Why can't I access via ip, and how would I do so? 回答1: IIS Express does not allow remote connections by default. Here are two options for you: Configure to use UseKestrel like public static

Accessing IISExpress for an asp.net core API via IP

房东的猫 提交于 2020-03-20 05:19:25
问题 I have an asp.net core project running on IIS Express. The URLs (http://localhost:53142/ and https://localhost:44374/) work if I type into my browser as localhost, however, if i put in my IPv4 ip address (192.168.1.72) they don't work. Side-by-side I can ping the 192.168.1.72 address just fine. Why can't I access via ip, and how would I do so? 回答1: IIS Express does not allow remote connections by default. Here are two options for you: Configure to use UseKestrel like public static

Cannot run web application on Windows 10 using IIS Express

青春壹個敷衍的年華 提交于 2020-03-17 05:37:20
问题 I am developing a web application using ASP.NET MVC (a rather simple application, having just a single controller and a few routes; there´s nothing fancy in it). In the beginning I used Visual Studio 2013 and Windows 8/8.1. A couple of days ago I switched to Windows 10 and I am having trouble to run the application on my local development machine (I have both Visual Studio 2013 and 2015 installed, but I continue using Visual Studio 2013 for this project). When I start a new instance for

IIS Express website works fine, not in IIS

此生再无相见时 提交于 2020-01-25 11:59:06
问题 I have an application that uses IIS 7.5X and Visual Studio 2013 and it works fine in IIS Express. I have had to make changes to allow authentication and allow 32-bit but it still doesn't work on IIS, only IIS express. I have tried to use the publish in VS2013, but that doesn't seem to work. Is there anyway I can find the settings used by IIS express so I can set IIS up so it works the same? Where do I setup logs? Thanks in advance for not closing this question! Also, when I run as IISExpress

IIS Express 8 - Max allowed length

天涯浪子 提交于 2020-01-24 19:08:54
问题 In case the below is too long, my question is whether IIS Express 8 in Visual Studio 2013 obeys the maxAllowedContentLength attribute or if it has some overriding value that prevents large requests When debugging some webapi calls against Visual Studio 2013, I'm receiving this error: Maximum request length exceeded. I searched the internet and everything seems to be pointing to these two config entries: IIS 6-: maxRequestLength IIS 7+: maxAllowedContentLength I've added both these config

Request Client Certificate

女生的网名这么多〃 提交于 2020-01-23 12:09:35
问题 I've seen a lot of unsolved questions about this. Apparently many developers have gotten past this issue, but I haven't seen any solutions posted. I'm trying to read a smart card (X.509 CAC) for my ASP.NET MVC 5 web app. When I try to pull the certificate information like this: var request = HttpContext.Request; var cert = request.ClientCertificate; The cert has empty values. The problem appears to be I am not presenting the dialog to request user certificate info like I see on other websites

How To Disable Https in Visual Studio 2017 Web Proj ASP.NET Core 2.0

心已入冬 提交于 2020-01-20 20:14:16
问题 I've created a default project in Visual Studio 2017 with ASP.NET Core 2.0. I've chosen the Web App with MVC and with Individual Use Auth. By default, it is coming up configured and working with https. I've tried disabling that by going into project properties and removing the user ssl and changing https to http but then I get either and IIS Express Connection error or a 404. I've not see default https before. Where is that coming from and where can I disable it? 回答1: I've just created a