Re: Communication between C++ server and Python app

2013-03-23 Thread premiumtelco
.nabble.com/Communication-between-C-server-and-Python-app-tp4937660p5011431.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between C++ server and Python app

2012-05-09 Thread Jean-Michel Pichavant
kenk wrote: Hi, I've got a server process written in C++ running on Unix machine. On the same box I'd like to run multiple Python scripts that will communicate with this server. Can you please suggest what would be best was to achieve this ? Kind regards and thanks in advance! M. xmlrpc sh

Re: Communication between C++ server and Python app

2012-05-01 Thread Adam Tauno Williams
On Sat, 2012-04-28 at 17:45 -0700, kenk wrote: > I've got a server process written in C++ running on Unix machine. > On the same box I'd like to run multiple Python scripts that will > communicate with this server. > Can you please suggest what would be best was to achieve this ? Time to start us

Re: Communication between C++ server and Python app

2012-04-30 Thread Miki Tebeka
> > I've got a server process written in C++ running on Unix machine. > > On the same box I'd like to run multiple Python scripts that will > > communicate with this server. > > > > Can you please suggest what would be best was to achieve this ? As said before, there are many options. Here are som

Re: Communication between C++ server and Python app

2012-04-30 Thread kenk
Failr point - I should do that in original question. The C++ server runs on Unix (Mac OS X as a matter of fact) and, as I'm the one who develops it, can use whthever technology is suitable. Currently it uses STL, Boost and Qt libraries. The server is responsible for providing connectivity to sto

Re: Communication between C++ server and Python app

2012-04-29 Thread Cameron Simpson
On 29Apr2012 21:08, Chris Angelico wrote: | On Sun, Apr 29, 2012 at 4:24 PM, Cameron Simpson wrote: | > On 29Apr2012 11:42, Chris Angelico wrote: | > | Personally, I would recommend a TCP socket, because that allows the | > | flexibility of splitting across multiple computers. | > | > And the pa

Re: Communication between C++ server and Python app

2012-04-29 Thread Marcin Maksymiuk
Failr point - I should do that in original question. The C++ server runs on Unix (Mac OS X as a matter of fact) and, as I'm the one who develops it, can use whthever technology is suitable. Currently it uses STL, Boost and Qt libraries. The server is responsible for providing connectivity to s

Re: Communication between C++ server and Python app

2012-04-29 Thread Chris Angelico
On Sun, Apr 29, 2012 at 4:24 PM, Cameron Simpson wrote: > On 29Apr2012 11:42, Chris Angelico wrote: > | Personally, I would recommend a TCP socket, because that allows the > | flexibility of splitting across multiple computers. > > And the pain of ensuring security, if you're in an open network.

Re: Communication between C++ server and Python app

2012-04-29 Thread Tamer Higazi
Take the twisted library. I used to write myself a socket server and client. Socket is fast, but you need on the other hand to know how big the dataset might be, that will be serialized and deserialized as well. Tamer Am 29.04.2012 08:24, schrieb Cameron Simpson: > On 29Apr2012 11:42, Chris An

Re: Communication between C++ server and Python app

2012-04-28 Thread Cameron Simpson
On 29Apr2012 11:42, Chris Angelico wrote: | On Sun, Apr 29, 2012 at 10:45 AM, kenk wrote: | > I've got a server process written in C++ running on Unix machine. | > On the same box I'd like to run multiple Python scripts that will | > communicate with this server. | > | > Can you please suggest w

Re: Communication between C++ server and Python app

2012-04-28 Thread Rodrick Brown
What interfaces are available on the server process? Sent from my iPad On Apr 28, 2012, at 8:45 PM, kenk wrote: > Hi, > > I've got a server process written in C++ running on Unix machine. > On the same box I'd like to run multiple Python scripts that will > communicate with this server. > >

Re: Communication between C++ server and Python app

2012-04-28 Thread Roy Smith
In article <108cb846-6bb9-4600-a984-2fded0c91...@er9g2000vbb.googlegroups.com>, kenk wrote: > Hi, > > I've got a server process written in C++ running on Unix machine. > On the same box I'd like to run multiple Python scripts that will > communicate with this server. > > Can you please sugges

Re: Communication between C++ server and Python app

2012-04-28 Thread Chris Angelico
On Sun, Apr 29, 2012 at 10:45 AM, kenk wrote: > Hi, > > I've got a server process written in C++ running on Unix machine. > On the same box I'd like to run multiple Python scripts that will > communicate with this server. > > Can you please suggest what would be best was to achieve this ? Persona

Communication between C++ server and Python app

2012-04-28 Thread kenk
Hi, I've got a server process written in C++ running on Unix machine. On the same box I'd like to run multiple Python scripts that will communicate with this server. Can you please suggest what would be best was to achieve this ? Kind regards and thanks in advance! M. -- http://mail.python.org/