Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 62 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
share|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
5  
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
Any way yo do this without needing an Administrator access? – Joset Sep 10 '12 at 10:49

If you are 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"

share|improve this answer
1  
thanks. I like this solution much better than the command line option – Arsen Zahray Jan 9 '12 at 21:04
Much better solution – Liam Jun 3 '12 at 13:47
8  
Not really a 'much better' solution @Liam - administrator privileges in a dev environment in a corporate setup could give you many more permissions to do dangerous things. A much easier solution, sure, but with power comes responsibility ... – Unsliced Jul 10 '12 at 9:02
2  
Original solution also required execution as administrator - granted for a smaller period of time, and of course you need to be aware what you are doing from a security context. – Stephen Newman Jul 11 '12 at 15:03
1  
so, anyway to do this without admin privileges? – Joset Sep 10 '12 at 11:59

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

Hey also provides a nice GUI tool.

share|improve this answer
1  
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 '12 at 4:17
IMHO this is the best solution – D.Rosado Mar 14 at 11:04

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...

share|improve this answer
Some sites refer to port 8731 instead of 8732. – Nenad Dobrilovic Aug 6 '12 at 12:31

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. :)

share|improve this answer

Open Visual Studio as an Administrator.. It will run.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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