Joshua
Joshua

Reputation: 26732

WCF ServiceHost access rights

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?

Upvotes: 170

Views: 123752

Answers (9)

Metin Atalay
Metin Atalay

Reputation: 1517

Open a command prompt as the administrator and you write below command to add your URL:

netsh http add urlacl url=http://+:8000/YourServiceLibrary/YourService user=Everyone

Upvotes: 31

Lucaseto
Lucaseto

Reputation: 51

Other option that work is ..,

If you change de indentity in application pool, you can run the code, the idea is change the aplication pool execution account for one account with more privileges,

For more details use this blog

https://letrasandnumeros.com/2017/11/27/http-could-not-register-url-http-80-hellowcf-your-process-does-not-have-access-rights-to-this-namespace/

Upvotes: 0

lalit
lalit

Reputation: 13

Please open your Visual Studio as administrator:

enter image description here

Upvotes: -3

Doro
Doro

Reputation: 671

Running Visual Studio as administrator could fix the issue, but if you use Visual Studio with for example TortoiseSVN, you cannot commit any changes. Another possible solution would be to run the service as administrator and the rest Visual Studio as local user.

Upvotes: -2

Vicky
Vicky

Reputation: 821

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

Upvotes: 3

Stephen Newman
Stephen Newman

Reputation: 1977

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"

Upvotes: 91

Davide Icardi
Davide Icardi

Reputation: 12209

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

Upvotes: 36

Anitesh Kumar.
Anitesh Kumar.

Reputation: 5

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

Upvotes: -2

Joshua
Joshua

Reputation: 26732

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

Upvotes: 183

Related Questions