Entschuldigung für mein Englisch. Ich kann nicht verstehen, wie SPYNE Antwort auf eine Anfrage erzeugt, ihn zu senden. Client sendet in dieser Form:Spyne erstellen Antwort
<SOAP-ENV: Envelope xmlns: ns0 = "http://schemas.xmlsoap.org/soap/envelope/" xmlns: ns1 = "localhost" xmlns: xsi = "http://www.w3.org/2001/ XMLSchema-instance "xmlns: SOAP-ENV =" http://schemas.xmlsoap.org/soap/envelope/ ">
<SOAP-ENV: Header />
<Ns0: Body>
<Ns1: prerender>
<Ns1: secret> secret_key </ ns1: secret>
<Ns1: requestId> 1 </ ns1: requestId>
<Ns1: projectId> id1 </ ns1: projectId>
</ Ns1: prerender>
</ Ns0: Body>
</ SOAP-ENV: Envelope>
Und der Server antwortet wie folgt:
<Soap11env: Envelope xmlns: soap11env = "http://schemas.xmlsoap.org/soap/envelope/" xmlns: tns = "localhost">
<Soap11env: Body>
<Tns: prerenderResponse>
<Tns: prerenderResult0> secret_key </ tns: prerenderResult0>
<Tns: prerenderResult1> 1 </ tns: prerenderResult1>
</ Tns: prerenderResponse>
</ Soap11env: Body>
</ Soap11env: Envelope>
Bitte sagen Sie mir, wie man eine solche Reaktion erzeugen:
<SOAP-ENV:Envelope xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns1="localhost"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<ns0:Body>
<ns1:secret>INT</ns1:commandType>
<ns1:requestId>STRING</ns1:secret_key>
<ns1:projectId>INT</ns1:requestId>
</ns0:Body>
</SOAP-ENV:Envelope>
Wenn ich von der verstehen Dokumentation. Dies geschieht mit ComplexModel. Aber um solche strukutru zu implementieren konnte ich nicht
Meiner Kenntnis nach ist dies keine gültige Spyne-Antwort. Sie können jedoch lxml.etree und ctx.out_document verwenden, um alles zurückzugeben, was Sie möchten. –