Roger Haase schrieb:
> I have downloaded the latest version of MiddleObject.py and verified
> that putting the lock on the class level works for me. Per your
> previous messages, it looks like you have already processed the 3
> other MiddleKit changes in the queue.
Good to hear. Yes, I wanted to
--- On Tue, 11/4/08, Christoph Zwerschke <[EMAIL PROTECTED]> wrote:
> From: Christoph Zwerschke <[EMAIL PROTECTED]>
> Subject: Re: [Webware-discuss] MiddleKit Threading Error?
> To: "Discussion of Webware for Python including feedback and proposals."
>
> D
Christoph Zwerschke schrieb:
> Btw, I was trying to run the MiddleKit test suite, but I get many
> errors. For instance when running "python Test.py MKDelete" I get a
> "Lock wait timeout exceeded" (this hasn't anything to do with the lock
> in the patch, I get it also without your patch).
I ha
Roger Haase schrieb:
> I had to revise your new MiddleObject.py to put the "_mk_cacheLock =
> threading.RLock()" statement at the module level rather than in the
> MiddleObject __init__ method. A new MiddleObject instance is being
> created with each request so putting the lock inside the object
--- On Sun, 11/2/08, Christoph Zwerschke <[EMAIL PROTECTED]> wrote:
> From: Christoph Zwerschke <[EMAIL PROTECTED]>
> Subject: Re: [Webware-discuss] MiddleKit Threading Error?
> To: [EMAIL PROTECTED], "Discussion of Webware for Python including feedback
> an
Roger Haase schrieb:
> My revised solution is to put the lock at the beginning and end of the method.
I never used MiddleKit, so I don't know how to test this, but since it
looks reasonable I've checked this in anyway, and cleaned up
MiddleObject.py a bit. Can you check whether this works for yo
--- On Sun, 10/19/08, Roger Haase <[EMAIL PROTECTED]> wrote:
> From: Roger Haase <[EMAIL PROTECTED]>
> Subject: MiddleKit Threading Error?
> To: webware-discuss@lists.sourceforge.net
> Date: Sunday, October 19, 2008, 3:46 PM
> I last reported this problem back on May 22, 2004. I am not
> sure
I last reported this problem back on May 22, 2004. I am not sure what I have
been doing different lately, but I have encountered the problem on both my test
system and my production system this past month. I have never been able to
reproduce this problem at will. The problem last went away wi
On Thu, 2006-09-07 at 09:45 -0700, Chuck Esterbrook wrote:
> On 9/7/06, Seth Remington <[EMAIL PROTECTED]> wrote:
> > Hello All,
> >
> > I am using MiddleKit in an open source application and as most projects
> > go it is expanding and evolving, and the database structure is evolving
> > with it.
>
On 9/7/06, Seth Remington <[EMAIL PROTECTED]> wrote:
> Hello All,
>
> I am using MiddleKit in an open source application and as most projects
> go it is expanding and evolving, and the database structure is evolving
> with it.
>
> So now I have a requirement to provide a convenient upgrade path for
Hello All,
I am using MiddleKit in an open source application and as most projects
go it is expanding and evolving, and the database structure is evolving
with it.
So now I have a requirement to provide a convenient upgrade path for
users that includes database schema changes. MiddleKit is wonder
HI
I solved the problem of the following way:
class Est(SQLObject):
class sqlmeta:
idName="IDEst"
Descripcion = StringCol()
Regards
---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
Thank you for the answers, I am going to realize tests, then I comment
to them on the results that I obtained.
Regards
---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile
marcelo schiavone wrote:
Hi, does someone know the way of doing that "MiddleKit" works with a
remote (existing) database, using MSSQL?
The database already exists and the idea is to realize an application
in Webware in another PC that accedes to the above mentioned database
using MiddleKit.
Re
On 3/14/06, marcelo schiavone <[EMAIL PROTECTED]> wrote:
> Hi, does someone know the way of doing that "MiddleKit" works with a
> remote (existing) database, using MSSQL?
>
> The database already exists and the idea is to realize an application
> in Webware in another PC that accedes to the above m
Hi, does someone know the way of doing that "MiddleKit" works with a
remote (existing) database, using MSSQL?
The database already exists and the idea is to realize an application
in Webware in another PC that accedes to the above mentioned database
using MiddleKit.
Regards.
---
Saudações,
I am in process of choosing the tecnology for the new website.
Webware seems to be amazing for developing a web application.
But I have some doubts about building the infrastructure:
- Middlekit does not support Postgresql. There are any other way or
workaround?
- H
---Original Message---
From: Vytautas Bruzgis
Date: 05/08/05 13:11:50
To: [EMAIL PROTECTED]
Subject: MiddleKit
Hello,
i am new at Webware and i am trying to use MiddleKit as it is described in
http://webware.sourceforge.net/Webware-0.7/MiddleKit/Docs/QuickStart.html#Next
(M
Hi,
I am having a problem with MiddleKit. I think the generated code is
not handling datetime data correctly. Can save datatime data ok (it
populates the table correctly) but when I try to retrieve objects, I
get an exception like this:
Traceback (most recent call last):
File "./NSC.py", line
It sounds like you are traveling down the exact same path I went down a
few weeks ago ;) I was getting a similar MySQL "max connections
exceeded" error as well. The fix for me was to configure MiddleKit to
use an SQL connection pool. In your model's Settings.config file add the
following:
'SQLConn
I only have one ObjectStore object, but it will be handling
persistance for several hundred other objects. Here's the code that
was causing the problem (after I made a change to the ObjectStore code
to make it work with the newer python/mysql lib per instructions
earlier in this thread):
import o
How many ObjectStore objects do you have living? I believe you are only supposed to have one instance for your entire application. I had a lot of trouble with running out of connections when I first started using MiddleKit, and as I recall I fixed it by making a global MySQLObjectStore instance.
I think this creates another problem. A new connection/cursor is
created for every object that is stored when you call
"store.saveChanges()".
If my mysql max_connections variable is less than the number of
objects I have to commit, I'll get an exception like this:
Traceback (most recent call las
Actually I think it was a change in the MySQLdb API. I believe that
insert_id() moved from the cursor object to the connection object in the
latest versions.
I've fixed it either by installing an older version of MySQLdb or by
editing MySQLObjectStore.py to:
def retrieveLastInsertId(self, conn, c
Hi,
I was just trying out middlekit for the first time and ran into a
problem. I was following the quick start guide and when I tried
running the code with "store.saveChanges()" in main, I get this error:
$ ./main.py
Traceback (most recent call last):
File "./main.py", line 31, in ?
main(
Hi,
I'm new both to Python and Webware, so please excuse my ignorance if it's an
obvious answer! I'm using the latest CVS version of Webware, if that has
any impact.
I have two classes defined in my Classes.csv (Some fields removed for
clarity) :
Class,Attribute,Type,Default,isRequired,Min,Max,
Woohoo!
RESULTS
---
succeeded MKBasic.mkmodel
succeeded MKNone.mkmodel
succeeded MKString.mkmodel
succeeded MKDateTime.mkmodel
succeeded MKEnums.mkmodel
succeeded MKDefaultMinMax.mkmodel
succeeded MKTypeValueChecking.mkmodel
succeeded MKInheritance.mkmod
--- Chuck Esterbrook <[EMAIL PROTECTED]> wrote:
> Not to worry. As the author of MiddleKit I also have older projects
> that I don't want broken (and don't feel like upgrading).
> Consequently, when I make changes like this, I always add an option
> to get the old behavior. In this case, the set
On Tue, 24 Aug 2004 10:57:52 -0700 (PDT), Roger Haase wrote:
> The current CVS head for Middlekit now generates and expects the
> serialNum field for all SQL tables to be called "serialNum" where
> before the serialNum field for each table would be called
> + "Id".
>
> This breaks a lot of existin
The current CVS head for Middlekit now generates and expects the
serialNum field for all SQL tables to be called "serialNum" where
before the serialNum field for each table would be called +
"Id".
This breaks a lot of existing code as all SQL tables created with prior
versions will not work.
He
On Thursday 29 July 2004 01:36, Dennis Kertis wrote:
> I'm having some trouble using MiddleKit with SQL
> Server. I'm trying to go through the quick start guide
> and ran into some issues. The first problem I had was
> connecting to the database. However, I added a DSN
> and changed the parameter
I'm having some trouble using MiddleKit with SQL
Server. I'm trying to go through the quick start guide
and ran into some issues. The first problem I had was
connecting to the database. However, I added a DSN
and changed the parameters including the connection
string in the MiddleKit.Run.MSSQLObj
It has been almost two years, but I have once again hit an abend in
MiddleObject.py (line 75 in 8.1):
assert len(cache)+1==len(row)
On my last reported incident, I had been encountering this problem
every several months, and the suggestion was made to upgrade to 7.1.
That seemed to have fixed
On Friday, September 19, 2003, at 03:53 AM, Tripp Lilley wrote:
[1] I plan to add more highlighting rules, better faces, etc., and
would
like to borrow outline mode's expand / collapse features, but that
ain't
happenin' tonight. Or ever, realistically. Right, Ian? :-)
By tomorrow you'll probably
Here's a minimalist[1] major mode to give the .mkmodel CSV files some
syntax highlighting in emacs-like operating systems, er, editors. Tested
only under XEmacs, but I don't think it does any mojo that would break
GNU Emacs.
Props to Andrew Cosgriff's itty-bitty procmail mode on this page:
thing? Someone please correct me.
>
> Also, has anyone looked at Modeling?
> http://modeling.sourceforge.net/
>
> -Original Message-----
> From: mike [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 04, 2003 4:00 AM
> To: [EMAIL PROTECTED]
> Subject: [Webware-discuss] Middl
On Thursday, September 4, 2003, at 02:59 AM, mike wrote:
I am just wondering whether somebody could briefly compare sqlbject
(or any
similar module) with MiddleKit. Personally, sqlobject looks to me more
flexible for basic database operations, but it would be nice to know
what
others prefer to us
3 4:00 AM
To: [EMAIL PROTECTED]
Subject: [Webware-discuss] MiddleKit vs sqlobject
I am just wondering whether somebody could briefly compare sqlbject (or any
similar module) with MiddleKit. Personally, sqlobject looks to me more
flexible for basic database operations, but it would be nice to know
Hallo,
mike hat gesagt: // mike wrote:
> I am just wondering whether somebody could briefly compare sqlbject
> (or any similar module) with MiddleKit. Personally, sqlobject looks
> to me more flexible for basic database operations, but it would be
> nice to know what others prefer to use with WebK
I am just wondering whether somebody could briefly compare sqlbject (or any
similar module) with MiddleKit. Personally, sqlobject looks to me more
flexible for basic database operations, but it would be nice to know what
others prefer to use with WebKit.
Thanks,
mike
--
I'm having trouble setting default dates for Middlekit objects. It is
using mxDate and Time. My classes.csv looks like this:
UserDemographics
,birthday, 1968-03-17
When generating the code, the following exception is thrown:
Generating SQL...
Generating Python...
Traceback (most recent call
Thanks to all for the discussion about MiddleKit vs ZODB. It was
enlightening, to say the least. I've not used either so far, preferring to
work directly with the underlying RDBMS since the schema I've been using
were very complex--4-6 table joins, etc. I'll give MiddleKit a shot on the
next proj
> I haven't needed transactions or record versioning in my applications.
> I'm amenable to MiddleKit enhancements in this area, however.
I'm going to build an abstract VersionedObject MiddleKit object class next week
because I need one for a wiki-esque application where users can change each
othe
Hi all,
I have a master entity Entry and a detail entity Variant. I created the
csv file with a column named variant in Entry that is of type list of
Variant. In the Variant class (of the csv file) I have entry of type Entry
In my code:
entry = Entry()
# set several attributes, then
entry.add
I'm going to jump in here though I know I'm _way_ out of my league
replying to Chuck and IanI'm just a hacker who likes Webware
I got interested in ZODB and tinkered with it some, and also saw that it
could play nice with Webware. It seems to me it could be a nice
combination for situation
On Fri, 2003-02-28 at 09:37, Edmund Lian wrote:
> I was reading one of Kuchling's write-ups about ZODB and ZEO last
> night (http://www.amk.ca/zodb/zodb-zeo.html), and was wondering why
> people use MiddleKit instead of ZODB.
Simplicity, interactivity with an often required RDBMS, and speed. The
On Fri, 2003-02-28 at 09:37, Edmund Lian wrote:
> I have a question... please don't get offended by it, I don't mean it to be
> offensive...
No one should be offended by such a question...
> While I'm not a great fan of object oriented DBs, I do see a role for them
> in providing persistence when
On Friday 28 February 2003 07:37 am, Edmund Lian wrote:
> I have a question... please don't get offended by it, I don't mean it
> to be offensive...
>
> While I'm not a great fan of object oriented DBs, I do see a role for
> them in providing persistence when the demands of an application are
> lig
On Friday 28 February 2003 16:37, you wrote:
> I have a question... please don't get offended by it, I don't mean it to be
> offensive...
>
> [...]
>
> There hasn't been much discussion of using/integrating ZODB/ZEO into
> Webware as a standard persistence tool. Am I missing something?
Probably no
I have never used an OODB, so I might be wrong, but I have always seen
their weakness to be flexibility. You will get stuck with the objects
you use for a particular application. With a relational DB you can map
the data to any type of object. It is a little more complex because of
the extra ma
Edmund Lian wrote:
Why bother trying to persist to a relational DB if you can't really get at
the full power of the relational model through MiddleKit (or any other ORM
The most obvious reason would be for compatibility with an existing
application sharing the same database...
---
I have a question... please don't get offended by it, I don't mean it to be
offensive...
While I'm not a great fan of object oriented DBs, I do see a role for them
in providing persistence when the demands of an application are lightweight
(and don't require all the good stuff that relational DBs
On Tue, 2003-02-18 at 05:15, Bogdan wrote:
> I have Webaware8
> I have error
>
> File "/var/Webware/WebKit/averest/index.py", line 35, in writeHTML
> self.ViewCustomers()
> File "/var/Webware/WebKit/averest/index.py", line 85, in ViewCustomers
> stor.readModelFileNamed('/var/Webware/Web
I have Webaware8
I have error
File "/var/Webware/WebKit/averest/index.py", line 35, in writeHTML
self.ViewCustomers()
File "/var/Webware/WebKit/averest/index.py", line 85, in ViewCustomers
stor.readModelFileNamed('/var/Webware/WebKit/averest/Billing')
File "./MiddleKit/Core/ModelUser.
Hi-
I had a quick question about the MySQLObjectStore in
Middlekit. Is there a 'close()' or some other such
method that I am missing out on? I think the
'persistent store' is a little too persistent.
Whenever I call MySQLObjectStore.fetchObjectsOfClass()
a connection is opened to MySQL that perf
I've been working with the Postgres patches for Middlekit and found a
bug in the PostgreSQLObjectStore. New objects can be added to the
store just fine, but changes to objects are not saved. I've tracked
the problem down to the fact that the connection used to commit the
changes after all are exe
On Wed, 2002-11-27 at 00:15, Wayne Larsen wrote:
> So just to clarify, if you have a long running
> AppServer, the store will grow to contain all of the
> database objects that have been queried for? Do
> people just run clear regularly, or is this something
> I don't need to worry about?
So far
Thanks,
I've got it running and it appears to be working fine.
Only change is that I needed to move the Session
initialization about the Context Initialization in
MiddleKit/Application.py __init__
> > I wonder if MiddleKit has a mechanism to discard
> objects in memory?
>
> ObjectStore has a
On Tue, 2002-11-26 at 11:52, Wayne Larsen wrote:
> As a related question, do you
> know how MiddleKit manages caching?
MiddleKit keeps a cache (essentially a dictionary) of references to each
objects which it has loaded. Also, any object which has a "List of"
attribute will cache the list of o
Hi Jason,
You solution seems like an improved version of what I
described as option 1. As a related question, do you
know how MiddleKit manages caching? I wonder if
MiddleKit has a mechanism to discard objects in
memory?
I would be interested in seeing your solution. It
seems like a good c
On Mon, 2002-11-25 at 18:11, Wayne Larsen wrote:
> Hey all,
>
> In building a login system, I authorize the user, and
> then put the user object into the session data. That
> works great, and I can always query the user's
> permission easily, because the user object is easily
> accessible. The u
Hey all,
In building a login system, I authorize the user, and
then put the user object into the session data. That
works great, and I can always query the user's
permission easily, because the user object is easily
accessible. The user object is a middlekit object,
and therein lies the problem
On Mon, 2002-11-18 at 20:34, Tom Harris wrote:
> Greetings,
>
> I am playing with Middlekit, can someone tell me the correct way to clear
> the error state in the store if an object added to the store with
> addObject(), then attempted to be saved with saveChanges() raises an
> exception (in my te
Greetings,
I am playing with Middlekit, can someone tell me the correct way to clear
the error state in the store if an object added to the store with
addObject(), then attempted to be saved with saveChanges() raises an
exception (in my test this was because the object had None in a field that
was
--- Michael Engelhart <[EMAIL PROTECTED]> wrote:
> Shouldn't these updates/inserts be wrapped in a database transaction
> anyway?
> Wouldn't that avoid the threading issues that are coming up?
>
I have been wrong a lot on MiddleKit threading issues in particular,
but I think currently if a servle
Shouldn't these updates/inserts be wrapped in a database transaction
anyway?
Wouldn't that avoid the threading issues that are coming up?
On Tuesday, November 5, 2002, at 02:24 PM, Roger Haase wrote:
I fixed the problem by putting a rather brutal lock in ObjectStore, but
I would be happy to try
--- Jason Hildebrand <[EMAIL PROTECTED]> wrote:
>
> In any case, it would be a good first step to see if it solves your
> problem, Roger. I can send you a patch, just let me know if you use
> the
> 0.7 release or CVS.
>
I fixed the problem by putting a rather brutal lock in ObjectStore, but
I
On Tuesday 05 November 2002 09:39 am, Jason Hildebrand wrote:
> If these requirements are general enough, I'll document this and
> commit the fix to CVS. What do you think, Chuck?
Sounds great to me! Additional thoughts for the implementation:
- There is already a "boolean" self._threaded. The p
On Tue, 2002-11-05 at 10:15, Roger Haase wrote:
> In Jason's paper and elsewhere in the MiddleKit docs there is some
> advice on avoiding concurrency issues:
> During some stress testing a few days ago I found that if two servlets
> are updating or inserting different records at the same time usi
--- Chuck Esterbrook <[EMAIL PROTECTED]> wrote:
> I added your paper to:
> http://webware.sourceforge.net/Papers/
> >
> > http://www.opensky.ca/~jdhildeb/webware/
> >
In Jason's paper and elsewhere in the MiddleKit docs there is some
advice on avoiding concurrency issues:
'''
Concurrency
I added your paper to:
http://webware.sourceforge.net/Papers/
On Sunday 03 November 2002 12:13 pm, Jason Hildebrand wrote:
> I gave a talk on Webware at LinuxTag 2002, which has a section on
> MiddleKit and includes an example schema, Classes.csv and Samples.csv
> files. The paper is avai
On Sun, 2002-11-03 at 09:31, Michael Montagne wrote:
> I'm getting this error when called in my browser:
> File "/home/michael/Webware/MyContext/db.py", line 17, in showcats
> cats=store.fetchObjectsOfClass(Pic)
> File "./MiddleKit/Run/SQLObjectStore.py", line 286, in fetchObjectsOfClass
>
On Sat, 2002-11-02 at 08:50, Michael Montagne wrote:
I'm building sample data in a .csv file. To create a relationship between two
objects the doc say:
"You can see that in sample data, references to objects (sometimes
called "obj refs", "references" or "pointers") are made by refer
I'm getting this error when called in my browser:
File "/home/michael/Webware/MyContext/db.py", line 17, in showcats
cats=store.fetchObjectsOfClass(Pic)
File "./MiddleKit/Run/SQLObjectStore.py", line 286, in fetchObjectsOfClass
File "./MiddleKit/Run/SQLObjectStore.py", line 337, in executeS
I'm building sample data in a .csv file. To create a relationship between two objects
the doc say:
"You can see that in sample data, references to objects (sometimes
called "obj refs", "references" or "pointers") are made by referring to
the implicit serial number of the target object (1, 2, 3
On Sunday 27 October 2002 07:17 am, Michael Montagne wrote:
> How do I pass an SQL statement containing joins of different classes
> to MySQLObjectStore? It appears I can only return rows from one
> table using fetchObjectsOfClass. Are all updates to tables intended
> to be through the classes r
How do I pass an SQL statement containing joins of different classes to
MySQLObjectStore? It appears I can only return rows from one table
using fetchObjectsOfClass. Are all updates to tables intended to be
through the classes rather than using straight SQL or is it possible to
both ways?
Thank
* Gregory Brauer <[EMAIL PROTECTED]> [2002-10-11 17:54 -0700]:
> Ernesto Revilla wrote:
> >the new persistence framework of the Python Crew
>
> I'd be curious to know more about this. Is there any place I can get
> info?
http://www.python.org/sigs/persistence-sig/
-- Gerhard
-
Ernesto Revilla wrote:
the new persistence framework of the Python Crew
I'd be curious to know more about this. Is there any place I
can get info?
Greg
---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkge
t;[EMAIL PROTECTED]>
To: "Max Ischenko" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, October 09, 2002 2:49 AM
Subject: Re: [Webware-discuss] MiddleKit port to PostgreSQL
> On Tue, 2002-10-08 at 01:53, Max Ischenko wrote:
> > Hi,
> >
> >
Ian Bicking wrote:
> On Tue, 2002-10-08 at 20:26, Gregory Brauer wrote:
>
>>For this reason I am currently using PyDO/Skunkweb.
>
>
> AFAIK, neither PyDO or MiddleKit are tied very closely to their
> respective frameworks, no?
That's true. The only real ties are in the coding styles.
I use Sk
On Tue, 2002-10-08 at 20:26, Gregory Brauer wrote:
> For this reason I am currently using PyDO/Skunkweb.
AFAIK, neither PyDO or MiddleKit are tied very closely to their
respective frameworks, no?
Ian
---
This sf.net email is sponsored by:
Ian Bicking wrote:
> On Tue, 2002-10-08 at 01:53, Max Ischenko wrote:
>
>>Hi,
>>
>>I'd like to try MiddleKit but I am to use PostgreSQL DB, which seems
>>unsupported.
I did this almost two years ago and submitted the patch
back to Chuck, but it never got integrated, probably
because the regressi
On Tue, 2002-10-08 at 01:53, Max Ischenko wrote:
> Hi,
>
> I'd like to try MiddleKit but I am to use PostgreSQL DB, which seems
> unsupported.
>
> How complex would be to add the PostgreSQL support or may be it is
> already done in CVS?
There's a patch on sourceforge -- I have no idea what it l
Hi,
I'd like to try MiddleKit but I am to use PostgreSQL DB, which seems
unsupported.
How complex would be to add the PostgreSQL support or may be it is
already done in CVS?
--
Bst rgrds, M.A.X.: Mechanical Artificial Xenomorph.
---
This sf
I just started experimenting with Webware, and I am very very impressed,
congratulations!
I have a question about data types in the MiddleKit component: My
database design requires that a couple of the fields in the data store,
which will be housed in MySQL, be defined as 'varchar( 20 ) binary
I think I have a fix to MiddleObject.py at:
http://www.users.qwest.net/~haaserd/Webware/NEWMiddleObject.py
My modified code is marked # 2002-08-21.
I looked at the CVS version and there does not seem to be a lock where I put
one, although there are other places it could go, I suppose.
At any
g.RLock objects in strategic places.
- Geoff
> -Original Message-
> From: Roger Haase [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 21, 2002 1:03 AM
> To: [EMAIL PROTECTED]
> Subject: [Webware-discuss] MiddleKit Threading Problem?
>
>
> I have finally h
I have finally had a repeat of the problem I last wrote about on July 20. I
have a web page that is trying to load several images at once similar to:
The ShowPix.py servlet does several MySQL calls, then loads a .jpg image from
the filesystem, messes with it, and writes out the modi
I spent most of the night working with MiddleKit, and I came across a
few problems. I'm working with the latest release, not CVS. I was
following the Quick Start and came to the point where you create the
store in the main.py under Command/. I could not get the Middle.Video
to import. It t
On Tue, 2002-07-30 at 08:26, jonathan wrote
> 2. Should I have global access to 'store', or should each module where it is
> used create it's own store?? I noticed in the source for SQLObjectStore,
> that new connections are created all over the place anyway. So would this be
> much of a performa
be
ongoing, and would need to store all this data in the database anyway.
jonathan
- Original Message -
From: "Edmund Lian" <[EMAIL PROTECTED]>
To: "jonathan" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, July 31, 2002 12:12 AM
Subjec
On 07/30/2002 09:26:40 AM webware-discuss-admin wrote:
>3. In the experimental project that I am playing around with, it requires
>initially about 1.5m transactions on the database to set up the data. For
>some reason that I am not clear on the app starts to really slow down
about
>halfway into
Hi, I have just started using webware and middlekit, and am essentially
experimenting and seeing whether I should convert an in development site to
use it instead of my home grown middleware. So I have a couple of questions
about how to use it.
1. To execute sql queries that don't fall into the o
Well, I have been wrong a lot lately... My HTML page had 7 very similar
tags trying to display 7 images. The second image succeeded and the other 6
failed. If I had messed up the classes.csv file all seven images should have
failed. Also, restarting the AppServer made everything wo
Hi Roger,
On Sat, 2002-07-20 at 15:45, Roger Haase wrote:
> I believe I have stumbled into another threading issue, one step further
> along than the problem of last week. This time it looks like it is in
> MiddleKit to me. The situation is the same, I have a web page that is trying
What makes
once you're familiar with it, you can fix the MiddleKit Browser and
submit patches :-)
- Geoff
> -Original Message-
> From: Tim Payne [mailto:[EMAIL PROTECTED]]
> Sent: Friday, July 12, 2002 2:23 PM
> To: [EMAIL PROTECTED]
> Subject: [Webware-discuss] MiddleKit Browser Prob
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
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
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.
1 - 100 of 207 matches
Mail list logo