This example is the most basic connectivity test between client code and the pulse™ XML-RPC service.
#! /usr/bin/env python from xmlrpclib import ServerProxy, Error PULSE_URL = "http://pal/xmlrpc" server = ServerProxy(PULSE_URL) print server.RemoteApi.ping()