3

我正在使用 Suds 通过肥皂访问 Sharepoint 列表,但我在使用格式不正确的肥皂时遇到了一些问题。

我正在使用以下代码:

from suds.client import Client
from suds.sax.element import Element
from suds.sax.attribute import Attribute
from suds.transport.https import WindowsHttpAuthenticated

import logging
logging.basicConfig(level=logging.INFO)
logging.getLogger('suds.client').setLevel(logging.DEBUG)

ntlm = WindowsHttpAuthenticated(username='somedomain\\username', password='password')
url = "http://somedomain/sites/somesite/someothersite/somethirdsite/_vti_bin/Lists.asmx?WSDL"

client = Client(url, transport=ntlm)

result = client.service.GetListCollection()
print repr(result)

每次我运行它时,我都会得到错误 400 Bad request 的结果。当我启用调试时,我可以看到生成的信封:

<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:GetListCollection/>
   </ns0:Body>
</SOAP-ENV:Envelope>

...带有此错误消息:

DEBUG:suds.client:http failed:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Bad Request</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD>
<BODY><h2>Bad Request</h2>
<hr><p>HTTP Error 400. The request is badly formed.</p>
</BODY></HTML>

通过 SoapUI 运行相同的 WSDL(以及原始信封数据),请求会返回预期的值。任何人都可以看到为什么我使用 Suds as SoapUI 得到不同结果的任何明显原因以及我该如何纠正这个问题?

更新:在不同的 Sharepoint 站点(即不是名称中带有空格的子子站点)和 Java(JAX-WS,它在同一个站点也有问题,但是,不同的问题)上测试了完全相同的代码之后,它看起来好像它按预期工作。因此,我想知道两个细节之一是否可能是这些问题的原因:

  • SOAP 实现与 Sharepoint 中的子子站点存在一些问题?
  • SOAP 实现在其名称中存在一些空格问题,即使使用 %20 作为替代?

我仍然需要使用原始 URL 来解决这些问题,因此我们将不胜感激任何输入。我假设由于 SoapUI 使用原始 url,应该可以纠正任何错误。

4

1 回答 1

1

我想我缩小了这个问题的范围,它特定于 suds(可能还有其他 SOAP 实现)。你的要点:

  • SOAP 实现在其名称中存在一些空格问题,即使使用 %20 作为替代?

那是当场的。为 sud 启用调试日志记录让我能够获取端点、信封和标题。使用 cURL 模仿完全相同的调用会返回有效响应,但会引发错误请求。

问题是 suds 获取您的 WSDL(url 参数)并对其进行解析,但它不包含 URL 编码字符串。这会导致如下调试消息:

DEBUG:suds.transport.http:opening (https://sub.site.com/sites/Site Collection with Spaces/_vti_bin/UserGroup.asmx?WSDL)
<snip>
TransportError: HTTP Error 400: Bad Request

通过 fiddler 代理传递此请求表明,https://sub.site.com/sites/Site由于它解析 WSDL 的方式,它正在针对 URL 运行请求。问题是您没有将位置参数传递给 suds.client.Client。以下代码每次都会给我有效的响应:

from ntlm3 import ntlm
from suds.client import Client
from suds.transport.https import WindowsHttpAuthenticated

# URL without ?WSDL
url = 'https://sub.site.com/sites/Site%20Collection%20with%20Spaces/_vti_bin/Lists.asmx'

# Create NTLM transport handler
transport = WindowsHttpAuthenticated(username='foo',
                                     password='bar')
# We use FBA, so this forces it to challenge us with 
# a 401 so WindowsHttpAuthenticated can take over.
msg = ("%s\\%s" % ('DOM', 'foo'))
auth = 'NTLM %s' % ntlm.create_NTLM_NEGOTIATE_MESSAGE(msg).decode('ascii')
# Create the client and append ?WSDL to the URL.
client = Client(url=(url + "?WSDL"),
                location=url,
                transport=transport)
# Add the NTLM header to force negotiation.
header = {'Authorization': auth}
client.set_options(headers=header)

一个警告:使用quotefromurllib有效,但您不能对整个 URL 进行编码,或者它无法识别 URL。你最好用 %20 替换空格。

url = url.replace(' ','%20')

希望这可以防止其他人将头撞到墙上。

于 2015-09-30T11:32:41.340 回答