I get the following error when going through the WCF tutorial.

HTTP could not register URL http://+:8000/ServiceModelSamples/Service/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details).

Is this something caused by a restriction on Windows 7?

link|improve this question

feedback

6 Answers

up vote 18 down vote accepted

The issue is that the URL is being blocked from being created by Windows.

Steps to fix: Run command prompt as an administrator. Add the URL to the ACL

netsh http add urlacl url=http://+:8000/ServiceModelSamples/Service user=mylocaluser
link|improve this answer
Glad you fixed that. What did the "+" mean? – John Saunders May 20 '09 at 1:29
I have a hunch that it means a generic local IP. – Joshua May 20 '09 at 11:22
1  
Note: You pretty much have to enter url=http://+:port/path exactly. url=address:port/path did not work for me, as you would think it might. Also note that you have to use the network server as your user ("NT AUTHORITY\NETWORK SERVICE", if that's what your service's installer is set to. – Mike Pateras Jun 15 '10 at 1:58
feedback

If your running via the IDE, running as administrator should help. To do this locate the Visual Studio 2008/10 application icon, right click it and select "Run as administrator"

link|improve this answer
thanks. I like this solution much better than the command line option – Arsen Zahray Jan 9 at 21:04
feedback

You can find a lot of useful information on this blog.

Hey also provides a nice GUI tool.

link|improve this answer
This tool has simplified my life more than once. – Mike Cheel Aug 25 '11 at 17:11
+1 Thanks for sharing! =) – Will Marcouiller Apr 12 at 4:17
feedback

I am working on Windows Vista. Even i faced the same problem but when i tried to run VS 2008 with administrative privileges, the issue resolved and my service was up and running. :)

link|improve this answer
feedback

Another solution is to use the address

http://localhost:8732/Design_Time_Addresses/YOUR_ADDRESS .

.NET Framework (3.5) automatically register this address (http://*:8732/Design_Time_Addresses) for debugging scope. This is useful when you need to host services inside visual studio for debugging or testing. Don't use this on production...

link|improve this answer
feedback

Are you trying to use port 8000? Are you trying to use a host named "+"?

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.