Web apps Archives - Org-Sgal https://www.sgal.org/category/web-apps/ Blog about web development Thu, 02 Mar 2023 15:10:38 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 https://www.sgal.org/wp-content/uploads/2023/03/cropped-lims-ge96294413_640-32x32.png Web apps Archives - Org-Sgal https://www.sgal.org/category/web-apps/ 32 32 How web applications work https://www.sgal.org/how-web-applications-work/ Wed, 05 Oct 2022 14:28:00 +0000 https://www.sgal.org/?p=57 The functionality of web applications means that they can handle several kinds of pages, among them

The post How web applications work appeared first on Org-Sgal.

]]>
The functionality of web applications means that they can handle several kinds of pages, among them:

statistical – the server part creates a page in response to a request and sends it to the browser regardless of the user’s actions, so that different users will see the same material on the same request;
dynamic – the server part generates a page in response to the request, only the material passes through the application server beforehand and is generated depending on what commands have been sent.

Regardless of whether there is a web application for e-commerce, communication, content creation or other purposes, this kind of application works on a client-server principle. That is why the following components are distinguished in the structure:

client part – responsible for the actions performed by the user;
The server part – is responsible for processes occurring on the server;
Database – the structure for the orderly storage of information and access to it.

Depending on what tasks are set by the creators of the project, they use these or those means of web applications development. The main task – to provide functional interaction between the client and server parts, access to the database, the correct possibilities of forming and sending pages in response to requests.

Based on the tasks set, developers can create a web application, to which it will be possible to access from any device, or demanding development environment to work with which only devices with a certain level of hardware capabilities will do. Different methods can be used to develop web applications, including open access to the architecture, as with Wikipedia, or no access for outsiders, as with any commercial or news application.

The post How web applications work appeared first on Org-Sgal.

]]>
The concept of a web application https://www.sgal.org/the-concept-of-a-web-application/ Mon, 24 Jan 2022 14:25:00 +0000 https://www.sgal.org/?p=54 A web application in Java is a special program based on the client-service principle. Let's look at the corresponding concepts later.

The post The concept of a web application appeared first on Org-Sgal.

]]>
A web application in Java is a special program based on the client-service principle. Let’s look at the corresponding concepts later. First, it is worth understanding what the type of utility you want to write in Java this time is.

In a web application, the client will interact with the web server through auxiliary utilities. These are called browsers. The logic is shared between the server and the client. The storage of information is done mainly on the server. Data exchange is provided by the Web.

The main advantage of this kind of content is that clients will not depend on one or another operating system. It does not matter what OS is installed on the involved device. Web-applications will work everywhere. This is a cross-platform option.

Technical features
Web applications have a number of features that make related content convenient and productive. The following points are important to keep in mind:

  • Functions are performed independently of the user’s OS.
  • The application will be created only once for an arbitrarily chosen platform. It is on it that further deployment is done.
  • Sometimes the user rights to edit the settings of the Internet browser can cause a lot of trouble. Applications to work with the network will not be displayed correctly.
  • Problems in the development and support of utilities due to different CSS and DOM implementations are not excluded.
  • It is possible to use Java applets and Adobe Flash. With the second type of applications today have difficulties. This is due to the fact that Flash technology is no longer supported since 2015.
  • In a sense, web applications can be classified as “thick” clients. This is due to the peculiarities of the architecture of the content in question.

The post The concept of a web application appeared first on Org-Sgal.

]]>