Transferring Data between servers
We have an application that is on our companies internal network, and the same application running on an external network for our client.
We want to try to sync the databases when transactions are made.
So If client updates the app we want to update our internal database, and if internal transactions were made in our application it would update the clients db.
Unfortunealty we are unable to pass data into our internal network from the clients as all ports are closed.
We are running SQL server for both. We are trying to make this dyanimic and not a manual process.
We can connect to our clients machine via ftp from our internal server..
We have thought of having the clients transactions write to a file, and then our internal server with a scheduled task would retrieve the file and update our internal database.
Then we would push the changes back to the external server and have a script write to the database.
Not sure this is the best method. If anyone has any ideas on how we should do this please let me know.
Thanks,
Brian
