AutoReloadingAppServer.py
How do I implement this so that my contexts trigger the
restart if imported files are not updating?
Thanks.
Paul.
AutoReloadingAppServer.py
How do I implement this so that my contexts trigger the
restart if imported files are not updating?
Thanks.
Paul.
When importing from another context like
WebKit/myPage/Main.py
-
>From myDB.ObjectsT import *
It doesn't report any errors until I try to access it like so
Obj = ObjectsT.CreateMain()
The WW error is:
AttributeError: class ObjectsT has no attribute 'ObjectsT'
The file str
Working.
>From myDB.ObjectsT import *
Changed to
Import myDB.ObjectsT
And
Obj = ObjectsT.CreateMain()
To
Obj = myDB.ObjectsT.CreateMain()
Working a treat.
PaulG.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Paul
Goodyear
Sent: 21 December 2004
Hello,
There are a few of us working on the same and different
project on a single webware box, the system running the AppServer is outputting
all debug info, this is ok, until someone needs to get some data back using the
print call, is there anyway you can telnet in and tail a log to