作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何使用 python xmlrpclib
库发送自定义 HTTP header
! ?我需要在调用 RPC
方法时发送一些特殊的自定义 http_headers
。
最佳答案
您可以子类化 xmlrpclib.Transport
并将其作为参数传递给 ServerProxy
。选择一个要覆盖的方法(我选择了 send_content
),您就设置好了。
# simple test program (from the XML-RPC specification)
from xmlrpclib import ServerProxy, Transport, Error
class SpecialTransport(Transport):
def send_content(self, connection, request_body):
print "Add your headers here!"
connection.putheader("Content-Type", "text/xml")
connection.putheader("Content-Length", str(len(request_body)))
connection.endheaders()
if request_body:
connection.send(request_body)
# server = ServerProxy("http://localhost:8000") # local server
server = ServerProxy("http://betty.userland.com", transport=SpecialTransport())
print server
try:
print server.examples.getStateName(41)
except Error, v:
print "ERROR", v
关于python - 如何使用 python xmlrpclib 为 RPC 调用发送自定义 http_headers?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4624085/
如何使用 python xmlrpclib 库发送自定义 HTTP header ! ?我需要在调用 RPC 方法时发送一些特殊的自定义 http_headers。 最佳答案 您可以子类化 xmlrp
我是一名优秀的程序员,十分优秀!