Spyne サーバーで elementFormDefault="unqualified" サーバー スキーマ タイプを使用する方法はありますか? 今、私のすべての試行はメソッド応答の結果で終わります:
<senv:Envelope xmlns:tns="http://test.com/remoteService/"
xmlns:senv="http://schemas.xmlsoap.org/soap/envelope/">
<senv:Body>
<tns:testResponse>
<tns:status>ok</tns:status>
</tns:testResponse>
</senv:Body>
そして、「修飾された」 elementFormDefault で生成された wsdl フラグメント:
<xs:schema targetNamespace="http://test.com/remoteService/" elementFormDefault="qualified"></xs:schema>
次のような結果を得るためにメソッドまたはパラメーター モデルを構成する方法:
<senv:Envelope xmlns:tns="http://test.com/remoteService/"
xmlns:senv="http://schemas.xmlsoap.org/soap/envelope/">
<senv:Body>
<tns:testResponse>
<status>ok<status>
</tns:testResponse>
</senv:Body>
私の目標は、子要素が次の場合に結果を生成することです:
<tns:status>ok</tns:status>
名前空間プレフィックスなしで表示されます-次のように:
<status>ok<status>