iis-8

Visual Studio 2012 IIS Express 8 Fresh Install - Can't Connect

こ雲淡風輕ζ 提交于 2020-01-10 22:26:29
问题 On Visual Studio 2010 + IIS Express 7 I was able to use IIS Express as a server and browse sites. I've since installed Visual Studio 2012 (on Windows 7 64-bit) with IIS Express 8, and I can't browse a single site on it. In addition, when I look at the log files (\Logs and \TraceLogFiles) I don't even see a single log entry for any of the 2012/IISExpress 8 apps, let alone an error to look into. Looking at applicationhost.config, I do see the site I'm trying to run with the correct path,

Running MVC 6 Beta 8 application on IIS

人走茶凉 提交于 2020-01-09 11:09:05
问题 I'm trying to publish my MVC 6 Beta 8 app. I was able to successfully publish it to Azure, but when I try to publish it to ASPHostPortal, I'm getting 500 error. So I tried to publish the app to a local IIS and also failed. First, I figured out that I need to install HttpPlatformHandler (otherwise IIS was not able to load web.config). But even after that, I'm getting 502.3 error. HTTP Error 502.3 - Bad Gateway There was a connection error while trying to route the request. Also in Event Log I

404.20 for long url in MVC 3

≡放荡痞女 提交于 2020-01-06 03:22:27
问题 I get 404.20 error as result on request (long url). If I decrease length of url all became ok. For example https://almauktg98m6wotn34q0e.****.***/SurfT/gp/html/script/_/2/SENfaUozTXlvLmhvYVdsVUI2N01NX2RyM1I3dmkvcWEtd0kvczhxb1VyNGdkMC9y/ejEvNDJCMkEvTmpCLzFuZC1ZN3YuTDAsbFZsL0tNa040L2tyQS9RbnItdnMwLms3L/E5qQi9QbmRRWi9xMFZjMC1BaTdNUGktc1R3by9BSnFhTi1rMjV5TjUteVBwTi1lNV/QuZ2osZWE4L25UNzFjLzRXai1ZVU5xL1Ridy1BMFdCLWlCZC51aSxGMXkvSnJzelE

Classic ASP/ASP.NET Application Variables

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-06 02:51:06
问题 We inherited a website that is ~40GB in size (mostly from user-submitted content) that has a mixture of classic ASP, inline .Net and and compiled .Net associated with it. There are technically two sites associated with this and to conserve disk space I intentionally setup IIS to have two physical sites pointing to the same folder, but with independent application pools to separate the worker processes. The problem we're running into is occasionally when you visit one of the sites it seems to

Rails app, REMOTE_USER attribute in IIS 8.5 with windows authentication

99封情书 提交于 2020-01-04 05:26:29
问题 I have setup a IIS 8.5 server that runs a rails app using HttpPlatformHandler and Windows authentication. We have also tried using ARR as reverse proxy with same results. This all works completely fine, users are authenticated using kerberos, and anonymous authentication is disabled, no problem there. We can deny specific users and see that it has effect. The problem is that there is no REMOTE_USER or AUTH_USER attribute anywhere in the http response headers. However the HTTP_AUTHORIZATION

How can I make ARR work with SSL offloading DISABLED? 502.3 Bad Gateway

☆樱花仙子☆ 提交于 2020-01-04 03:56:29
问题 So I have been hitting this error for days now. I have googled and googled but nothing seems to resolve my scenario and am hoping someone out there can help. The problem: When I disable SSL offloading in ARR (Routing Rules) I receive the following: 502 - Web server received an invalid response while acting as a gateway or proxy server. There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the

http error 403.14- forbidden

北城以北 提交于 2020-01-02 07:28:26
问题 I successfully hosted my test html page in iis8 . While I try to host the already created site I got the http error 403.14 forbidden. Even I set the default document as my starting html page which has the frame. The website has several folder inner folders. While I enable the directory browsing it will list the page. If I disable it shows 403.14 error. What can I do to resolve this issue? My Test page is like <html> <body> Welcome </body> </html> 回答1: I've been trying to reproduce it on my

Can not access virtual directory under virtual dotnet core api application on IIS 8

旧城冷巷雨未停 提交于 2020-01-01 19:38:30
问题 I am trying to add a virtual directory to my dotnet core API. But it gives me a 404. This api.project.nl page can’t be found No web page was found for the web address: https://api.project.nl/v1/uploads/profiles/profile.jpeg I have set up my api as v1 under the main IIS website as you can see in my IIS project configuration below. The api works fine and I can even reach the /docs folder in my wwwroot whichs serves a index.html (for the custom swagger ui docs). I can reach the uploads folder

RequestAcquireState Hanging on .NET 4.5.1 IIS8

人走茶凉 提交于 2020-01-01 05:21:08
问题 Under heavy load or when using jQuery's ajax abort function, we see requests build up in IIS to the point where no-one can connect and the entire site hangs, forcing a recycle. A similar post from 3 years ago had a similar issue with .NET 4.5 and IIS 7.5 but Microsoft have stated this was fixed in 4.5.1 and released a patch for 4.5. This problem on Windows Server 2012R2 using IIS 8 when trying to use State Server and even more so when using State Server on development machines running Windows

Setting up URL Rewrite rule for a specific domain

好久不见. 提交于 2020-01-01 04:43:14
问题 For local dev testing, I need to catch all requests to www.somedomain.com/XXX (where X is the path), and send them on to localhost/somevdir/XXX . I've added this to my HOSTS file (c:\windows\system32\drivers\etc): 127.0.0.1 www.mydomain.com Then, in IIS8 (Windows 8), I've added a binding to my "Default Web Site" for the host www.mydomain.com. This works, I can now browse www.mydomain.com/test.html and see a test html page. My virtual dir is inside the Default web site. I then add a URL