views:

78

answers:

1

Hi,

I want to upload files directly to IIS7 (in this case I am using the WebRequest object in .NET). Thus I need IIS7 to accept POST, PUT, and DELETE verbs such that I can upload and delete files on the server directly. Is it possible to have IIS accept files without a a web framework like ASP.NET? Essentially I want to be able to use IIS (HTTP) as an FTP server.

A: 

It looks like IIS pretty much assumes that you're going to be passing request to some kind of handler.

Rodrick Chapman