How To Install qtsoap on Fedora 34

qtsoap is The Simple Object Access Protocol Qt4-based client side library The Simple Object Access Protocol Qt4-based client side library

Introduction

In this tutorial we learn how to install qtsoap on Fedora 34.

What is qtsoap

The SOAP (Simple Object Access Protocol) library uses the XML standard for describing how to exchange messages. Its primary usage is to invoke web services and get responses from Qt-based applications. This package is built against Qt4. qtsoap 2.7 25.fc34 x86_64 84 k qtsoap-2.7-25.fc34.src.rpm fedora The Simple Object Access Protocol Qt4-based client side library http LGPLv2 with exceptions or GPLv3 The SOAP (Simple Object Access Protocol) library uses the XML standard for describing how to exchange messages. Its primary usage is to invoke web services and get responses from Qt-based applications. This package is built against Qt4.

We can use yum or dnf to install qtsoap on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install qtsoap.

Install qtsoap on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install qtsoap using dnf by running the following command:

sudo dnf -y install qtsoap

Install qtsoap on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install qtsoap using yum by running the following command:

sudo yum -y install qtsoap

How To Uninstall qtsoap on Fedora 34

To uninstall only the qtsoap package we can use the following command:

sudo dnf remove qtsoap

qtsoap Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/75
/usr/lib/.build-id/75/ddbf297ab02823b03c1797240606c9c77562f6
/usr/lib64/libqtsoap.so.2
/usr/lib64/libqtsoap.so.2.7
/usr/lib64/libqtsoap.so.2.7.0
/usr/share/doc/qtsoap
/usr/share/doc/qtsoap/README.TXT
/usr/share/licenses/qtsoap
/usr/share/licenses/qtsoap/LGPL_EXCEPTION.txt
/usr/share/licenses/qtsoap/LICENSE.GPL3
/usr/share/licenses/qtsoap/LICENSE.LGPL
/usr/lib/.build-id
/usr/lib/.build-id/e7
/usr/lib/.build-id/e7/1568e86e8452593b5c3871d32bd752f152e9e6
/usr/lib/libqtsoap.so.2
/usr/lib/libqtsoap.so.2.7
/usr/lib/libqtsoap.so.2.7.0
/usr/share/doc/qtsoap
/usr/share/doc/qtsoap/README.TXT
/usr/share/licenses/qtsoap
/usr/share/licenses/qtsoap/LGPL_EXCEPTION.txt
/usr/share/licenses/qtsoap/LICENSE.GPL3
/usr/share/licenses/qtsoap/LICENSE.LGPL

References

Summary

In this tutorial we learn how to install qtsoap on Fedora 34 using yum and dnf.