Skip to main content

A command line tool for sending and receiving XÖV Transport Adapter (XTA) messages.

Project description

xta-tool

A command line tool for sending and receiving XÖV Transport Adapter (XTA) messages.

PyPI - Version

Usage

Usage: xta [OPTIONS] COMMAND [ARGS]...

  Send and receive xta messages.

Options:
  -c, --config PATH   Use an extra configuration directory or file.
  -p, --profile TEXT  Use comma-separated configuration profiles.
  --version           Show the version and exit.
  --help              Show this message and exit.

Commands:
  close        Close a message by its ID, acknowledging it has been read.
  get          Get a message by ID and save it to PATH.
  inspect      Inspect a message by ID, showing its transport report.
  ls           List open messages by id.
  new          Get a new message id from the server.
  send         Send a message with ID from PATH.
  show-config  Show the active configuration values.

Config

The tool loads configuration values from $XDG_CONFIG_HOME/xta/config.toml and uses these values as defaults:

# Base URL for all three XTA service ports
base-url: str = "https://localhost:8443"
# Path to ManagementPort
management-port-path = "/services/XTAService/ManagementPort"
# Path to MsgBoxPort
msg-box-port-path = "/services/XTAService/MsgBoxPort"
# Path to SendXtaPort
send-port-path = "/services/XTAService/SendXtaPort"
# Enable verification of XTA server certificate
verify = true
# Root CA certificate, or empty to use system defaults (where path is relative to any config directory)
cafile = "ca.crt"
# Client certificate, or empty to use none (where path is relative to any config directory)
certfile = "tls.crt"
# Private key of client certificate, or empty to use none (where path is relative to any config directory)
keyfile = "tls.key"
# User-Agent in HTTP header
user-agent = "Apache-CXF/4.0.7"
# Print response HTTP headers and SOAP envelope to stderr
verbose = false
# Limit size of file download when encoding to base64 (default 1 MiB)
max-save-base64-size = 1048576
# Limit size of response envelope (default 10 MiB)
max-response-envelope-size = 10485760
# Max entries when listing open messages
max-list-items = 100

# XTA PartyIdentifier used to identify this client
[self-identifier]
# Type
typ = "xoev"
# Category, or empty to use none
category = ""
# Name, or empty to use none
name = ""
# Certified identifier (for instance: "praefix:behoerdenschluessel"), or Wildcard identifier "*"
value = "*"

Configuration values may be overridden by profile configuration files. For instance, if XTA_TOOL_CONFIG=path/to/config.toml XTA_TOOL_PROFILE=profile1,profile2,profile3 is set, it reads values from path/to/config.toml and then from path/to/config-profile{1,2,3}.toml.

Send Message

Upload a message to the XTA server by:

xta send new xta-message.yaml

where xta-message.yaml contains, for instance:

metadata:
  service: "urn:fim:Wohngeld-Mietzuschuss:1.5"
  businessScenario:
    code: "FIM-WOHNGELD_DATA"
    listUri: "urn:de:xta:codeliste:business.scenario"
    listVersionId: "3.6"
  messageType:
    code: "fim.S05000227.05000227001005"
  messageTypePayloadSchema: "urn:xoev-de:xfall:standard:fim-s05000227_1.5"
  author:
    category: "Wohngeldportal"
    value: "wgp:010500100000"
  reader:
    category: "Wohngeldbehörde"
    value: "wgb:051110000000"

message:
  fileName: main.xml
  content: ./path/to/main.xml
  contentType: application/xml
attachments:
  - fileName: extra.txt
    content: ./path/to/extra.txt
    contentType: plain/txt

If a content path points to a directory, the tool sends all files in the directory as a ZIP archive.

If a content file path ends in .jinja, the tool sends the file after rendering it as a jinja2 template with config, metdata, message and attachments in the templating context.

Get Message

Download a message by its ID from the XTA server by:

xta get urn:some:message:id path/to/message

If path/to/message is an existing directory, the tool downloads attached files into the directory and references them in a message yaml path/to/message/xta-message.yaml, for instance, with content: main.xml.

If the output path is not an existing directory, the tool writes attached files directly as Base64 strings, meaning content: base64:..., into the message yaml path/to/message.

Install

Install xta as a command line tool by

uv tool install .

References

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

xta_tool-0.3.1.tar.gz (32.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

xta_tool-0.3.1-py3-none-any.whl (41.1 kB view details)

Uploaded Python 3

File details

Details for the file xta_tool-0.3.1.tar.gz.

File metadata

  • Download URL: xta_tool-0.3.1.tar.gz
  • Upload date:
  • Size: 32.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for xta_tool-0.3.1.tar.gz
Algorithm Hash digest
SHA256 a4bc7a91166e9e266563e4b7709615a5e1293f7b6e670f5ad8cdf0edb541b864
MD5 955e4e77689f80cb574cadc8edf4666a
BLAKE2b-256 b07aecd341f01ef6b64c040ab14144626be089c9799fe7688f78dec5ddccbf23

See more details on using hashes here.

File details

Details for the file xta_tool-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: xta_tool-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 41.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.21 {"installer":{"name":"uv","version":"0.9.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Fedora Linux","version":"43","id":"","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for xta_tool-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 67c3d279bf2dd60230570dc8ae761057f9a68d3f6b7378739ef1dff0890e650a
MD5 96a93a4b6c5c51b825ccb3555066e861
BLAKE2b-256 7a54b4af6efffdb57d435afaf275a5ef6e4028de3f47e962e11e0e7c71568759

See more details on using hashes here.

Supported by

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