Re: [PD] xml-rpc client

2007-12-10 Thread Georg Holzmann
Hallo!

 Thanks I looked at that but it wasn't clear to me how I could connect to
 an external server such as
 http://xmlrpc-c.sourceforge.net/api.sample.php with this. Do I need to
 run a python script along with the patch? Is there a help file some
 where?

Well, there is an help pach: look in /externals/iem/iemxmlrpc
  (I think not a help patch, but an example patch).
And you should be able to use that with any other language than python ...

LG
Georg

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] xml-rpc client

2007-12-09 Thread jim ruxton
Hi , does anyone know if there is an external available that works as an
xml-rpc client?

Thanks

Jim

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] xml-rpc client

2007-12-09 Thread IOhannes m zmoelnig
jim ruxton wrote:
 Hi , does anyone know if there is an external available that works as an
 xml-rpc client?

yes [xmlrpc] found in externals/iem/ (CVS)


mfgs.dr
IOhannes

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] xml-rpc client

2007-12-09 Thread jim ruxton
Thanks I looked at that but it wasn't clear to me how I could connect to
an external server such as
http://xmlrpc-c.sourceforge.net/api.sample.php with this. Do I need to
run a python script along with the patch? Is there a help file some
where?
Thanks,
Jim

On Sun, 2007-12-09 at 11:58 +0100, IOhannes m zmoelnig wrote:
 jim ruxton wrote:
  Hi , does anyone know if there is an external available that works as an
  xml-rpc client?
 
 yes [xmlrpc] found in externals/iem/ (CVS)
 
 
 mfgs.dr
 IOhannes
 

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] xml-rpc

2007-10-05 Thread Georg Holzmann
Hallo!

 after I finished my script I found out that there is already an object 
 that does xml-rpc (iemxmlrpc). iem used it for the iArs project, but I 
 did not find the object?

It is in pd-cvs/externals/iem/iemxmlrpc/

 I am planning to use it as a protocol to talk to a database server. 
 (sounds boring, no?)
 
 No! I was pondering how to do some mySQL inserts and queries from Pd
 just the other day. Wanna show us some tricks?

What do you wanna do (marius) ? Directly query the mySQL database ?
Then you could just do it in pyext (I posted a mySQL pyext-external 
for pd some time ago to the list).

If you need communication to other languages or whatever, xmlrpc is nice 
- I used it quite a lot for installations etc.

LG
Georg

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] xml-rpc

2007-10-05 Thread marius schebella
hmmm, I don't know so much about the server side yet. it is an 
ontological database (which I was told is more complicated than a 
mysql??) and there is a wrapper around it, which is talking to several 
kiosk and screening moduls. we are defining queries and respond formats 
which is sent as xml. I also don't know yet how efficient that protocol is.
georg's mysql script seems the way to go for mysql queries.
marius.

Andy Farnell wrote:
 On Thu, 04 Oct 2007 21:03:33 -0400
 marius schebella [EMAIL PROTECTED] wrote:
 
 hi,
 xml-rpc is a protocol that is used to talk over network to a server. I 
 put a small python script (using pyext) and a testpatch online at
 http://www.parasitaere-kapazitaeten.net/pd/xml-rpc
 after I finished my script I found out that there is already an object 
 that does xml-rpc (iemxmlrpc). iem used it for the iArs project, but I 
 did not find the object?
 I am planning to use it as a protocol to talk to a database server. 
 (sounds boring, no?)
 
 No! I was pondering how to do some mySQL inserts and queries from Pd
 just the other day. Wanna show us some tricks?
 
 
 marius.


 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list
 
 


___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] xml-rpc

2007-10-04 Thread marius schebella
hi,
xml-rpc is a protocol that is used to talk over network to a server. I 
put a small python script (using pyext) and a testpatch online at
http://www.parasitaere-kapazitaeten.net/pd/xml-rpc
after I finished my script I found out that there is already an object 
that does xml-rpc (iemxmlrpc). iem used it for the iArs project, but I 
did not find the object?
I am planning to use it as a protocol to talk to a database server. 
(sounds boring, no?)
marius.


___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] xml-rpc

2007-10-04 Thread Andy Farnell
On Thu, 04 Oct 2007 21:03:33 -0400
marius schebella [EMAIL PROTECTED] wrote:

 hi,
 xml-rpc is a protocol that is used to talk over network to a server. I 
 put a small python script (using pyext) and a testpatch online at
 http://www.parasitaere-kapazitaeten.net/pd/xml-rpc
 after I finished my script I found out that there is already an object 
 that does xml-rpc (iemxmlrpc). iem used it for the iArs project, but I 
 did not find the object?
 I am planning to use it as a protocol to talk to a database server. 
 (sounds boring, no?)

No! I was pondering how to do some mySQL inserts and queries from Pd
just the other day. Wanna show us some tricks?


 marius.
 
 
 ___
 PD-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
 http://lists.puredata.info/listinfo/pd-list


-- 
Use the source

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] xml-rpc

2007-10-04 Thread Yves Degoyon
marius schebella wrote:

hi,
xml-rpc is a protocol that is used to talk over network to a server. I 
put a small python script (using pyext) and a testpatch online at
http://www.parasitaere-kapazitaeten.net/pd/xml-rpc
after I finished my script I found out that there is already an object 
that does xml-rpc (iemxmlrpc). iem used it for the iArs project, but I 
did not find the object?
I am planning to use it as a protocol to talk to a database server. 
(sounds boring, no?)
  


no, you can record how many bangs make a musician in a performance,
just to check if doesn't play mp3s..

record the bangs!

sevy

___
PD-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list