There are several questions around how to allow a self-hosted WCF application to use BasicHttpBinding with HTTP.SYS without requiring administrative privileges. It boils down to needing to grant permission (from an admin context) to the URL, then the user can host whatever at the specified URL.

netsh http add urlacl url=http://+:80/MyService

I would like to be able to query and add registered URLs without resorting to parsing commandline output of the "netsh" or "httpconfig" commandline tools.

Is there is a public Win32 or .NET API that I can call for this functionality?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

The Win32 API to use is HttpSetServiceConfiguration.

link|improve this answer
Ugh, I totally missed this. I was looking in "HTTP Server API Version 2.0 Functions" on MSDN thinking it would be a cumulative list of functions. Thanks! – Travis Jul 28 '11 at 12:32
feedback

I have exactly this problem in my bug list but it has currently low priority so I didn't deal with it yet. Anyway we found this tool (download the source) which uses mentioned function and it has all needed code to work (it is long way from having Win32 function and having working solution).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.