Re: [Zope3-Users] How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread Chris Withers
Reinhold Strobl wrote: For instance, server A provides the views and server B provides business functionality via utilities. As a side effect, this should help to increase scalability, since I split functionality over multiple servers. But how to I get them to work together? Is XML-RPC the

[Zope3-Users] Re: How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread Reinhold Strobl
Chris Withers [EMAIL PROTECTED] writes: Reinhold Strobl wrote: For instance, server A provides the views and server B provides business functionality via utilities. As a side effect, this should help to increase scalability, since I split functionality over multiple servers. But how

Re: [Zope3-Users] Re: How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread Frank Burkhardt
Hi, On Wed, May 17, 2006 at 09:15:22AM +, Reinhold Strobl wrote: [snip] Thanks for your reply, but I have looked on ZEO - however: this technology only allows a seperation of application from the concrete storage. But what I am looking for is I want to seperate the application tier

Re: [Zope3-Users] Re: How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread Achim Domma
Reinhold Strobl wrote: Consider the followng example: one company has got a Zope application running on a single server. This applications need the components of e.g. the supplier of the component running on a different server. So I don't want to mirror both, because the both companies are more

[Zope3-Users] Re: How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread Reinhold Strobl
I'm not a Zope expert, but to me it sounds like you want to solve a problem with Zope, which it is not intended for. If you want to implement complex distributed scenarios use SOAP, XML-RPC, CORBA, DCOM, ... or whatever suits your needs. Then you could still implement a thin Zope utility,

[Zope3-Users] Re: How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread Rocky Burt
On Wed, 2006-17-05 at 10:18 +, Reinhold Strobl wrote: I'm not a Zope expert, but to me it sounds like you want to solve a problem with Zope, which it is not intended for. If you want to implement complex distributed scenarios use SOAP, XML-RPC, CORBA, DCOM, ... or whatever suits

Re: [Zope3-Users] How to distribute distinct components among multiple Zope servers?

2006-05-17 Thread David Johnson
The other solutions presented thus far sound great. Obviously the devil is in the details, but in our situation, we have found using an SQL storage engine to be most useful. It does no do RPC per se, but we have found we can wakeup the other side to do something using a simple http call or

Re: [Zope3-Users] ForbiddenAttribute

2006-05-17 Thread mats.nordgren
Look at form.txt in the formlib directory. On Wed, 17 May 2006 11:24:43 -0500, Jachin Rupe wrote hi there thanks for the help. I was just reading somewhere that formlib is the way to go. Is that the general consensus? The problem is, it doesn't look like formlib is covered in either

[Zope3-Users] Calling method of superclass

2006-05-17 Thread Florian Lindner He
Hello, should be a simple problem, but... I have a class that is registered as a NameChooser: from zope.app.container.contained import NameChooser class XGMNameChooser(NameChooser): implements(INameChooser) def chooseName(self, name, object): if

Re: [Zope3-Users] How to make catalog working?

2006-05-17 Thread Florian Lindner
Am Dienstag, 16. Mai 2006 21:51 schrieb Frank Burkhardt: Hi, On Tue, May 16, 2006 at 07:08:34PM +0200, Florian Lindner wrote: Am Dienstag, 16. Mai 2006 12:02 schrieb Frank Burkhardt: [snip] The IntID utility has to be registered *before* all the objects you want to find. No object