PATH:
usr
/
share
/
doc
/
python-pycurl-7.19.0
/
tests
#! /usr/bin/env python # -*- coding: iso-8859-1 -*- # vi:ts=4:et # $Id: test_xmlrpc.py,v 1.7 2003/04/21 18:46:11 mfx Exp $ ## XML-RPC lib included in python2.2 import xmlrpclib import pycurl # Header fields passed in request xmlrpc_header = [ "User-Agent: PycURL XML-RPC Test", "Content-Type: text/xml" ] # XML-RPC request template xmlrpc_template = """ <?xml version='1.0'?><methodCall><methodName>%s</methodName>%s</methodCall> """ # Engage c = pycurl.Curl() c.setopt(c.URL, 'http://betty.userland.com/RPC2') c.setopt(c.POST, 1) c.setopt(c.HTTPHEADER, xmlrpc_header) c.setopt(c.POSTFIELDS, xmlrpc_template % ("examples.getStateName", xmlrpclib.dumps((5,)))) print 'Response from http://betty.userland.com/' c.perform() c.close()
[-] test_stringio.py
[edit]
[-] test_xmlrpc.py
[edit]
[-] test_getinfo.py
[edit]
[-] test_internals.py
[edit]
[+]
..
[-] test_share.py
[edit]
[-] test_reset.py
[edit]
[-] test_cb.py
[edit]
[-] test_multi3.py
[edit]
[-] test.py
[edit]
[-] util.py
[edit]
[-] test_multi_socket_select.py
[edit]
[-] test_post.py
[edit]
[-] test_multi2.py
[edit]
[-] test_multi.py
[edit]
[-] test_multi6.py
[edit]
[-] test_ftp.py
[edit]
[-] test_gtk.py
[edit]
[-] test_multi4.py
[edit]
[-] test_write_abort.py
[edit]
[-] test_multi5.py
[edit]
[-] test_post3.py
[edit]
[-] test_memleak.py
[edit]
[-] test_post2.py
[edit]
[-] test_multi_socket.py
[edit]
[-] test_multi_timer.py
[edit]
[-] test_socketopen.py
[edit]
[-] util.pyc
[edit]
[-] test_multi_vs_thread.py
[edit]
[-] test_debug.py
[edit]