Hallo, I wanted to put some management of my CMF site to an external application. What is the most convinient way to access persistent objects and modify them? Should I integrate ZODB with my application or use any protocol to communicate (WebDAV, XML-RPC)? I suppose that the second way is better. Is there any howto? Maybe I should ask google, but about what? I think of using libxmlrpc with wxPython (thank you Phill), but maybe there are any other suggestions. Are there any out-of-the-box solutions? Pawel Lewicki
Pawel Lewicki wrote:
Hallo, I wanted to put some management of my CMF site to an external application. What is the most convinient way to access persistent objects and modify them? Should I integrate ZODB with my application or use any protocol to communicate (WebDAV, XML-RPC)? I suppose that the second way is better. Is there any howto? Maybe I should ask google, but about what? I think of using libxmlrpc with wxPython (thank you Phill), but maybe there are any other suggestions. Are there any out-of-the-box solutions?
I use ZEO for running external applications over my ZODB. It's quite simple and very fascinating seeing an external python-process doing all the work automagically... http://www.zope.org/Members/michel/HowTos/ZODB-How-To http://www.python.org/workshops/2000-01/proceedings/papers/fulton/zodb3.html Cheers, Maik
"Maik Jablonski" <maik.jablonski@uni-bielefeld.de> wrote in message news:b1lvnn$a29$1@main.gmane.org...
Pawel Lewicki wrote:
Hallo, I wanted to put some management of my CMF site to an external application. What is the most convinient way to access persistent objects and modify them? Should I integrate ZODB with my application or use any protocol to communicate (WebDAV, XML-RPC)? I suppose that the second way is better. Is there any howto? Maybe I should ask google, but about what? I think of using libxmlrpc with wxPython (thank you Phill), but maybe there are any other suggestions. Are there any out-of-the-box solutions?
I use ZEO for running external applications over my ZODB. It's quite simple and very fascinating seeing an external python-process doing all the work automagically...
http://www.python.org/workshops/2000-01/proceedings/papers/fulton/zodb3.html
Cheers, Maik
Is it possible (easy) to run ZEO on Windows? I might have to work with simple Plone instalations. Pawel
Pawel Lewicki wrote:
"Maik Jablonski" <maik.jablonski@uni-bielefeld.de> wrote in message
I use ZEO for running external applications over my ZODB. It's quite simple and very fascinating seeing an external python-process doing all the work automagically...
http://www.python.org/workshops/2000-01/proceedings/papers/fulton/zodb3.html
Cheers, Maik
Is it possible (easy) to run ZEO on Windows? I might have to work with simple Plone instalations.
Yes, it is (as far as I remember)... You can't use unix-sockets as far as I know, but running it over tcp should work. -mj
participants (2)
-
Maik Jablonski -
Pawel Lewicki