I've this situation with a web application:
-I don't have the source code -We need to change the database server ASAP -In order for the application to work, we need to change the connection string or find a workaround for this
It's a .NET 1.1 application, and the connection string is into a .dll. ¿What options do I have? The last time we changed the server, we put everything in the same server(including the database server) and then we added the ip of the database server to the new server... but this is not possible now because the database server will be hosted in other place.
Is there some way to "emulate" the ip of the last server?
What else can I do?