#!/usr/bin/env python import xmlrpclib server = xmlrpclib.Server('http://awilliam:fred@localhost/RPC2') print "--------------------------" result = server.appointment.getById("11570") print result print "--------------------------" print "--------------------------" server.appointment.setResources(11570, "North Conference Room"); result = server.appointment.getById("11570") print result['resourceNames'] print "--------------------------" server.appointment.setResources(11570, "South Conference Room,North Conference Room"); result = server.appointment.getById("11570") print result['resourceNames'] print "--------------------------" server.appointment.setResources(11570, [ "South Conference Room" ]); result = server.appointment.getById("11570") print result['resourceNames'] print "--------------------------" server.appointment.setResources(11570, [ ]); result = server.appointment.getById("11570") print result['resourceNames'] print "--------------------------" server.appointment.setResources(11570, [ 11700 ]); result = server.appointment.getById("11570") print result['resourceNames'] print "--------------------------" server.appointment.setResources(11570, [ 11700, 11720 ]); result = server.appointment.getById("11570") print result['resourceNames']