The ability to show a list of elements and the details of each listed element is the one of the most common patterns in Web applications, and is called the Master and Details pattern.
In a previous lesson, you already learned how to model the basic Master and Details pattern.
This lesson shows y...
In a Web application, you often need to manage the information shown to the user. Managing information means to create, update, or delete information. With WebRatio Platform you can easily model an Administration section in which the Web application user can manage the application data.
In this le...
In a Web application, you often need to manage the information shown to the user.
Managing information means to create, update, or delete information.
In this lesson we discuss an enhanced version of the Data Management pattern, which allows you to manage more than one piece of information at th...
Usually, Web applications are not standalone; they need to integrate with external systems and other applications in the company intranet. The best way to make different Applications communicate with one another is to use a Web service infrastructure.
That’s why it is important to know how you can...
Usually Web applications do not exist standalone but need to integrate with external systems and applications already existing in the company intranet.
The best way to make different applications communicate with one another is using a Web Service infrastructure.
That’s why it is important to kn...
The best way to make different applications communicate with one another is using a Web Service infrastructure. That’s why it is important to know how you can easily integrate your WebRatio Platform designed application with existing web services. This lesson gives you the knowledge to help you inv...
Usually, Web applications do not exist standalone but need to integrate with external systems and applications that are on the company intranet. The best way to make different applications communicate with one another is by using a Web Service infrastructure. That’s why it is important to know how y...
Usually Web applications are not standalone; they need to integrate with external systems and other applications in the company intranet. The best way to make different applications communicate with one another is to use a Web Service infrastructure. That’s why it is important to know how you can ea...
Usually Web applications are not standalone; they need to integrate with external systems and other applications in the company intranet. The best way to make different applications communicate with one another is to use a Web service infrastructure. That’s why it is important to know how you can ea...
Data management is a crucial aspect for data-centric Web applications. So far, you have learned how to create, read, update and delete data through basic patterns. However, information often needs to be displayed and dealt with in different ways.
Displaying data through View Components is not the o...
Data management is the crucial aspect for Data Centric Web applications. So far you learnt how to create, read, update and delete data, but data is meant to be shown in so many different ways.
Reading data through View Component is not the only option you have in WebRatio Platform.
Imagine that y...
WebRatio support all the databases that are supported by Hibernate. Nevertheless, the list of the database types that you have at disposal when creating a new database connection does not contain the full list, but it proposes the most used. Therefore WebRatio gives you the chance to integrate a new...
A search engine uses a set of well known rules to decide the visibility of a website. One of these rules is to have simple URLs containing the keywords the page should be indexed with. WebRatio 6 introduces a new feature named URL Fragments. This feature allows to increase the search engine ranking ...
Implementing a custom component sometimes means querying the database in the component service class. This article wants to give you an introduction on how to retrieve the hibernate session in the component service and how to use Hibernate efficiently to query the database.
A job is a sequence of operations that has to be executed asynchronously by the application. It's possible to schedule a job at a specific time or interval, which means that jobs can be automatically triggered (scheduled when the application starts). It's also possible to schedule a job at runtime: ...