提供XML访问

问题

如何在web.py中提供XML访问?

如果需要为第三方应用收发数据,那么提供xml访问是很有必要的。

解法

根据要访问的xml文件(如response.xml)创建一个XML模板。如果XML中有变量,就使用相应的模板标签进行替换。下面是一个例子:

  1. $def with (code)
  2. <?xml version="1.0"?>
  3. <RequestNotification-Response>
  4. <Status>$code</Status>
  5. </RequestNotification-Response>

为了提供这个XML,需要创建一个单独的web.py程序(如response.py),它要包含下面的代码。注意:要用”web.header(‘Content-Type’, ‘text/xml’)”来告知客户端--正在发送的是一个XML文件。

  1. import web
  2. render = web.template.render('templates/', cache=False)
  3. urls = (
  4. '/(.*)', 'index'
  5. )
  6. app = web.application(urls, globals())
  7. class index:
  8. def GET(self, code):
  9. web.header('Content-Type', 'text/xml')
  10. return render.response(code)
  11. web.webapi.internalerror = web.debugerror
  12. if __name__ == '__main__': app.run()