Hi
In my application, I am creating and opening a channel using binding of wsHttpBinding. I am running application on Vista.
I get this error :
"HTTP could not register URL http://+:80/LoanService/service.svc/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details)."}
I found this piece of information on net to overcome this issue.
If you are running on Windows Vista, you can use the Netsh.exe tool instead. The following shows an example of using this command.
netsh http add urlacl url=http://+:80/MyUri user=DOMAIN\user
I executed this command successfully. But on running the application, I continued to get the same error of denial of access rights.
I would greatly appreciate the quick response.