Many thanks, Sean. Your idea sounds interesting and require more investigation on my part. I need to write application on a remote zope server (via wan, not part of our domain, but an extranet site) to access database tables on my domain. I don't think the other server has ZEO running. (Neither do I, but I can do it since zope server is mine.) The other side may so "No," in which case would I still be able to do what you say with DBTab? Ie., without ZEO on the other side? Thank you. Tena Sakai sean.upton@uniont rib.com To: tena.sakai.b@bayer.com, zope-dev@zope.org Sent by: cc: zope-dev-admin@zo Subject: RE: [Zope-dev] zope connector pe.org 02/18/2003 02:14 PM Use ZEO and DBTab and a shared mounted object database that both Zope instances have access to. Put any objects that need to be accessed by both Zope servers in that common storage mounted at some folder-level in your zope setup. Sean -----Original Message----- From: Tena Sakai [mailto:tena.sakai.b@bayer.com] Sent: Tuesday, February 18, 2003 1:56 PM To: zope-dev@zope.org Subject: [Zope-dev] zope connector Folks, I am interested in accessing resorcces from two or more zope servers. For example, <br> hahaha! <br> <dtml-var name=funny> <br> hohoho! <br> The code snippet above will, when rendered, yield: hahaha! hehehe! hohoho! provided that the entity funny ultamately returns hehehe! and accessible within the name space. But how could I do this if the object funny is on a different zope server? Ie., how can I connect two name spaces on different zope servers in some not-so-caotic fasion? Thanks in advance. Regards, Tena Sakai _______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope ) _______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://mail.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope )
Your idea sounds interesting and require more investigation on my part. I need to write application on a remote zope server (via wan, not part of our domain, but an extranet site) to access database tables on my domain.
I don't think the other server has ZEO running. (Neither do I, but I can do it since zope server is mine.) The other side may so "No," in which case would I still be able to do what you say with DBTab? Ie., without ZEO on the other side?
If you can't do ZEO magic, you'll have to go about it some RPC (remote procedure call) way. Currently XML-RPC support is good in Zope. There's an XMLRPC Method product for the calling, and Zope can do the serving automagically. If you're looking for something more transparent, I seem to remember something like that existing some time ago. Whether it still does... Maybe XMLRPC Proxy is what I was thinking of, but probably not. Maybe somebody with a better memory can inform. --jcc
participants (2)
-
J Cameron Cooper -
Tena Sakai