Axional Studio has different services to communicate with the outside world.
1 Introduction
- HTTP
- It consists of all calls made when the application is accessed through the browser once the user has logged in. In summary, it consists of all calls that can be made either in webOS or in database applications.
- SOAP
- They are the set of SOAP calls accessible from outside by a SOAP client.
- REST
- They are the set of REST calls accessible from outside by a REST client
2 Services Activation
Available services can be activated or deactivated individually by using the configuration file config.xml
.
In particular, within the application/services
node, you can have:
Copy
<application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="studioConfig"> ... <services> <http>true</http> <rest>true</rest> <soap>true</soap> <webSockets>true</webSockets> </services> ... </application>