[Zope-dev] Using the monitor_client
Morten W. Petersen
morten@esol.no
31 Oct 2000 11:32:49 +0100
When using the monitor_client, I do this:
-- Start monitor_client usage
python monitor_client.py localhost 8099
Enter Password:
warning: unhandled connect event
Python 1.5.2 (#1, Mar 11 2000, 13:03:53) [GCC 2.95.2 19991024 (release)]
Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
Welcome to <secure_monitor_channel connected 127.0.0.1:2959 at 88fbf80>
>>> import Zope
>>> app=Zope.app()
>>> app.addDTMLMethod
Traceback (innermost last):
File "/usr/local/Zope/ZServer/medusa/monitor.py", line 94, in found_terminator
result = eval (co, self.local_env)
File "<secure_monitor_channel connected 127.0.0.1:2959 at 88fbf80>", line 0, in ?
AttributeError: addDTMLMethod
>>> app.manage_addDTMLMEthod
Traceback (innermost last):
File "/usr/local/Zope/ZServer/medusa/monitor.py", line 94, in found_terminator
result = eval (co, self.local_env)
File "<secure_monitor_channel connected 127.0.0.1:2959 at 88fbf80>", line 0, in ?
AttributeError: manage_addDTMLMEthod
>>> app.manage_addDTMLMethod
<Python Method object at 82ee058>
>>> app.manage_addDTMLMethod('tester','tester','tester')
''
>>> app._p_jar.sync()
>>> get_transaction().commit()
>>> warning: unhandled close event
closed.
morten@slakka:/usr/local/Zope/ZServer/medusa >
-- End monitor_client usage
However, when I enter the management screen of the Zope instance, no DTMLMethod
called tester is listed..
(I used http://www.zope.org/Documentation/Misc/DEBUGGING.txt as a guide..)
Can anyone see what I'm doing wrong?
Thanks in advance.
-Morten