iis-6

Issues with Angular 5 URL Rewrite

故事扮演 提交于 2020-06-16 03:52:08
问题 I built an Angular 5 application with two routes. I currently have: Home/DailySummary and Home/Documents. When I publish the application to the server (IIS 6.0 w/ URL Rewrite) and navigate to the Home.aspx page everything runs perfectly and my Routing directs me to DailySummary and Documents if I click those links. The issue I'm having is refreshing or navigating to the page without going to Home.aspx, it directs me to the root folder. I'm certain this has something to do with my URL rewrite

classic asp site randomly hangs IIS6

风格不统一 提交于 2020-05-17 04:18:06
问题 We have a classic ASP site that connects to a SOAP server. We have not been able to figure out what causes the website to hang. When we see that the website is hanging we simply restart the soap server and the website works fine(until the next time it hangs). I want to mention that when the website hangs I can get to any page on the server that has .html or .htm extension, but any page that has an .asp extension will simply clock. 回答1: Fire up performance monitor, select Active Server Pages

Controlling access to a website with IIS/Active Directory

≯℡__Kan透↙ 提交于 2020-02-29 06:54:47
问题 I need to secure a legacy help site on our network that points out to the world. Ideally, I want to have people authenticate with their active directory logins, because everybody in the company is already there, and they already know that stuff. Ideally, I'd need to set the default domain so people don't have to type that. I have an example to model my solution after, but to call it weird is a bit of an understatement. Anonymous access is enabled, with authenticated access restricted to

Controlling access to a website with IIS/Active Directory

荒凉一梦 提交于 2020-02-29 06:54:14
问题 I need to secure a legacy help site on our network that points out to the world. Ideally, I want to have people authenticate with their active directory logins, because everybody in the company is already there, and they already know that stuff. Ideally, I'd need to set the default domain so people don't have to type that. I have an example to model my solution after, but to call it weird is a bit of an understatement. Anonymous access is enabled, with authenticated access restricted to

Intermittent '401: Unauthorized' exceptions from server

泪湿孤枕 提交于 2020-02-25 05:30:07
问题 I have a web service that is hosted in a clustered environment. The web application that is calling this service is also hosted in a clustered environment, but on a different set of IIS6 servers. Hence, the application servers are appserv1 and appserv2 and the service servers are svcserv1 and svcserv2. We don't control which servers are accessed since we typically just refer to them as either appserv or svcserv, respectively. The service is a WCF Service but has been created to be compatible

Intermittent '401: Unauthorized' exceptions from server

亡梦爱人 提交于 2020-02-25 05:29:07
问题 I have a web service that is hosted in a clustered environment. The web application that is calling this service is also hosted in a clustered environment, but on a different set of IIS6 servers. Hence, the application servers are appserv1 and appserv2 and the service servers are svcserv1 and svcserv2. We don't control which servers are accessed since we typically just refer to them as either appserv or svcserv, respectively. The service is a WCF Service but has been created to be compatible

Restart App Pool from ASP.NET via WMI Problems

坚强是说给别人听的谎言 提交于 2020-02-22 06:11:47
问题 I've been trying to create a C# ASP.NET page which sits on a Windows Server 2003 IIS 6 server and when called (remotely), restarts/recycles a specific application pool on the server. I've not been having much luck, does anyone know where I'm going wrong? I've tried many combinations and tried running direct from server but to no-avail. When I don't pass the credentials over I get the error... Access is denied ...and when I do pass them I get the error... User credentials cannot be used for

Restart App Pool from ASP.NET via WMI Problems

旧时模样 提交于 2020-02-22 06:04:29
问题 I've been trying to create a C# ASP.NET page which sits on a Windows Server 2003 IIS 6 server and when called (remotely), restarts/recycles a specific application pool on the server. I've not been having much luck, does anyone know where I'm going wrong? I've tried many combinations and tried running direct from server but to no-avail. When I don't pass the credentials over I get the error... Access is denied ...and when I do pass them I get the error... User credentials cannot be used for

How to remove trailing slash from window.location.pathname

帅比萌擦擦* 提交于 2020-02-02 03:57:07
问题 I have the following code that's allowing me to switch between desktop and mobile versions of my website, <script type="text/javascript"> if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) { window.location = "http://m.mysite.co.uk"; } </script> I recently realised all that does is send everyone to the homepage of the site. I dug around a bit and figured I could redirect specific pages to the mobile version by amending the above to, <script type=

How do I get the Silverlight Pivot Server application to run on IIS 6?

旧街凉风 提交于 2020-01-25 04:10:33
问题 How do I get the Pivot Server Application to run on IIS 6? The handlers for the cxml don't seem to be registering properly, because I get a 404 for requests to .cxml files. The closest solution I can see so far is on http://forums.silverlight.net/forums/p/192470/454278.aspx , but this doesn't seem to be the right way to do it. I see the handlers in the web.config under both system.webserver/handlers and system.web/httpHandlers. 回答1: In addition to the extension mappings proposed by gsimard on