1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// SPDX-License-Identifier: Apache-2.0
// Copyright 2026 ZeroDDS Contributors
//! DDS SOAP-PSM — SOAP 1.2 + WSDL 1.1/2.0 + MTOM + WS-Addressing +
//! WS-Security 1.1.
//!
//! Crate `zerodds-soap`. Safety classification: **STANDARD**.
//!
//! Liefert einen produktionsreifen SOAP-Stack zur Anbindung
//! Java-2000er-Bestand-Clients und JEE-Web-Services an DDS-Topics.
//!
//! # Module
//!
//! * [`envelope`] — SOAP 1.2 Envelope/Header/Body (W3C SOAP 1.2 §5).
//! * [`fault`] — SOAP-Fault-Codes (`Sender`/`Receiver`/`MustUnderstand`/
//! `VersionMismatch`/`DataEncodingUnknown`).
//! * [`wsdl`] — WSDL 1.1 (`http://schemas.xmlsoap.org/wsdl/`) + WSDL
//! 2.0 (`http://www.w3.org/ns/wsdl`)-Generation aus IDL-Service-Defs.
//! * [`mtom`] — MTOM/XOP-Attachments (W3C MTOM Rec.).
//! * [`addressing`] — WS-Addressing 1.0 (W3C 2006).
//! * [`security`] — WS-Security 1.1 (OASIS WSS-1.1) — UsernameToken,
//! X.509-Token, Timestamp, BinarySecurityToken.
extern crate alloc;
extern crate std;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;