0

PyXBを使用してWSDLファイルのPythonバインディングを作成する際に問題が発生しました。そうです:

「AttributeError:'module'オブジェクトに属性'CreateFromDOM'」がなく、コードが生成されません。別のWSDLドキュメントでも、同じエラーが発生します。

誰かが私に手がかりを与えることができますか?ありがとう!

フルスタックトレース:

ERROR: Unable to convert DOM node {http://www.w3.org/2001/XMLSchema}schema to Python instance
Traceback (most recent call last):
  File "/home/boehlke/.virtualenvs/env/local/lib/python2.7/site-packages/pyxb/binding/basis.py", line 2047, in append
    value = mr.module().CreateFromDOM(node)
AttributeError: 'module' object has no attribute 'CreateFromDOM'
4

1 に答える 1

0

「AttributeError:'module'object...」は予期されたエラーであることが判明しました。エラーが発生したソースコードでこのコメントを見つけました:-)

                                # The module holding XMLSchema bindings
                                # does not have a CreateFromDOM method,
                                # and shouldn't since we need to convert
                                # schema instances to DOM more carefully.
                                # Other namespaces won't have a module if
                                # the bindings were not imported; this is
                                # probably worth a warning.
于 2012-11-16T08:27:04.927 に答える