I am studying the development of a new version of a client-server application for a client. The current solution is a website in asp.net mvc.
The purpose of the application is to create a solution for digital signage, which means that on the client the user will create playlists from viedos and images and plan them for display on the screen. The items that will be displayed are the WPF user controls, one with logic for the image and one for logic about the video.
The current application is based on the Internet and directly accesses a central database. When all clients (those who provide information) request data, this is done through a web service. The client is very happy to use the web client, although they require more "rich" behavior. This includes the basic og requirement, which has a preview of both a single "slide" and a set of slides.
I started developing this as a WPF application (discarding Silverlight due to a preview of the wpf user control). Now I am faced with a problem / problem determining how to access the database. Customers probably want to use the same usage pattern as they do now, where they move with their laboratories and therefore are not always on the same network as the database.
My question is this: how do I create a database connection layer, I have to go to a clean web service, because everyone always uses this, or I have to do some kind of disconnected mode where they can work at home and then connect and synchronize their data? Should I require that they be on the same network as the database, so I can connect directly using the database level and connection string?
Will the web service-based approach be fast enough for working with images, videos (thinking only about loading thumbnails of this data, otherwise the data will kill the performance ~ some Gb og data). I plan to use thumbnails on clients and when they connect to the home network and get all the big videos and images ...
source share