<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>AddressAccessDeniedException: HTTP could not register URL http://+:8080/&amp;lt;…&amp;gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx</link><description>A while back, when I was first doing WCF development I ran into the following exception: AddressAccessDeniedException : HTTP could not register URL http://+:8080/&amp;lt;…&amp;gt;. Your process does not have access rights to this namespace. The exception message</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#2418117</link><pubDate>Sat, 05 May 2007 03:26:31 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2418117</guid><dc:creator>MichaelGiagnocavo</dc:creator><description>&lt;p&gt;Why does MS have this model for http.sys in the first place? You can bind a socket to an open port as a non-admin, you just can't use the Windows http code to do. &lt;/p&gt;
&lt;p&gt;I can understand if your code is trying to use a port used by another application, and &amp;quot;hide&amp;quot; somewhere, i.e. &lt;a rel="nofollow" target="_new" href="http://server:80/secret/"&gt;http://server:80/secret/&lt;/a&gt;. But if you are doing a &amp;quot;full&amp;quot; bind to a port (i.e., &amp;quot;&lt;a rel="nofollow" target="_new" href="http://server:80/&amp;quot;"&gt;http://server:80/&amp;quot;&lt;/a&gt;), then it should treat it as the same as if you just bound a socket to that port (and not allow any other apps to access that port either). What am I missing here? The only thing I can think of is that some firewalls might not be able to figure out that Malware.exe is listening to port 8080 and not http.sys.&lt;/p&gt;
&lt;p&gt;It is such a pain to have to deal with these ACLs. For WCF, we usually just don't use HTTP bindings (since netTcp doesn't have this issue). If we have to expose via HTTP outside of IIS, then yea, we make that app run as local admin. Sucks, but it's more manageable than having to make sure every machine (development, testing, staging, production) has these ACLs.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#2418872</link><pubDate>Sat, 05 May 2007 04:15:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2418872</guid><dc:creator>paulwh</dc:creator><description>&lt;P&gt;I agree that having to get these ACLs set up is a royal pain. Which is precisely why I posted this. I want to make it easier so that developers can do the "right thing" and not run as administrator. There are a lot of organizations where the run as admin requirement would be a deal killer. Does your project use an MSI for deployment to staging and production servers? How do you configure the service account in your deployments? If there were a standalone VBS script, or a custom action for an MSI to set the ACLs would you use it?&lt;/P&gt;
&lt;P&gt;Personally I don't fully understand the rationale behind the HTTP reservation system, except that since http.sys does all multiple processes to bind to a single port with a different path, it makes some sense to allow applications to restrict who can use a particular URL. However I will forward your question on to some people and see if I can get you a more difinitive answer.&lt;/P&gt;
&lt;P&gt;Feel free to shoot me an email. sflanker (at) hotmail (dot) com.&lt;/P&gt;</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#5645209</link><pubDate>Wed, 24 Oct 2007 12:04:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5645209</guid><dc:creator>Sergiu</dc:creator><description>&lt;p&gt;I'm on Windows Vista and i tryed to use you're tool but i get the same error. Any other methods to do that?&lt;/p&gt;</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#5645250</link><pubDate>Wed, 24 Oct 2007 12:06:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5645250</guid><dc:creator>Sergiu</dc:creator><description>&lt;p&gt;Nad now i get a SDDL string format exception&lt;/p&gt;</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#5914525</link><pubDate>Mon, 05 Nov 2007 21:00:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5914525</guid><dc:creator>Peter Bernier</dc:creator><description>&lt;p&gt;Thank you for posting this Paul!&lt;/p&gt;
&lt;p&gt;Your HttpNamespaceManager tool let me get around a problem that's been blocking me from running a WCF project that I've been working on. &lt;/p&gt;
&lt;p&gt;(Most of the project was developed on a machine running the dev environment as admin, but I ran into the access rights issue when I brought it into my more secured environment and was running visual studio as a regular user.) &lt;/p&gt;
&lt;p&gt;Just a note to anyone else making us of the tool... &amp;nbsp;I received unhandled exceptions trying to run the tool as an unprivileged user, but it worked fine when I ran is as an administrator (which makes perfect sense..).&lt;/p&gt;</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#6718573</link><pubDate>Mon, 10 Dec 2007 05:30:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6718573</guid><dc:creator>paulwh</dc:creator><description>&lt;P&gt;Sergiu, I'm sorry you're having trouble getting the tool to work. I recommend you look at the source code to understand more of what's going on. Or you could send me a exception message/stack trace of the exception you're receiving and I can try and debug it. My email is sflanker (at) hotmail (dot) com.&lt;/P&gt;
&lt;P&gt;-Paul&lt;/P&gt;</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#6776984</link><pubDate>Sat, 15 Dec 2007 14:58:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6776984</guid><dc:creator>Idetrorce</dc:creator><description>&lt;p&gt;very interesting, but I don't agree with you &lt;/p&gt;
&lt;p&gt;Idetrorce&lt;/p&gt;</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#6784417</link><pubDate>Sun, 16 Dec 2007 22:51:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:6784417</guid><dc:creator>paulwh</dc:creator><description>&lt;p&gt;Idetrorce, do you mind elaborating on what you don't agree with?&lt;/p&gt;
&lt;p&gt;-Paul&lt;/p&gt;
</description></item><item><title>AddressAccessDeniedException: HTTP could not register URL http://+:80/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8004483</link><pubDate>Mon, 03 Mar 2008 19:07:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8004483</guid><dc:creator>The Trainer</dc:creator><description>&lt;p&gt;One time I was playing with some of the Hands-on-Labs of Visual Studio 2008 Training kit then I&amp;amp;#39;ve&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8298155</link><pubDate>Tue, 18 Mar 2008 02:31:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8298155</guid><dc:creator>Sensbachtal</dc:creator><description>&lt;P&gt;Just wanted to say Hello to everyone. &lt;/P&gt;
&lt;P&gt;Much to read and learn here, I'm sure I will enjoy !&lt;/P&gt;</description></item><item><title>.net 3.5 - my recent presentation resources</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8338525</link><pubDate>Thu, 27 Mar 2008 02:56:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8338525</guid><dc:creator>Team Individualism</dc:creator><description>&lt;p&gt;Yesterday I presented to one of my financial services customers in the city on an overview of what's&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8357374</link><pubDate>Fri, 04 Apr 2008 19:08:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8357374</guid><dc:creator>Rui Covelo</dc:creator><description>&lt;p&gt;Your tool saved my day. I was getting &amp;quot;HttpSetServiceConfiguration completed with 87&amp;quot; when using httpcfg. I don't have a clue what &amp;quot;87&amp;quot; means... I wasn't even sure if this was a problem or not. With your tool, I easily added the missing url. Thanks!&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8590276</link><pubDate>Tue, 10 Jun 2008 21:25:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8590276</guid><dc:creator>Bob W</dc:creator><description>&lt;p&gt;Thanks so much for posting this - absolutely and without doubt saved me hours of work.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8686067</link><pubDate>Fri, 04 Jul 2008 02:32:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8686067</guid><dc:creator>Chris D</dc:creator><description>&lt;p&gt;This Tool ROCKS!!!!! &amp;nbsp;Saved me from pulling out my few remaining hairs. &amp;nbsp;Thanks!&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8831179</link><pubDate>Mon, 04 Aug 2008 17:39:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8831179</guid><dc:creator>Chad Knudson</dc:creator><description>&lt;p&gt;I ran your tool and got an exception in SecurityIdentityFromWellKnownSid with the call to LookupAccountSid returning a blank string. &amp;nbsp;I'm running on Windows XP SP2.&lt;/p&gt;
&lt;p&gt;I tried running the .exe you included in the .ZIP file as well as building and running under VS 2008.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8842632</link><pubDate>Fri, 08 Aug 2008 09:57:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8842632</guid><dc:creator>devidblein</dc:creator><description>&lt;p&gt;����������!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.youtube.com/watch?v=WkjTeN6jGTk"&gt;http://www.youtube.com/watch?v=WkjTeN6jGTk&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8902405</link><pubDate>Thu, 28 Aug 2008 05:52:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8902405</guid><dc:creator>VistaSucks - Go Windows Server 2008</dc:creator><description>&lt;p&gt;This tool works great on Windows Server 2008. Thanks for posting it.&lt;/p&gt;
</description></item><item><title>Some WCF Gotchas</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8981852</link><pubDate>Tue, 07 Oct 2008 07:17:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8981852</guid><dc:creator>cruizer</dc:creator><description>&lt;p&gt;A project our team (in my employer) has been working on for a good number of months now makes extensive&lt;/p&gt;
</description></item><item><title>Some WCF Gotchas</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8981877</link><pubDate>Tue, 07 Oct 2008 07:22:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8981877</guid><dc:creator>cruizer</dc:creator><description>&lt;p&gt;A project our team (in my employer) has been working on for a good number of months now makes extensive&lt;/p&gt;
</description></item><item><title>Some WCF Gotchas</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8981904</link><pubDate>Tue, 07 Oct 2008 07:27:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8981904</guid><dc:creator>cruizer</dc:creator><description>&lt;p&gt;A project our team (in my employer) has been working on for a good number of months now makes extensive&lt;/p&gt;
</description></item><item><title>Some WCF Gotchas</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#8982160</link><pubDate>Tue, 07 Oct 2008 08:12:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8982160</guid><dc:creator>cruizer</dc:creator><description>&lt;p&gt;A project our team (in my employer) has been working on for a good number of months now makes extensive&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9010819</link><pubDate>Wed, 22 Oct 2008 10:12:38 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9010819</guid><dc:creator>Pierre</dc:creator><description>&lt;p&gt;I was in an http Wcf endpoint hosted by a windows service scenario, stucked by the &amp;quot;HTTP could not register URL&amp;quot; error. Your post saved me.&lt;/p&gt;
&lt;p&gt;It works great on XP sp2 and Win 2003. &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9052185</link><pubDate>Fri, 07 Nov 2008 16:41:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9052185</guid><dc:creator>jester</dc:creator><description>&lt;p&gt;thanks bro'. great work. sorted me out straight away.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9064446</link><pubDate>Thu, 13 Nov 2008 00:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9064446</guid><dc:creator>Anonymous</dc:creator><description>&lt;p&gt;This tool doesn't work under vista with the user logged in as a non-administrator&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9126063</link><pubDate>Thu, 20 Nov 2008 00:29:33 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9126063</guid><dc:creator>Fatih Boy</dc:creator><description>&lt;p&gt;Thanks for your tool. When i try to run your application i got &amp;quot;Invalid ACE String Format&amp;quot; exception.&lt;/p&gt;
&lt;p&gt;So i just take a look at its source code. I would like to suggest following changes to make it culture invariant.&lt;/p&gt;
&lt;p&gt;File : AccessControlEntry.cs&lt;/p&gt;
&lt;p&gt;Line : 160&lt;/p&gt;
&lt;p&gt;From : Regex aceRegex = new Regex(aceExpr, RegexOptions.IgnoreCase);&lt;/p&gt;
&lt;p&gt;To &amp;nbsp; : Regex aceRegex = new Regex(aceExpr, RegexOptions.IgnoreCase|RegexOptions.CultureInvariant);&lt;/p&gt;
&lt;p&gt;File : Program.cs&lt;/p&gt;
&lt;p&gt;Line : 25&lt;/p&gt;
&lt;p&gt;From : Regex actionRegex = new Regex(@&amp;quot;(-|--|/)(?'action'ad?d?|ed?i?t?|re?m?o?v?e?)&amp;quot;, RegexOptions.IgnoreCase);&lt;/p&gt;
&lt;p&gt;To &amp;nbsp; : Regex actionRegex = new Regex(@&amp;quot;(-|--|/)(?'action'ad?d?|ed?i?t?|re?m?o?v?e?)&amp;quot;, RegexOptions.IgnoreCase|RegexOptions.CultureInvariant);&lt;/p&gt;
&lt;p&gt;File : AccessControlList.cs&lt;/p&gt;
&lt;p&gt;Line : 78&lt;/p&gt;
&lt;p&gt;From : Regex aclRegex = new Regex(AccessControlList.aclExpr, RegexOptions.IgnoreCase);&lt;/p&gt;
&lt;p&gt;To &amp;nbsp; : Regex aclRegex = new Regex(AccessControlList.aclExpr, RegexOptions.IgnoreCase|RegexOptions.CultureInvariant);&lt;/p&gt;
&lt;p&gt;File : SecurityDescription&lt;/p&gt;
&lt;p&gt;Line : 116&lt;/p&gt;
&lt;p&gt;From : Regex sddlRegex = new Regex(SecurityDescriptor.sddlExpr, RegexOptions.IgnoreCase);&lt;/p&gt;
&lt;p&gt;To &amp;nbsp; : Regex sddlRegex = new Regex(SecurityDescriptor.sddlExpr, RegexOptions.IgnoreCase|RegexOptions.CultureInvariant);&lt;/p&gt;
&lt;p&gt;Feel free to contact. fatih (at) enterprisecoding (dot) com.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9146197</link><pubDate>Thu, 27 Nov 2008 15:08:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9146197</guid><dc:creator>Dani</dc:creator><description>&lt;p&gt;one thing I don't understand - my wizard created WCF project didn't need to use this tool, a service that I've created from scratch had this rights problem.&lt;/p&gt;
&lt;p&gt;what MS do with the wizard that bypass this thing ?&lt;/p&gt;
</description></item><item><title>WCF Error: HTTP could not register URL http://+:8000/... Your process does not have access rights to this namespace</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9255904</link><pubDate>Mon, 29 Dec 2008 20:48:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9255904</guid><dc:creator>Anirban Chakladar|Blog</dc:creator><description>&lt;p&gt;While working with WCF services over HTTP you may come across this error: HTTP could not register URL&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9280999</link><pubDate>Mon, 05 Jan 2009 17:48:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9280999</guid><dc:creator>Todd</dc:creator><description>&lt;p&gt;Awesome utility. &amp;nbsp;Saved a lot o hairs from being pulled from my head.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9463839</link><pubDate>Sat, 07 Mar 2009 06:24:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9463839</guid><dc:creator>Bus tickets</dc:creator><description>&lt;p&gt;Why are they making so complicated for following just one sample code from someone. Almost all samples from MSDN talk about &lt;a rel="nofollow" target="_new" href="http://loca:8000"&gt;http://loca:8000&lt;/a&gt; and then everyone is hit by the same error and there is no easy way to fix it. &lt;/p&gt;
&lt;p&gt;I tried to run your code on Windows XP3 and it is giving me Parameter is incorrect exception. It is letting me add the user, checks the box but once i click OK button it gives an exception.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9522612</link><pubDate>Tue, 31 Mar 2009 16:23:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9522612</guid><dc:creator>Thomasek</dc:creator><description>&lt;p&gt;Hello everybody,&lt;/p&gt;
&lt;p&gt;thanks for a useful tool. I still get the &amp;quot;Parameter is incorrect&amp;quot; exception when trying to register an URL with containing star convention (e.g. http:///+.80/Test/). If I try to register a complete URI (&lt;a rel="nofollow" target="_new" href="http://localhost:80/Test/"&gt;http://localhost:80/Test/&lt;/a&gt;), the HttpNamespaceManager succeeds.&lt;/p&gt;
&lt;p&gt;I'm running Windows XP SP3. Have you found a solution for this?&lt;/p&gt;
&lt;p&gt;T&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Tomas&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9628812</link><pubDate>Tue, 19 May 2009 20:42:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9628812</guid><dc:creator>matt</dc:creator><description>&lt;p&gt;HttpSysConfig seems to be a better tool: smaller KBytes, fewer bugs and a better UI&lt;/p&gt;
&lt;p&gt;If you use HttpNamespaceManager, don't delete all the entries! It screws the app up and you can't add any/it crashes upon startup&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9628819</link><pubDate>Tue, 19 May 2009 20:44:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9628819</guid><dc:creator>matt</dc:creator><description>&lt;p&gt;@thomasek:&lt;/p&gt;
&lt;p&gt;Your url:&lt;/p&gt;
&lt;p&gt;http:///+.80/Test/&lt;/p&gt;
&lt;p&gt;Has too many slashes after http and a period instead of a colon delimiting the host/port. Use HttpSysConfig instead; it's more guided&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9827539</link><pubDate>Thu, 09 Jul 2009 23:08:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9827539</guid><dc:creator>Joel</dc:creator><description>&lt;p&gt;HttpSysConfig has a big advantage over the tool available on this page, it runs in Windows XP.&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9892998</link><pubDate>Wed, 09 Sep 2009 11:10:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9892998</guid><dc:creator>r701653</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Your tool is great !&lt;/p&gt;
&lt;p&gt;But i want integrate it in a setup project so i want add a namespace using your lib.&lt;/p&gt;
&lt;p&gt;So,&lt;/p&gt;
&lt;p&gt;what are steps to add a new namespace without using WinForm ?&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9893000</link><pubDate>Wed, 09 Sep 2009 11:14:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9893000</guid><dc:creator>rg701653</dc:creator><description>&lt;p&gt;Ok, i didn't read the option 2.&lt;/p&gt;
&lt;p&gt;Done&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9893598</link><pubDate>Thu, 10 Sep 2009 14:36:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9893598</guid><dc:creator>Paulo Brito</dc:creator><description>&lt;p&gt;I'm running a Windows XP SP3, in a machine that's, on the inside of, a company network domain, and as a consequence it's under the company's network &lt;/p&gt;
&lt;p&gt;policies. I've tried to host a &amp;quot;WCF Service&amp;quot; using a &amp;quot;Windows Service&amp;quot; running with the permissions of &amp;quot;NT AUTHORITY\NetworkService&amp;quot; in this machine.&lt;/p&gt;
&lt;p&gt;I also tried to run the service in solo, it runs ok. But when I add the code for the:&lt;/p&gt;
&lt;p&gt;[C# code line 48] - host = new ServiceHost(typeof(PWCFService.PwService)); // this code line runs fine&lt;/p&gt;
&lt;p&gt;[C# code line 49] - host.Open(); // this code line throws the ERROR!!!&lt;/p&gt;
&lt;p&gt;The error is: &amp;quot;HTTP could not register URL http://+:8731/Design_Time_Addresses/PwService/. Your process does not have access rights to this namespace &lt;/p&gt;
&lt;p&gt;(see &lt;a rel="nofollow" target="_new" href="http://go.microsoft.com/fwlink/?LinkId=70353"&gt;http://go.microsoft.com/fwlink/?LinkId=70353&lt;/a&gt; for details).&amp;quot;&lt;/p&gt;
&lt;p&gt;This error does not go away. I already used the 'httpcfg' tool (trying all possible combinations of URL's and permissions) after that I used the &lt;/p&gt;
&lt;p&gt;'HttpNamespaceManager' app and still, no can do. In both cases I visualised the results of the tools using the command 'httpcfg query urlacl', and I &lt;/p&gt;
&lt;p&gt;realised that I was already able to obtain manually (with the 'httpcfg' tool) the same results as the 'HttpNamespaceManager' tool was getting.&lt;/p&gt;
&lt;p&gt;One example of the results are: -----------------------------------------------------------&lt;/p&gt;
&lt;p&gt; &amp;nbsp;URL : http://+:8731/Design_Time_Addresses/&lt;/p&gt;
&lt;p&gt; &amp;nbsp;ACL : D:(A;;GAGXGWGR;;;S-1-5-21-1246633644-337528824-2052957216-3235)(A;;GAGXGWGR;;;NS)&lt;/p&gt;
&lt;p&gt;-------------------------------------------------------------------------------------------&lt;/p&gt;
&lt;p&gt;And I'm still stuck with this error...&lt;/p&gt;
&lt;p&gt;{START - [[STACK TRACE]] }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.SharedHttpTransportManager.OnOpen()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.HttpChannelListener.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.DatagramChannelDemuxer`2.OnOuterListenerOpen(ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan &lt;/p&gt;
&lt;p&gt;timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.SingletonChannelListener`3.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.NegotiationTokenAuthenticator`1.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.WrapperSecurityCommunicationObject.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.CommunicationObjectSecurityTokenAuthenticator.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecurityUtils.OpenTokenAuthenticatorIfRequired(SecurityTokenAuthenticator tokenAuthenticator, TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecurityProtocolFactory.Open(String propertyName, Boolean requiredForForwardDirection, SecurityTokenAuthenticator &lt;/p&gt;
&lt;p&gt;authenticator, TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SymmetricSecurityProtocolFactory.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.WrapperSecurityCommunicationObject.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecurityProtocolFactory.Open(Boolean actAsInitiator, TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecurityListenerSettingsLifetimeManager.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.SecurityChannelListener`1.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecuritySessionSecurityTokenAuthenticator.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.WrapperSecurityCommunicationObject.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.CommunicationObjectSecurityTokenAuthenticator.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecurityUtils.OpenTokenAuthenticatorIfRequired(SecurityTokenAuthenticator tokenAuthenticator, TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecuritySessionServerSettings.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.WrapperSecurityCommunicationObject.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Security.SecurityListenerSettingsLifetimeManager.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.SecurityChannelListener`1.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at System.ServiceModel.Channels.CommunicationObject.Open()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; at PWCFService.PwService.OnStart(String[] args) in C:\Documents and Settings\pbrito\Desktop\PWCFService\PWCFService\PwService.cs:line 49&lt;/p&gt;
&lt;p&gt;{END - [[STACK TRACE]] }&lt;/p&gt;
&lt;p&gt;Please can anyone help me...&lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9910084</link><pubDate>Tue, 20 Oct 2009 18:06:36 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9910084</guid><dc:creator>John</dc:creator><description>&lt;p&gt;I ran your tool and added a url but now it is throwing an exceptiong &amp;quot;Unable to Get Well Known SID&amp;quot; so the application doesn't do anything anymore. &lt;/p&gt;
&lt;p&gt;I debugged it and it loops through all the available urls but never returns the table dictonary to the caller. &lt;/p&gt;
</description></item><item><title>re: AddressAccessDeniedException: HTTP could not register URL http://+:8080/&lt;…&gt;.</title><link>http://blogs.msdn.com/paulwh/archive/2007/05/04/addressaccessdeniedexception-http-could-not-register-url-http-8080.aspx#9910093</link><pubDate>Tue, 20 Oct 2009 18:18:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9910093</guid><dc:creator>John</dc:creator><description>&lt;p&gt;Now i cannot access my wcf services being hosted on IIS anymore. Help! I need this asap. &lt;/p&gt;
</description></item></channel></rss>