ServiceHost.Open() is throwing this error:

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

So I used netsh to add the url. But event though it is added, i'm still getting the error. This is the command I use:

netsh http add urlacl url=http://+:8001/ user=djerryy

djerryy is my computername. When I run netsh http show urlacl i see it was added.

What am I doing wrong?

Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

It looks like you are missing the name of the user account who is running the service. Here's a couple of options:

  • Local user account:
netsh http add urlacl url=http://+:8001/ user=ComputerName\Username
  • Domain user account:
netsh http add urlacl url=http://+:8001/ user=DomainName\Username
  • Built-in NetworkService account:
netsh http add urlacl url=http://+:8001/ user="NT AUTHORITY\NETWORK SERVICE"
link|improve this answer
i'm not in a domain. and i tried DJERRYY\Djerry, which still gave me the same error – djerry May 28 '10 at 9:14
Where are you hosting your service? Do you start it from Visual Studio? What is the service endpoint? – Enrico Campidoglio May 28 '10 at 9:47
No, the service was installed with a setup project. It runs form windows services. This is the address i'm using as Uri : "net.tcp://localhost:8000", but i also tries adding 8000... – djerry May 28 '10 at 9:52
That URL does not use HTTP as transport protocol. It uses TCP, so you shouldn't get that error. Shouldn't it be "localhost:8001"; instead? Also, under which user account is the Windows Service running? – Enrico Campidoglio May 28 '10 at 10:04
1  
You need to grant access to the HTTP URL to the NetworkService account. I updated my answer with the correct command. – Enrico Campidoglio May 28 '10 at 10:47
show 2 more comments
feedback

I must stress:

netsh http add urlacl url=http://+:8001/ user="NT AUTHORITY\NETWORK SERVICE"

will work only on a system with the English locale!

A better way is to remove that one space and make it:

netsh http add urlacl url=http://+:8001/ user="NT AUTHORITY\NETWORKSERVICE"

Now the command will work on any locale. I spent a good 0,5h battling this today... all because of a single char. ;)

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.