Abhishek Gupta
unread,Jun 7, 2011, 4:25:16 PM6/7/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to web...@googlegroups.com
Hello,
I have an application in web2py. To create the command line interface of the gui (web-interface), I want to use xmlrpc service. For example if I have following function :
@auth.requires_login
def example():
temp = request.args[0]
//do something on temp
return dict(temp=temp)
How can I call this function in xmlrpc, so that I make minimal changes in my original function definition (I require to do authentication, somehow send the request variable, and have some returned data structure).