我正在使用Python Suds來使用Sharepoint 2007提供的Web服務。 特別我想使用由Lists.aspx服務提供的UpdateListItems。如何在Python Suds中修改SOAP信封?
正如在msdn的docs中提到的,我創建了xml參數。但它給我一個SoapServerException
。回溯沒有任何用處,因爲Sharepoint 2007在沒有提供任何細節的情況下盲目拋出異常。
我還遵循指南here在爲UpdateListItems示例給出的Suds文檔。但沒有用。我認爲問題是,泡沫正在爲我的XML是這樣的:
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://schemas.microsoft.com/sharepoint/soap/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<ns0:Body>
<ns1:UpdateListItems>
<ns1:listName>MyDocuments</ns1:listName>
<ns0:updates>
<Batch OnError="Continue" ListVersion="1">
<Method ID="1" Cmd="Delete">
<Field Name="ID">7</Field>
<Field Name="FieldRef">http://win2003/sharepoint_site/MyDocuments/aal.txt</Field>
</Method>
</Batch>
</ns0:updates>
</ns1:UpdateListItems>
</ns0:Body>
</SOAP-ENV:Envelope>
但在泡沫文檔的例子是這樣的:
<SOAP-ENV:Envelope xmlns:ns0="http://schemas.microsoft.com/sharepoint/soap/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<ns0:UpdateListItems>
<ns0:listName>MySchedule</ns0:listName>
<Batch OnError="Continue" ListVersion="1">
<Method ID="1" Cmd="New">
<Field Name="ID">New</Field>
<Field Name="Title">Toasting</Field>
<Field Name="EndDate">2009-03-07 18:00:00</Field>
<Field Name="EventDate">2009-03-07 17:00:00</Field>
<Field Name="Location">Everywhere</Field>
<Field Name="Description">Stuff!</Field>
</Method>
</Batch>
</ns0:UpdateListItems>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我認爲這個問題是體內的元素。這個例子說ns0
,而我拿到ns1`。
於是,我就用插件,如杜尚這個問題在這裏提出:
python suds wrong namespace prefix in SOAP request
所以我用marshalled()
方法和我的代碼如下所示:
class UpdatePlugin(MessagePlugin):
def marshalled(self, context):
body = context.envelope.getChild("Body")
updateListItems = body[0]
listName = body[1]
updateListItems.setPrefix("ns0")
listName.setPrefix("ns0")
然而上面的最後一行給出了以下錯誤:
ERROR:suds.plugin:'NoneType' object has no attribute 'setPrefix'
所以body
是None
本身。顯然我做錯了什麼。請幫幫我。