8

PySimpleSoapを使用して、オランダ政府の土地登記簿 (ここでは WSDL )から SOAP サービスから関連情報を取得しようとしています。これまでのところ、次のコードを使用して、特定のプロパティに関する情報を接続して要求することができました。

from pysimplesoap.client import SoapClient
client = SoapClient(wsdl='http://www1.kadaster.nl/1/schemas/kik-inzage/20141101/verzoekTotInformatie-2.1.wsdl', username='xxx', password='xxx', trace=True)

response = client.VerzoekTotInformatie(
    Aanvraag={
        'berichtversie': '4.7',  # Refers to the schema version
        'klantReferentie': klantReferentie,  # A reference we can set ourselves.
        'productAanduiding': '1185',  # a four-digit code referring to whether the response should be in "XML" (1185), "PDF" (1191) or "XML and PDF" (1057).
        'Ingang': {
            'Object': {
                'IMKAD_KadastraleAanduiding': {
                    'gemeente': 'ARNHEM AC',  # municipality
                    'sectie': 'AC',  # section code
                    'perceelnummer': '1234'  # Lot number
                }
            }
        }
    }
)

この「ちょっと」は機能します。広範なログ メッセージを取得するように設定しました。これらのログ メッセージには、要求したすべての情報がほとんど含まれてtrace=Trueいる膨大な xml 出力 (ここに貼り付けます) が表示されます。しかし、私はこのトレースバックも取得します:

Traceback (most recent call last):
  File "<input>", line 1, in <module>
    'perceelnummer': perceelnummer
  File "/Library/Python/2.7/site-packages/pysimplesoap/client.py", line 181, in <lambda>
    return lambda *args, **kwargs: self.wsdl_call(attr, *args, **kwargs)
  File "/Library/Python/2.7/site-packages/pysimplesoap/client.py", line 346, in wsdl_call
    return self.wsdl_call_with_args(method, args, kwargs)
  File "/Library/Python/2.7/site-packages/pysimplesoap/client.py", line 372, in wsdl_call_with_args
    resp = response('Body', ns=soap_uri).children().unmarshall(output)
  File "/Library/Python/2.7/site-packages/pysimplesoap/simplexml.py", line 433, in unmarshall
    value = children and children.unmarshall(fn, strict)
  File "/Library/Python/2.7/site-packages/pysimplesoap/simplexml.py", line 433, in unmarshall
    value = children and children.unmarshall(fn, strict)
  File "/Library/Python/2.7/site-packages/pysimplesoap/simplexml.py", line 433, in unmarshall
    value = children and children.unmarshall(fn, strict)
  File "/Library/Python/2.7/site-packages/pysimplesoap/simplexml.py", line 380, in unmarshall
    raise TypeError("Tag: %s invalid (type not found)" % (name,))
TypeError: Tag: IMKAD_Perceel invalid (type not found)

私が理解している限り、これはsimplexml パーサーIMKAD_Perceelがタグを理解できないことを意味します。これは、wdsl ファイルでこのタグの定義を読み取ったり見つけたりできなかったためです。

そこで、wsdl ファイルの解析による (膨大な量の) ログ メッセージを確認したところ、次の行が表示されました。

DEBUG:pysimplesoap.helpers:Parsing Element element: IMKAD_Perceel
DEBUG:pysimplesoap.helpers:Processing element IMKAD_Perceel element
DEBUG:pysimplesoap.helpers:IMKAD_Perceel has no children!
DEBUG:pysimplesoap.helpers:complexContent/simpleType/element IMKAD_Perceel = IMKAD_Perceel
DEBUG:pysimplesoap.helpers:Parsing Element complexType: IMKAD_Perceel
DEBUG:pysimplesoap.helpers:Processing element IMKAD_Perceel complexType
DEBUG:pysimplesoap.helpers:complexContent/simpleType/element IMKAD_Perceel = IMKAD_OnroerendeZaak
DEBUG:pysimplesoap.helpers:Processing element IMKAD_Perceel complexType

IMKAD_Perceelこれらの行は、定義が空であることを意味していると思います。そこで、 SoapUIを使用して WSDL ファイルをイントロスペクトし、この .xsd ファイルへの URL を見つけましたIMKAD_Perceel

<xs:element name="IMKAD_Perceel" 
    substitutionGroup="ipkbo:IMKAD_OnroerendeZaak" 
    type="ipkbo:IMKAD_Perceel"
    />

タグは実際にそれ自体を閉じているように見えます。つまり、タグは空です。これが pysimplesoap がIMKAD_Perceel定義されていないと考える理由ですか? 単純にxmlを解釈してdictとして返すことができないのはなぜですか? (前に述べたように、私が受け取る完全なxml出力はこのペーストにあります)。

wsdlに準拠しているかどうかに関係なく、pysimplesoapにxmlを解釈させて辞書に変換させる方法を知っている人はいますか?

すべてのヒントは大歓迎です!

4

1 に答える 1

1

xml スキーマpysimplesoapでは扱えないようです。substitutionGroup

xsd ファイルで確認できます。

<xs:element name="IMKAD_Perceel" 
substitutionGroup="ipkbo:IMKAD_OnroerendeZaak" 
type="ipkbo:IMKAD_Perceel"
/>

これは、とが同じものであり、互いに置き換え可能でsubstitutionGroupあることを意味します。IMKAD_PerceelIMKAD_OnroerendeZaak

SOAP スキーマでは、応答のこの特定の部分は次のように定義されています。

<xs:complexType name="BerichtGegevens">
 <xs:annotation>
   <xs:documentation>Inhoud van het bericht.</xs:documentation>    
 </xs:annotation>
 <xs:sequence>
   <xs:element ref="ipkbo:IMKAD_OnroerendeZaak" minOccurs="1" maxOccurs="1"/>
   <xs:element ref="ipkbo:Recht" minOccurs="1" maxOccurs="1"/><xs:element ref="ipkbo:IMKAD_Stuk" minOccurs="0" maxOccurs="unbounded"/>
   <xs:element ref="ipkbo:IMKAD_Persoon" minOccurs="1" maxOccurs="unbounded"/>
   <xs:element ref="ipkbo:GemeentelijkeRegistratie" minOccurs="0" maxOccurs="unbounded"/>
 </xs:sequence>
</xs:complexType>

ただし、実際の応答は次のようになります。

<ipkbo:BerichtGegevens>
  <ipkbo:IMKAD_Perceel>...</ipkbo:IMKAD_Perceel>
  <ipkbo:Recht>...</ipkbo:Recht>
  <ipkbo:IMKAD_AangebodenStuk>...</ipkbo:IMKAD_AangebodenStuk>
  <ipkbo:IMKAD_Persoon>...</ipkbo:IMKAD_Persoon>
</ipkbo:BerichtGegevens>

その後pysimplesoap、混乱して正しいタイプの応答が得られないようです。

于 2015-05-19T09:57:57.463 に答える