Re: Best technology for agent/web server architecture

2008-05-12 Thread Irmen de Jong
Gabriel Genellina wrote: 2008/5/8 M.-A. Lemburg <[EMAIL PROTECTED]>: SOAP would be a good choice if you want to send to data to other servers as well, e.g. Java-based ones. XML-RPC and JSON are better for simple data structures. If you have control over both client and server and don't need t

Re: Best technology for agent/web server architecture

2008-05-11 Thread Gabriel Genellina
> 2008/5/8 M.-A. Lemburg <[EMAIL PROTECTED]>: > >> SOAP would be a good choice if you want to send to data to other >> servers as well, e.g. Java-based ones. >> >> XML-RPC and JSON are better for simple data structures. >> >> If you have control over both client and server and don't >> need to both

Re: Best technology for agent/web server architecture

2008-05-09 Thread Florencio Cano
I have control over agent and client but I'm not sure how to use pickle for this task. Do you suggest to pickle the objects that I want to send and send it over a usual socket? I have searched a bit in Google and I have seen that Pickle is insecure by default. What do you think about this? 2008/5/

Re: Best technology for agent/web server architecture

2008-05-08 Thread M.-A. Lemburg
On 2008-05-08 16:16, Florencio Cano wrote: Hi, I would be interested in your opinion about what technology you considear the ideal technology for implementing in Python an agent that should comunicate information to a web server. I have read about SOAP but I'm now sure if this will be the right o