I developed a C # application that uses SQL Express that initially the bd and the application were installed on a single machine. The client now needs the bd to be available from another computer on the network. I installed SQL Express on the "other" machine and changed the connection string to:
connectionString = "Data Source = 192.168.1.xx\SQLExpress,1433; Integrated Security=SSPI; Initial Catalog = baseDados;"/>
where 192.168.1.xx is the IP of the machine where the localized database is located. The Tcp / Ip is enabled.
Is this enough to make the connection?
When trying to access the program / database gives the error:
"... provider: TCP provider, error 0 - A connection attempt failed because the connected component did not respond correctly after a period of time, the established connection failed because the connected host did not respond"
Can someone help me?