I have written a simple program(Winforms.NET), that selects a random word from a dictionary (DB table) everyday. When the DB is embedded its fine, but if I want to make the program take the data from a remote server.
I suppose I have to put the ip address of SQL Server host into my connection string, but if host allows remote connections.
Or I will make a WebService that sends the data and my desktop app will consume the WebService. Would it be a right approach.
If yes, any leads on how to consume webservice from WinformsApp.
Thanks in advance