[Freevo-devel] xmlrpc details for communicating with the record_server?

2003-11-29 Thread Brian J. Murrell
I want to schedule recordings with the recording server from another source. From my brief review of the record server, it looks like I need to make xmlrpc calls to the server. To confess, I know nothing about xmlrpc, and what makes this even more fun is that the program I want to schedule

Re: [Freevo-devel] xmlrpc details for communicating with the record_server?

2003-11-29 Thread James Oakley
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On November 29, 2003 03:32 pm, Brian J. Murrell wrote: What do I need to know in terms of published API with the record server. Presumably there are a set of RPCs that I can call with various arguments. Is this information published anywhere or

Re: [Freevo-devel] xmlrpc details for communicating with the record_server?

2003-11-29 Thread Rob Shortt
Brian J. Murrell wrote: I want to schedule recordings with the recording server from another source. From my brief review of the record server, it looks like I need to make xmlrpc calls to the server. Yes, there are several xmlrpc published methods. To confess, I know nothing about xmlrpc, and

Re: [Freevo-devel] xmlrpc details for communicating with the record_server?

2003-11-29 Thread Brian J. Murrell
On Sat, 2003-11-29 at 15:40, Rob Shortt wrote: One problem you will have though is passing objects back and forth. Xmlrpc only passes simpe type back and forth so we use Twisted's marmalade functions to serialize objects to xml format then rebuild them on the other side. Blech. I have

Re: [Freevo-devel] xmlrpc details for communicating with the record_server?

2003-11-29 Thread Michael Ruelle
On Sat, 2003-11-29 at 15:40, Rob Shortt wrote: One problem you will have though is passing objects back and forth. Xmlrpc only passes simpe type back and forth so we use Twisted's marmalade functions to serialize objects to xml format then rebuild them on the other side. I know Mike Ruelle

Re: [Freevo-devel] xmlrpc details for communicating with the record_server?

2003-11-29 Thread Rob Shortt
Brian J. Murrell wrote: I am writing a scheduleprogram freevo helper that can be called with a bunch of args and it schedules a program: $ freevo scheduleprogram --title=bar --sub-title=foo --start=1070148618 --stop=1071138618 --channel=15 Once I have it all working, I will post details here.