In a Universal Windows App, how would I access data from a company database? Web Service seems the only way that I have seen so far. Somehow I need to hook into the company database.
This particular app will run in a shop shipping area (desktop) and in trucking (mobile/tablet) when they deliver or drop off.
So we were thinking when trucking gets into the wifi range to the shops, then It can connect to the sql server database somehow.
That is an option... another option could be configure an public port to access your database (configure db instance, firewall, server and route too) and your app can connect with database from any place. Or use WebAPI to connect with database with basic services.... or design a webapp and public it.
Do not leave aside the security of the data.