I have been reading O'Reilly's "RESTful .NET" and am working with the example program on pg. 24 - 25. This sets up a custom binding for handling REST requests. When I execute the code, it fails as it does not have permission to set up listening on http://localhost:8889/TestHttp

According to MSDN (http://msdn.microsoft.com/en-us/library/ms733768%28VS.100%29.aspx), I need to configue netsh. I am using the following netsh string:

netsh http add urlacl url=http://localhost:8889/TestHttp user=DOMAIN\user

where DOMAIN\user is customized to my account.

This appears to process in an additional console window, but executing my code causes the same failure. Does anyone know how to fix this ?

Thanks,

Scott

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If you are on vista or windows 7 you need to run a cmd.exe session or powershell as administrator then run the command.

link|improve this answer
The command completes successfully, but VS 2010 reports "Your process does not have access rights to this namespace (see go.microsoft.com/fwlink/?LinkId=70353 for details)." What am I doing wrong ? – Scott Davies Jan 8 '10 at 18:08
Got it! I had to launch VS 2010 Beta 2 as an administrator. – Scott Davies Jan 8 '10 at 18:30
feedback

Your Answer

 
or
required, but never shown

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