--HG-- rename : wsme/restjson.py => wsme/protocols/restjson.py rename : wsme/restxml.py => wsme/protocols/restxml.py rename : wsme/soap.py => wsme/protocols/soap.py rename : wsme/templates/__init__.py => wsme/protocols/templates/__init__.py rename : wsme/templates/fault.html => wsme/protocols/templates/fault.html rename : wsme/templates/soap.html => wsme/protocols/templates/soap.html rename : wsme/templates/wsdl.html => wsme/protocols/templates/wsdl.html
15 lines
602 B
HTML
15 lines
602 B
HTML
<soapenv:Envelope
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
|
|
xmlns:py="http://genshi.edgewall.org/"
|
|
py:attrs="{'xmlns' : typenamespace}">
|
|
<soapenv:Body>
|
|
<soapenv:Fault>
|
|
<soapenv:faultcode>${faultcode}</soapenv:faultcode>
|
|
<soapenv:faultstring>${faultstring}</soapenv:faultstring>
|
|
<soapenv:detail py:if="debuginfo is not None">${debuginfo}</soapenv:detail>
|
|
</soapenv:Fault>
|
|
</soapenv:Body>
|
|
</soapenv:Envelope>
|