Archived:Getting tarted with blogging from PySymbian through xmlrpclib
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
All PySymbian articles have been archived. PySymbian is no longer maintained by Nokia and is not guaranteed to work on more recent Symbian devices. It is not possible to submit apps to Nokia Store.
Article Metadata
You will need xmlrpclib to run the code below; copy it from your Python 2.2 installation directory to your phone where you have the code below saved. You can place it in your phone memory or memory card. Ped editor is recommended for running the code and making changes.
Here is my sample code for Blogging from PySymbian through xmlrpclib.
# First of All Create a server proxy for your xml rpc server
# The Xml rpc server in this case is "http://faali.wordpress.com/xmlrpc.php"
server = ServerProxy("http://faali.wordpress.com/xmlrpc.php")
# import the socket module of pys60
import socket
# Show a list of Access Points
apid = socket.select_access_point()
# get the selected access point
apo =socket.access_point(apid)
# set the access point as default
socket.set_default_access_point(apo)
# start the access point, so that it connects to the network and get its ip etc.
apo.start()
try:
# print the addTwoNumbers(1,2) and call the method on server which give us the output of 3
print 'addTwoNumbers(1,2) = ', server.demo.addTwoNumbers(1,2)
# call the supportedMethods() method of the server and print the supported methods
print 'supported methods: \n', server.mt.supportedMethods()
except Error, v:
print "ERROR", v
# stop the access point. if an error occurs
apo.stop()
apo.stop()
apid=None
apo=None
Additional information
Above code is written by Fayyaz Ali and is Licensed under gnu gpl.


(no comments yet)