soap-service 0.1.0

Rust macro that transforms modules into SOAP webservices.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WSDL template generation

pub fn wsdl_template() -> &'static str {
    // TODO: Return WSDL template with placeholders
    r#"<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
             xmlns:tns="{{namespace}}"
             xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
             xmlns:xsd="http://www.w3.org/2001/XMLSchema"
             targetNamespace="{{namespace}}">
    <!-- TODO: Complete WSDL template -->
</definitions>"#
}