I have a cool running application on my local server. I made some changes to it and prepared to publish a test approval environment. Since we are migrating the local banks and servers to a new data center
, I decided to test the new application already pointing to the bank in the new data center . The problem is that now, when I change my connection string to the new server and database, when I run the application in Visual Studio I get the following error:
Erro de Servidor no Aplicativo '/'
Falha no logon do usuário 'integracao'.
ConnectionString
public const string CONNECTION_STRING = @"Data Source=ITVRS-D08;Initial Catalog=Teste; User Id=integracao;Password=integracao;";
public const string DEPLOYMENT_CONNECTION_STRING = @"Data Source=ITVRS-D08;Initial Catalog=Teste; User Id=integracao;Password=integracao;";
ConnectionString of the application that was running local
public const string CONNECTION_STRING = @"Data Source=ITVRS-r08;Initial Catalog=Integracao; User Id=integracao;Password=integracao;";
public const string DEPLOYMENT_CONNECTION_STRING = @"Data Source=ITVRS-R08;Initial Catalog=Integracao; User Id=integracao;Password=integracao;";
The 'integration' user was created on the new server with the same permissions and such. It is not a permission problem, I believe, since all permissions have already been granted.
The only difference in environment is that the local server is SQL Server 2008 and in the new data center is SQL Server 2012.
Does it have anything to do with this? What else can I check to be able to run my application?