iis

No Deploy option IIS

Hey, I've been looking at MSDeploy recently, specifically this presentation here. http://www.hanselman.com/blog/WebDeploymentMadeAwesomeIfYoureUsingXCopyYoureDoingItWrong.aspx Everything has been going fine till now except I'm trying to find the Deploy/Export Applications within IIS and they don't seem to be present. I'm presuming ...

Updating a Row in a DataTable crashes IIS app Pool.

I have some very simple code that is used to Import data from various files in my database via a .net web application. During my recent updating of this code to make some centralise function calls I ran into a situation where I try to Add a data row to a data table and this crashes or better yet restart the applicaton pool. I noticed tha...

How can I find out if anyone is currently on my website?

If I wanted to see if there are any users currently on my web site, how would I go about doing this? (Excluding netstat) The server is Win Server 2008/IIS 7 Thanks Kevin ...

VS2010 throws exception while opening project

When I try opening a project I get an exception saying Web application is configured to use IIS. Error : The Web Application Project EntityServices is configured to use IIS. To access local IIS Web sites, you must install the following IIS components: IIS 6 Metabase and IIS 6 Configuration Compatibility In addition, you must run ...

Why does IIS use so much more RAM than WebDev (ASP.NET development web server)?

As I was investigating excessive memory usage problems in my ASP.NET application I noticed that the production server seems to use a lot more RAM than my development machine for the exact same input. It turned out to be the difference between IIS (w3wp.exe) and WebDev.WebServer.EXE. I ran the same test on my machine in IIS and WebDev wit...

do not allow integrated windows authentication *for one of the domains*

We have an ASP.NET web application which uses integrated windows authentication. It is accessed by users from two domains, A and B. A is the primary domain and B is an older domain which is going away. Web application is authenticating users using a group policy which only exists in domain A. Every user in domain B has an account in ...

How remove "localhost:portno" when running an asp.net website under iis?

How remove "localhost:portno" when running an asp.net website under iis?... When i browse my virtual directory i can http://localhost:120/mine/Forms/Clients.aspx..... ...

Is it possible to define a virtual directory in IIS and make the files relative to the physical directory and not to the virtual directory ?

Is it possible to define a virtual directory in IIS and somehow make the files in that directory relative to the physical directory and not to the virtual directory ? For instance on my server I have the following folders: D:\WebSite\Css\myTheme.css, D:\WebSite\Images\image1.jpg I created a virtual directory on IIS resources.mysite: In...

copy exe file from IIS server using VBScript

Copy exe file from IIS server using VBScript ...

Move IIS 6.0 Metabase

We are evaluating moving to the Amazon cloud. I want to move the IIS 6 metabase onto an EBS volume so that our domains configuration survives server termination. Is there a way to move the location of the IIS metabase to another drive, or will we just have to setup a regular backup with an automatic restoration when the server restarts? ...

URLScan and percent signs

So I just ran into a stupid problem in which users could not download files that had a percent sign in it. This is an IIS6/Win2k3 box. It wound up being URLScan. I had to un-set two things in urlscan.ini: 1) Set VerifyNormalization to 0 (disabled) 2) Remove the percent sign from the "DenyUrlSequences" section Do an iisreset, a...

How to schedule IIS SEO toolkit to run daily

I have installed Microsoft SEO Toolkit in IIS. http://www.iis.net/download/seotoolkit I want to be able to schedule it to run daily and generate a report. Does anybody know how to do this ? ...

User privileges required for System.DirectoryServices

I'm using System.DirectoryServices to list the status of websites running on a server. Currently I'm using impersonation of an admin account for this to run but I'd prefer to have a specific user account with the bare minimum privileges. Can anyone point me in the right direction? ...

How to set up a cron job for PHP on IIS?

How would I go about setting up a PHP cron job in IIS? ...

IIS7 dynamic content compression and webservices

I am moving and old asmx webservice to a new server with IIS7. This webservice basically sends a big dataset (10mb+) to a winform application. The old solution was implemented using a custom soap extension which compressed the content before sending the stream to the client. The client, of course, implemented the same custom soap extensi...

Running Long Process: Indexing 5GB docs with Lucene

Situation:I have an ASP .NET application that will search through docs using Lucene. I want to run the initial indexing (the index will be incremental after the initial run so there wont be need to index the whole directory again in future). Currently, I have about 5GB of docs (45000files). Problem: My application times out before compl...

Redmine IIS7 installation

Has anybody here ever managed to do it? ...

Can't upload images with Magento 1.4 on Windows/IIS

Everything else works in Magento 1.4 but I can't upload images. Running on Windows/IIS. I know it isn't officially supported but seems odd that everything works but something as simple as image uploads. Tried updating the media path and that is correct. Also updated permissions on directories, but nothing has worked. Any other ideas ...

asp.net path problem when deploying

We have moved a lot of images and javascript file that was inside class to external Javascript file. In development (Debug inside Visual Studio), everything look nice, all images show, all javascript works and all CSS display perfectly. When we do a package and install with IIS ina virtual directory everything that is pointed by the Java...

How to "know" of iisreset on a webservice.

I have a webservice where I want to do something when a the application pool ends, so I thought I'd do: Application_End() { // Some logic here } What happens is if I stop the application pool, this logic is executed. On the other hand, if I just call iisreset, it is NOT. So my question is: where should I put my code so that it i...