[Webware-discuss] WebKit: PickleRPCServlet Error

2002-07-14 Thread T.J. Jankun-Kelly
To whom it may concern, This message is regarding the changes to PickleRPCServlet made in response to the message on 2002-06-08 by Ian Bicking titled "Content-type handling in HTTPRequest". Using the CVS version of WebWare after that change, a problem occurs when trying to use PickleRPC. The

Re: [Webware-discuss] Does MiddleKit support many-to-many relations?

2002-07-14 Thread Jason Hildebrand
Forgot to copy the list on this: -Forwarded Message- From: Jason Hildebrand <[EMAIL PROTECTED]> To: Joseph Barillari <[EMAIL PROTECTED]> Subject: Re: [Webware-discuss] Does MiddleKit support many-to-many relations? Date: 14 Jul 2002 14:41:20 -0500 On Sun, 2002-07-14 at 11:59, Joseph Bar

Re: [Webware-discuss] MiddleKit/MySQL Threading Problem - Solved

2002-07-14 Thread Roger Haase
Thanks Geoff! I downloaded your fix and by putting in the print statement verified I was getting multiple copies of UnboundMethodError before the fix and only one after the fix. If I understand the problem correctly, the className.methodName(self,...) form of call does a global lookup and th

Re: [Webware-discuss] MiddleKit/MySQL Threading Problem - Solved

2002-07-14 Thread Geoff Talvola
I just checked in a fix to Webware CVS. Give it a try. - Geoff On Sun, 2002-07-14 at 12:36, Geoff Talvola wrote: > This isn't a Python problem -- it's a bug in Webware. > > If you put a print statement at the end of UnboundMethodError.py you'll > find that the module actually gets imported mul

[Webware-discuss] Does MiddleKit support many-to-many relations?

2002-07-14 Thread Joseph Barillari
Hi. I've been experimenting with MiddleKit, and am curious if it supports many-to-many relations -- e.g., for classes foo and bar, a foo object can reference any number of bar objects, and vice versa. By my understanding of MiddleKit, creating object references involves editing Classes.csv and d

Re: [Webware-discuss] MiddleKit/MySQL Threading Problem - Solved

2002-07-14 Thread Geoff Talvola
This isn't a Python problem -- it's a bug in Webware. If you put a print statement at the end of UnboundMethodError.py you'll find that the module actually gets imported multiple times. This somehow causes a mismatch between the instances and the classes that triggers the error you're noticing.