0

请问有人可以帮忙吗?我正在尝试在 python 中发布一个 SOAP 请求,但我收到错误响应 403:禁止访问。我的代码如下所示:我正在使用 python 导入:

import httplib
 import base64
 import string


    #the message
    message = """<soap:Envelope ...rest message </soap:Envelope>"""

    host = "host.test.com"

    url = 'https://server.etc.com' #End point url

我也需要使用基本身份验证,所以我需要 http 标头中的用户名和密码

username = 'username'
    password = 'password'

   webSoapAction = 'urn:etc-com:document...'


        #the Authentication in base64 encoding form for Basic Authentication
        auth = 'Basic' + string.strip(base64.encodestring(username +'.'+ password))

        webservice = httplib.HTTP(host) #connect to the server(host) 

在这里我尝试构建标题:

webservice.putrequest("POST", url)
        webservice.putheader("Host", host)
        webservice.putheader("User-Agent", "Python http auth")


    webservice.putheader("Content-Type:", "text/xml; charset=\"UTF-8\"")
    webservice.putheader("Content-length", "%d" % len(message))
    webservice.putheader("SOAPAction",webSoapAction)

    webservice.putheader('Authorization', auth)

    webservice.endheaders()
    webservice.send(message)

我应该在这里得到回复

#get the response
    statuscode, statusmessage, header = webservice.getreply()
    print "Response: ", statuscode, statusmessage
    print "Headers: ",header
    res = webservice.getfile().read()
    print 'Content: ', res
4

1 回答 1

0

关于您的基本身份验证标头结构的两件事:

  • 在“基本”和您的秘密之间放置一个空格
  • 使用“:”而不是“。” 在用户名和密码之间

所以它应该看起来像:

#the Authentication in base64 encoding form for Basic Authentication
auth = 'Basic ' + string.strip(base64.encodestring(username +':'+ password))
于 2012-12-26T18:42:08.400 回答