Wednesday, September 15, 2021

Zato Blog: Enterprise API integrations under Windows

If you are on Windows, looking for an integration platform to connect your APIs, systems, applications, backend resources or mobile apps, I am happy to let you know that Zato now supports Windows natively in addition to Linux.

You can use the platform to connect your systems, to offer new APIs on top of existing server-side resources, to secure your applications, to connect IoT devices, to move and distribute static files or to grant backend access to online users - these are just a few examples of how Zato is typically used. Read on for more details on how to install it under Windows.

Zato Dashboard

Installing Zato

The native Windows port is new in Zato 3.2 - download an .msi package for your Python version and install it by following the steps here.

The end result will be a ‘zato’ command line tool, as below:

Zato command line interface under Windows

The first integration cluster

Run the command below to create your first cluster. It is called “qs-1” because this is the first quickstart cluster in this system:

Creating a quickstart server under Windows

Note the indicated user name (admin) and the password - after the cluster is started, you will be able to use the credentials to log in to your Dashboard in a moment.

Let’s start the cluster in this case - it will open a new PowerShell or cmd.exe window with all the logs in foreground.

PS C:\> C:\Users\Administrator\env\qs-1\zato-qs-start.bat

Now, you can log in to Dashboard at http://localhost:8183 to look around and familiarise yourself with the GUI.

That is practically everything, the cluster is up and running, there is a server, Dashboard and a background scheduler. You are ready to begin the tutorial now.

Next steps

  • Start the tutorial to learn how to integrate systems. After completing it, you will have a multi-protocol service representing a sample scenario often seen in banking systems with several applications cooperating to provide a single and consistent API to its callers.

  • Visit the support page if you need assistance.

  • Para aprender más sobre las integraciones de Zato y API en español, haga clic aquí



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...