From 918d3beacab777524d360f5ffae3f34fc0f7dd82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Wed, 12 Jun 2024 21:58:58 +0200 Subject: [PATCH] faq.html - fix links --- www/faq.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/faq.html b/www/faq.html index 77d1fd6..4082759 100644 --- a/www/faq.html +++ b/www/faq.html @@ -22,7 +22,7 @@

Is Jolie compatible

Why a new language and not just a new library/framework (e.g., in Java)?

A language is necessary to impose constraints and use them to build powerful abstractions. In Jolie, the central abstraction is that all programs are microservices by construction. Microservices can then be composed and deployed with native language primitives.

An example of why this is useful is that programmers cannot break loose coupling: two Jolie microservices cannot share data, they can only exchange data by communicating. Data can be shared only among processes in the same microservice. This prevents having hidden shared data structures that can break thread-safety and reusability.

-

Another example comes from our interfaces. It is designed to ensure that all Jolie messages can be handled by all the different protocols that we support -- e.g., HTTP (GWT, some REST-based things, XML, JSON, ...), SODEP (a binary protocol) -- and communication mediums -- e.g., local sockets, TCP/IP sockets, bluetooth, local memory. Then, our composition primitives (e.g., aggregation) can be used to build complex systems without having to worry about the underlying communication details of the included microservices.

+

Another example comes from our interfaces. It is designed to ensure that all Jolie messages can be handled by all the different protocols that we support -- e.g., HTTP (REST with XML, JSON, ...), SOAP, SODEP (a binary protocol) -- and communication mediums -- e.g., local sockets, TCP/IP sockets, bluetooth, local memory. Then, our composition primitives (e.g., aggregation) can be used to build complex systems without having to worry about the underlying communication details of the included microservices.

We also paid attention at not re-inventing the wheel when not necessary. Since Jolie offers a Java API and can be run from inside of a Java program, you can also see Jolie as a Java library that you can use with the syntax of the Jolie language.

What is the relation between Jolie and Enterprise Service Bus?

There are some shared ideas between Jolie and ESB, like integration is a central piece of the puzzle, but Jolie is not an ESB. Jolie is a programming language, so if you wanted you could build your own ESB using the primitives that Jolie provides. Jolie can also be used inside of existing ESBs.