私は、Cisco Call Manager の AXL を php ではなく Python で動作させることに取り組んでおり (問題なく実行しています)、問題が発生しています。私は何時間も頭を悩ませてきたので、何か洞察を提供できるかどうかを確認するために、外部の意見を求める時が来たと考えました. 私のサニタイズされたコードは以下の通りです:
from suds.client import Client
from suds.transport.https import HttpAuthenticated
import logging
logging.basicConfig(level=logging.CRITICAL)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.transport').setLevel(logging.CRITICAL)
logging.getLogger('suds.xsd.schema').setLevel(logging.CRITICAL)
logging.getLogger('suds.wsdl').setLevel(logging.CRITICAL)
service = 'https://IPADDRESS:PORT/axl/'
wsdl = 'file:///PATH/TO/LOCAL/WSDL/AXLAPI.wsdl'
username = "username"
password = "password"
client = Client(wsdl, location = service, transport = HttpAuthenticated(username = username, password = password))
name = "NAME_DP"
tags = ["regionName"]
print "<THIS IS A LISTDEVICEPOOL REQUEST>"
dp = client.factory.create('ns0:ListDevicePoolReq')
dp.searchCriteria.name = name
dp.returnedTags = tags
result = client.service.listDevicePool(dp)
print "<THIS IS THE RESULT>"
print result
問題は、soap の出力が次のようになることです。
DEBUG:suds.client:headers = {'SOAPAction': u'"CUCM:DB ver=8.5 listDevicePool"',
'Content-Type': 'text/xml; charset=utf-8'}
ERROR:suds.client:<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:ns0="http://www.cisco.com/AXL/API/8.5" xmlns:ns1="http:
//schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchem
a-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<ns1:Body>
<ns0:listDevicePool>
<searchCriteria>
<searchCriteria>
<name>NAME_DP</name>
</searchCriteria>
<returnedTags>regionName</returnedTags>
</searchCriteria>
</ns0:listDevicePool>
</ns1:Body>
</SOAP-ENV:Envelope>
DEBUG:suds.client:http failed:
<?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://sc
hemas.xmlsoap.org/soap/envelope/"><soapenv:Body><soapenv:Fault><faultcode>soapen
v:Server</faultcode><faultstring>Usage: Required returnedTags as empty tag or sh
ould contain requested tags</faultstring><detail><axlError><axlcode>5003</axlcod
e><axlmessage>Usage: Required returnedTags as empty tag or should contain reques
ted tags</axlmessage><request>listDevicePool</request></axlError></detail></soap
env:Fault></soapenv:Body></soapenv:Envelope>
Traceback (most recent call last):
File "C:\Users\C53170\Desktop\sudstest\barebones.py", line 39, in <module>
result = client.service.listDevicePool(dp)
File "C:\Python27\lib\site-packages\suds\client.py", line 542, in __call__
return client.invoke(args, kwargs)
File "C:\Python27\lib\site-packages\suds\client.py", line 602, in invoke
result = self.send(soapenv)
File "C:\Python27\lib\site-packages\suds\client.py", line 649, in send
result = self.failed(binding, e)
File "C:\Python27\lib\site-packages\suds\client.py", line 702, in failed
r, p = binding.get_fault(reply)
File "C:\Python27\lib\site-packages\suds\bindings\binding.py", line 265, in ge
t_fault
raise WebFault(p, faultroot)
suds.WebFault: Server raised fault: 'Usage: Required returnedTags as empty tag or should contain requested tags'
ご覧のとおり、すべて (定義済みの searchCriteria を含む) を searchCriteria 属性内にネストしているため、returnedTags 属性が searchCriteria の一部として表示されます。原因を突き止めたり、修正方法を決定したりするのに苦労しています。これは wsdl のインポート方法に問題がありますか?
インポートされた wsdl または xsd ファイルを確認する必要がある場合は、お知らせください。それらは非常に大きく、このコンピューターからはペーストビンや Google ドキュメントにアクセスできません (職場でブロックされています)。
よろしくお願いいたします。