iis

Web server changed name, url return wrong host name

In our web application (asp.net), the tabs are dynamic links. The links were built like this: finalUrl = "https://" + Request.Url.Host + "/home.aspx"; The link is ended up like: https://server0/home.aspx The problem is the web server's name was server0, but now it was changed to server1. Still the old server name keeps showing up. ...

Need help configuring IIS with ASP.NET in Vista Home Basic.

I have checked the following during turning on Windows features: IIS,IIS Compatibility and under WWW I have checked .NET extensibility.I do not see an ASP.NET option to check.Will these be enough to have IIS running or am I missing something. I do not see the IIS page when I type localhost in my browser.Please help. ...

Is there a ASP.NET web site administration tool in IIS?

I am using asp.net web site administration tool to manage the different roles in my project (currently Customer and Administrator). During the development, in vs 2008, its very easy to manage the roles. (Project -> Asp.Net configuration). How do I manage my roles and users when the system is deployed (IIS)? Is it possible to run a "asp.n...

How do I implement .net plugins without using AppDomains?

Problem statement: Implement a plug-in system that allows the associated assemblies to be overwritten (avoid file locking). In .Net, specific assemblies may not be unloaded, only entire AppDomains may be unloaded. I'm posting this because when I was trying to solve the problem, every solution made reference to using multiple AppDomains....

Diagnosing HTTP 500 errors in Classic ASP

I have recently inherited a website written in Classic ASP, and am currently trying to get a sense of the state of things. The website is working in production, however the development environment (hosting on a Windows Server 2003 box) produces an HTTP 500 error when you try to navigate to it. I realize that HTTP 500 errors just mean th...

Which to use? Visual Studio Development Server or Local IIS Web server?

I've always wondered about this ... and thankfully, now have a good environment of experts to ask this question. When creating a web application project which web server is the most expedient to use? This is a duplicate question ... http://stackoverflow.com/questions/281667/asp-net-development-server-or-localhost-iis ... my bad! ...

Profiling a classic ASP application using AQTime

We have developed a large number of websites using ASP (jscript flavour), talking to the underlying intelligence layer (written in Delphi) through COM. These websites are running on IIS (5 and 6). Over the years this ASP layer has grown into something quite heavy (no business logic, but lots of controller/scenario/view/ajax/etc handling...

Classic ASP/IIS6: How to search the server’s mime map?

This is the same question as this but I'm looking for a classic ASP solution. I have a third party control to provide secure downloads but it expects you to provide the response.contenttype value. I'm trying to have the browser prompt with the following: Response.AddHeader "Content-Disposition", "attachment;filename=""" & strFileName &...

Why Even Recycle an Application Pool?

Maybe someone can shed some light on this simple question: I have a .NET web application that has been thoroughly vetted. It loads a cache per appdomain (process) whenever one starts and can not fully reply to requests until it completes this cache loading. I have been examining the settings on my application pools and have started won...

ColdFusion RDS and NTLM Integrated Authentication Problem

I can't seem to get the magic combination of enabling NTLM authentication and still having RDS work. If I leave just anonymous authentication on, RDS works fine - as soon as I enabled it site wide, RDS fails (which is to be expected). Here is what I have done: This is Windows XP SP2 and ColdFusion 8, Eclipse + Adobe plugins In the IIS ...

What generally causes PHP to encounter a stack overflow?

I am on a windows IIS server serving some php sites. We have moved a working PHP site on to our server, however submitting one of the forms returns: PHP has encountered a Stack overflow When commenting out the MYSQL INSERT and assigning SESSION variables the form processes, however these are vital segments of the submission form. Any...

MOSS FBA never asking for creds

I've set up FBA on an extended site, added a user, verified the central admin can read the users (people picker works fine). The problem is no matter what I try I never get asked for credentials, just get a "You are not authorized to view this page". I have a feeling its something in IIS but I've added all anonymous accounts I can think...

Configuring an ASP.NET application in IIS

I've inherited some aspx (including the web.config file) and am getting the following error. I've created a virtual directory for it but I'm not sure how would I "configure it as an application"? Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please rev...

Handling custom errors with a port in the URL for IIS

I am trying to specify a custom (ASPX) page to handle 404 errors. I can't seem to do this with IIS because I use a port other than the default. I have two versions of my site, one exposed (default port) and one on another port, for testing. I'm trying to do this in testing mode first. If I do: http://www.mysite.com/notapage ... I get ...

Connecting to SSAS 2005 from Excel 2007 over http: how to make it ask for username and password?

I'm trying to let my users connect to OLAP cube in SSAS 2005 using Excel 2007 over the Internet. I've set up dynamic security using fact table in cube. It uses UserName function, so users should authenticate to SSAS using windows accounts. I've set up msmdpump.dll component on IIS, allowing windows authentication, but not anonimous one....

Restrict access to a specific controller by IP address in ASP.NET MVC Beta

I have an ASP.NET MVC project containing an AdminController class - giving me URls like http://myserver/admin/AddCustomer, http://myserver/Admin/ListCustomers, etc. I want to configure the server/app so that URIs containing /Admin are only accessible from the 192.168.0.0/24 network (i.e. our LAN) I'd like to restrict this controller to...

IIS 6.0 Application Pool crash

Have a lot of troubles on production server. Some routing cause crashing of Application Pool with event id 1011: Event Type: Warning Event Source: W3SVC Event Category: None Event ID: 1011 Date: 1/21/2009 Time: 9:08:17 AM User: N/A Computer: xxxxxxxxxxxxx Description: A process serving application pool 'Defaul...

How do I stop Windows server 2008 from going to sleep?

I have just upgraded my server 2003 to serrver 2008. As I write this, my site is available externally. If I were to try again in the morning,the site won't come up. However, if I log back onto the server or access the website from another computer on the network, it works just fine...again! ...

Migrating from IIS 5.1 to Apache 2.11, how do I move/translate ISAPI filters into Apache?

Maybe this isn't even a valid question, so any help would be good. ...

How do I get Visual Web Developer to use IIS, and not ASP.NET development server?

I want to make sure my local is matching the production environment closely and that means running IIS and not the ASP.NET development server that comes with Visual Web Developer express edition. What is the best way to do this? ...