I just tried to move one of WCF service to windows authentication. using this connection string
<add name="MembershipConnection" connectionString="Data Source=DBADDRESS ;Initial Catalog=aspNetMembership;Persist Security Info=True;Integrated Security=SSPI;"/>
WCF service is hosted in IIS (2003) and the user I have setup under 'Directory Security' as the user we have setup for this app that has permission setup in SQL. The Application Pool setup for this app is running under 'Network Service' user, but I get this exception when trying to use the service.
System.Data.SqlClient.SqlException: Login failed for user 'Domain\MAchineName$'
I talked to our system admin and he says that the $ at the end of the user-name means that the machine itself if trying to authenticate not the user.
any ideas on why the machine is trying to authenticate rather than the user setup in IIS?