Skip to main content

FastAPI Extension for X-Road SOAP

Project description

FastAPI X-Road SOAP

Logo

PyPI - Python Version GitHub Actions Workflow Status codecov PyPI - Downloads

Quality Gate Status Security Rating Reliability Rating Maintainability Rating
Vulnerabilities Bugs Code Smells Lines of Code

Description

By convention until now, creating a well-working SOAP service has been a difficult undertaking due to the inherent complexity of the SOAP specification, which is further exacerbated by the constraints and requirements of the X-Road data-exchange ecosystem. This library remediates this issue by providing excellent batteries-included developer experience for solving the most complex tasks related to the subject. Creating an X-Road SOAP service does not have to be difficult or time-consuming ever again.

Features

  • Extension of FastAPI, which integrates well with the existing FastAPI ecosystem
  • Definition of requests and responses using ORM-like models syntax
  • Automatic validation of request and response elements and data types
  • Automatic WSDL file generation from defined models
  • Support for sync and async endpoint handlers
  • Built-in endpoint for serving the generated WSDL file
  • Built-in Fault response error messages
  • Excellent pytest coverage and code quality
  • Plentiful examples and documentation
  • Developer-oriented ease of use

Quickstart

Install the library from PyPI. We recommend to use the Poetry or the PIP package manager:

poetry add fastapi-xroad-soap
pip install fastapi-xroad-soap

Note 1: You also need to install an ASGI web server library like Uvicorn to run the SoapService FastAPI app.
Note 2: You also need a third-party application for making HTTP requests. The most widely used application for testing SOAP services is SoapUI by SmartBear, but you can also use any other software like Postman or Insomnia. The main requirement for the software is that it must support setting custom request headers and making HTTP POST requests with raw body content.

Next, create an example.py file with the following contents:

import uvicorn
from fastapi_xroad_soap import SoapService, MessageBody
from fastapi_xroad_soap.elements import Integer

soap = SoapService()

class Model(MessageBody):
    number = Integer()

@soap.action("ReturnInteger")
def handler(body: Model) -> Model:
    return Model(number=body.number)

uvicorn.run(soap)

This simple service just returns the integer from the client request back to the client. When you run the script and navigate to http://localhost:8000/service?wsdl in your web browser, you should see the generated WSDL file that corresponds to the SoapService instance.

Making a Request

If you're using SoapUI for API testing, it is suggested to import the autogenerated WSDL file of the service into SoapUI, as that will enable SoapUI to autogenerate example requests for the defined services and skip the manual setting of the necessary HTTP headers, you just need to fill in the placeholders with valid values. In other cases, read on how to manually craft a valid request for the example service.

In your chosen API testing software, create a new POST request and set the following custom headers:

  1. Key: SOAPAction, Value: ReturnInteger
  2. Key: Content-Type, Value: text/xml

Set the following XML as the raw body and send the request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <Model>
            <Number>1234</Number>
        </Model>
    </soapenv:Body>
</soapenv:Envelope>

You should receive the following response if everything is working as expected:

<?xml version='1.0' encoding='utf-8' standalone='yes'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <soapenv:Body>
        <Model>
            <Number>1234</Number>
        </Model>
    </soapenv:Body>
</soapenv:Envelope>

Next Steps

  1. Try out the other examples in the examples directory.
  2. Read the full documentation and API reference in the Wiki.
  3. Build something awesome with this library!

Credits

Centre of Registers and Information Systems

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_xroad_soap-0.4.5.tar.gz (38.8 kB view details)

Uploaded Source

Built Distribution

fastapi_xroad_soap-0.4.5-py3-none-any.whl (71.2 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_xroad_soap-0.4.5.tar.gz.

File metadata

  • Download URL: fastapi_xroad_soap-0.4.5.tar.gz
  • Upload date:
  • Size: 38.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for fastapi_xroad_soap-0.4.5.tar.gz
Algorithm Hash digest
SHA256 ee29c97bc43aae8619ba757a9385c6469f78c450131bf9cd5d8a520ec6237eb3
MD5 17c2c99d43126b618e50dfa8db66bd98
BLAKE2b-256 5471178b51d46cee43e0d413cbf89c69df09df319a6212319b12ddaed6434953

See more details on using hashes here.

File details

Details for the file fastapi_xroad_soap-0.4.5-py3-none-any.whl.

File metadata

File hashes

Hashes for fastapi_xroad_soap-0.4.5-py3-none-any.whl
Algorithm Hash digest
SHA256 509561bcd8a1f6b113abcc4abb8e759a09b2527e8b8cff4c1ceae7bad518dd06
MD5 eca037f558dee442334594d4a3910d7e
BLAKE2b-256 edff695daca0da203bb5d9c4d10938a37f9cf4e5bd9cbcc64f9cd6eb2308cd6b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page