Как мне установить атрибуты XML в SOAPpy с python? - PullRequest
4 голосов
/ 10 августа 2010

Я формирую запрос SOAPpy, но не могу понять, как установить атрибуты в теге. Вот мой код:

url = wsdlfile = 'https://stats2.overture.com/ExternalSOAP/statsPMCAPI_1_0.wsdl'
n = 'urn:yahoo:overture:stats:3.0'
server = WSDL.Proxy(wsdlfile)
server.soapproxy.config.dumpSOAPOut = 1
server.soapproxy.config.dumpSOAPIn = 1
result = server.getAvailablePmcReports(ReportAuth = {'username': username, 'cookie': YBY}, ReportRequest= '')
print(result)

Что выводит это:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:getAvailablePmcReports xmlns:ns1="urn:yahoo:overture:stats:3.0" SOAP-ENC:root="1">
<ReportRequest xsi:type="xsd:string"></ReportRequest>
<ReportAuth>
<username xsi:type="xsd:string">myuser</username>
<cookie xsi:type="xsd:string">cookie here...</cookie>
</ReportAuth>
</ns1:getAvailablePmcReports>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Но я хочу вот что:

<ReportRequest startRow="0" shownRows="200">

Как добавить атрибуты? Благодаря.

1 Ответ

3 голосов
/ 04 мая 2011

Вы можете сделать это, передав типизированное значение для аргумента ключевого слова ReportRequest. Например, если я изменю строку getAvailablePmcReports на эту:

from SOAPpy import Types
result = server.getAvailablePmcReports(
    ReportAuth = {'username': username, 'cookie': YBY},
    ReportRequest= Types.stringType('', attrs={'startRow': 0, 'shownRows': 200}))

Результирующий запрос содержит тег, подобный следующему:

<ReportRequest xsi:type="xsd:string" shownRows="200" startRow="0"></ReportRequest>
...