How do I configure my webservice to allow only one specific local user access? Anyone consuming the webservice then would need to pass this users credentials.
I'm thinking I need to disable anon, forms windows authentication then in .net authorization rules in iis remove the allow all users record and add in the local user I've created.
Will that suffice?
Edit: At the moment my web.config is
<authorization>
<allow users="LocalWebServiceUser" />
<deny users="*" />
</authorization>
There is no authentication element at the moment so its taking the default