There are several methods of updating information and data on a webserver. We mu
ID: 3920150 • Letter: T
Question
There are several methods of updating information and data on a webserver. We must consider who performs those updates upfront when we design the website.
Research three methods for updating webserver data.
Under what circumstances would each of these three methods be appropriate/not recommended?
Do any of these methods involve additional training or system configuration for the person performing the updates?
Which methods require coding/HTML scripting experience/training? Are any methods appropriate for non-technical people?
Some methods are more secure than others are; elaborate.
What is the best method for updating information on our current webserver/website?
Explanation / Answer
Research three methods for updating webserver data.
Java Software Development Kit
JAVA SDK allows developers to write applications or applets to perform data updating on the servers using java as programming language. These applets can be used with internal servers as well as third party servers. These provide data control functionalities beyond displaying, retrieving, storing the data.
RTMC pro
This can be setup automatically and provides many elements to upload and store data on the server using screens. Screens can be saved as files and this screen file can be integrated to an internal or external server. It also provides data elements to customize the data and provide flexible exporting ways to minimize efforts required to process the data.
HTML server-sent
Model allows realtime data updation. This uses HTML5 events to sync data to webservers. In this model with every HTML page there is a script associated and this script will continuously function to provide realtime data updation. Now this script will be present server side and has to be configured with the data you want to update.
Under what circumstances would each of these three methods be appropriate/not recommended?
It depends on the website and webserver that is under consideration. A server which is mainly configured using java may want to use Java SDK where as RTMC can be useful dealing with display related changes. HTML server sent although is most dynamic but require expertise to work with.
Do any of these methods involve additional training or system configuration for the person performing the updates?
Yes all of these methods require some sort of configurations and training.
Which methods require coding/HTML scripting experience/training? Are any methods appropriate for non-technical people?
HTML server set requires scripting experience.
Some methods are more secure than others are; elaborate.
Java SDK and HTML server sent are more secure than RTMC because both java and HTML5 provide strong plugins/elements and they have rich artifactory composed of security components that can be easily used.
What is the best method for updating information on our current webserver/website?
HTML server sent if the best method for updating current server.