[Zope-dev] [Fwd: [Zope3-dev] Re: Zope 3 learning curve?]

2002-01-29 Thread Chris Withers
Don't think I was the _only_ intended recipient for this ;-) cheers, Chris Lennart Regebro wrote: From: Chris Withers [EMAIL PROTECTED] Lennart Regebro wrote: I think there is no doubt that Zope 3 will have a higher learner threshold than Zope 2. After all, you can just compare

[Zope-dev] persistent threads ?

2002-01-29 Thread Romain Slootmaekers
Yo, We have some computational expensive task that we execute as a result of some HTTPRequest. So we spawn a thread and return immediately. Future requests can get the status and thus we can monitor progress at the client side. So far so good. But what should we do when the server restarts

Re: [Zope-dev] Defining Interfaces

2002-01-29 Thread Phillip J. Eby
At 03:17 PM 1/28/02 +, Chris Withers wrote: Jeffrey P Shell wrote: On 1/27/02 11:25 AM, Steve Alexander [EMAIL PROTECTED] wrote: Hi folks, When I define an Interface, are the methods of the interface supposed to have self as the first argument? No. Can you expand on

Re: [Zope-dev] persistent threads ?

2002-01-29 Thread Casey Duncan
On Tuesday 29 January 2002 08:25 am, Romain Slootmaekers allegedly wrote: Yo, We have some computational expensive task that we execute as a result of some HTTPRequest. So we spawn a thread and return immediately. Future requests can get the status and thus we can monitor progress at the

[Zope-dev] Re: Python Base Classes, ZObjectManager, and Subobjects

2002-01-29 Thread Ross Patterson
I figured it out and I'm posting this so that the next hapless victim might stumble upon this in a google search where I did not. Long, with suggestions that have probably already been made for the improvements and clarification of ZClasses. The problem is that I was trying to subclass in

Re: [Zope-dev] Defining Interfaces

2002-01-29 Thread Florent Guillaume
When I define an Interface, are the methods of the interface supposed to have self as the first argument? No. But this does preclude automatic validation of the contract using python inheritance from the Interface, doesn't it ? Or will there be another way ? Florent -- Florent

[Zope-dev] Zope on Linux and Database as MS-SQL Server on WinNT

2002-01-29 Thread Peeyush Garg
Hi, What's the current best solution to utilize the combination of Zope on Linux and Database as MS-SQL Server running on WinNT. I don't find much information searching the Zope web site. Can somebody point me to some link? Thanks, Peeyush.

Re: [Zope-dev] Defining Interfaces

2002-01-29 Thread Martijn Pieters
On Tue, Jan 29, 2002 at 07:47:46PM +, Florent Guillaume wrote: When I define an Interface, are the methods of the interface supposed to have self as the first argument? No. But this does preclude automatic validation of the contract using python inheritance from the Interface,

Re: [Zope-dev] Zope on Linux and Database as MS-SQL Server on WinNT

2002-01-29 Thread Leonardo Rochael Almeida
On Tue, 2002-01-29 at 17:48, Peeyush Garg wrote: Hi, What's the current best solution to utilize the combination of Zope on Linux and Database as MS-SQL Server running on WinNT. I don't find much information searching the Zope web site. Can somebody point me to some link? See this howto:

Re: [Zope-dev] Re: Python Base Classes, ZObjectManager, andSubobjects

2002-01-29 Thread Leonardo Rochael Almeida
On Tue, 2002-01-29 at 17:28, Ross Patterson wrote: I figured it out and I'm posting this so that the next hapless victim might stumble upon this in a google search where I did not. Long, with suggestions that have probably already been made for the improvements and clarification of ZClasses.

Re: [Zope-dev] Zope on Linux and Database as MS-SQL Server on WinNT

2002-01-29 Thread Paul Everitt
Take a look at: http://www.zope.org/Members/haqa/XMLKit/news-1.1.1 Adrian made an interface to ODBC Socket Server. --Paul Peeyush Garg wrote: Hi, What's the current best solution to utilize the combination of Zope on Linux and Database as MS-SQL Server running on WinNT. I don't

Re: [Zope-dev] Error 11

2002-01-29 Thread Ahsan Imam
Did this restarting problem start with Zope 2.4.x? Was is there in 2.3.x because were are thinking of downgrading to 2.3.x? Thanks for your help Chris McDonough [EMAIL PROTECTED] 01/28/02 21:26 PM Hmm. This doesn't look any better. ;-) I'm not sure how to tell you to get more relevant

Re: [Zope-dev] Error 11

2002-01-29 Thread Chris McDonough
I dont know what the restarting problem is at this point. It may have to do with the MySQL database adapter but you say you're not able to run the site without it so there's no way to tell and no way for me to really help beyond recommending that you run the site without it. Sorry.

Re: [Zope-dev] Zope on Linux and Database as MS-SQL Server on WinNT

2002-01-29 Thread Adrian Hungate
Just to paint the complete picture (As I think the readme/news article does not at the moment). 1) The ODBC Socket Server software for the Windows database server can be downloaded from http://odbc.sourceforge.net/ which is the primary source for Team FXML's excellant product. 2) The next

[Zope-dev] Urgent help required

2002-01-29 Thread Peeyush Garg
Hi, Thanks for all the answers for running Zope (Linux) and MS-SQL(WinNT). Now I have a different scenario. In case I use Win2K and MS-SQL-Server 2000, I need to use ZODBCDA. Now my question is that does Zope use connection pooling how do I configure that? If not, then suppose I get 10

[Zope-dev] logging crash

2002-01-29 Thread Terry Kerr
Hi, I have modified ZServer/medusa/http_server.py::http_request.log() so that the host is tacked onto the end of the log file. This is so that I can track my virtual hosts. The modification is very simple...only two lines added as shown by the *: * host=self.get_header('host')