I have a WCF service that accesses a SQL database to fetch data . I would like to deploy this service onto IIS . However , when i do this , my service is not able to access the database . This is how my service accesses the DB
SqlConnection thisConnection = new SqlConnection(@"user id=SAIESH\Saiesh Natarajan;" +
"password=;server=SAIESH\\SQLEXPRESS;" +
"Trusted_Connection=yes;" +
"database=master; " +
"connection timeout=30");
I need to know what i should do to be able to access this DB from my WCF service hosted on IIS