ada2wsdl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ada2wsdl: command not found
or when using sudo you get the following error message
sudo: ada2wsdl: command not found
Solutions to ada2wsdl: command not found
How To Fix ada2wsdl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ada2wsdl is provided by libaws-bin package.
libaws-bin is:
AWS is a complete framework to develop Web based applications. The main part of the framework is the embedded Web server. This small yet powerful Web server can be embedded into your application so your application will be able to talk with a Web browser. Around this Web server a lot of services have been developed.
This package contains utility programs to help develop web applications with AWS:
awsres transforms any text or binary file into an Ada unit which you can compile into your application, thereby making your application completely independent of any external files (think: embedded)
ada2wsdl, an ASIS program, reads Ada unit specifications and creates descriptions in the Web Service Description Language, so that you can advertise your web service application to the world.
wsdl2aws does the opposite job: it creates an Ada unit (spec and skeleton body) conforming to a specified description in WSDL.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libaws-bin
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libaws-bin.
sudo apt -y install libaws-bin
Or if you have aptitude installed you can use the following command.
sudo aptitude install libaws-bin
Summary
In this tutorial we learn how to fix ada2wsdl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.