[Zope] xml-rpc and objectIds

Dieter Maurer dieter@handshake.de
Sat, 14 Apr 2001 20:30:42 +0200 (CEST)


Alex Verstraeten writes:
 > ... XML/RPC ...
 > for browsing I need the objectIds method, but it doesnt seems to be
 > available on zope 2.3.0
Many Zope users felt uneasy about people being able to
analyse the structure of there side (through "objectIds").
Therefore, Brian removed the DocString of it (and its friends).
Now, they can only be used internally. Web access is prohibited.

You can put a DTML Method (!) into your Zope root object
which contains just "<dtml-return objectIds>".
You can then use this method (appropriately protected)
to browse your site.


Dieter