[Zope] Want to access ZClass Instance from external program
Jon Prettyman
jprettyman@acm.org
18 Oct 2000 09:01:09 -0700
Well, I've gotten xmlprclib and fixed it up so I can talk to my
server. So far I can retrieve objectIds and retrieve objects via an
objectid, but I can't figure out how to get to the property sheets.
Here's what I've got:
server = Server( "http://jonprettyman.com" )
print server
for k,v in
server.EBQ.id_company_apply_html.propertysheets.common.propertyItems():
print "%-15s: %s" % (k, v)
My ZClass has a propertysheet named ``common''
The error I get is:
-2 Unexpected Zope Error Value
and a bunch of HTML which boils down to:
Resource not found
-jon
Kapil Thangavelu <kthangavelu@earthlink.net> writes:
> its easiest to it with (IMO)
>
> xml-rpc
>
> and find your zclasses with calls to objectids and query the
> propertysheets directly for property info.
>
>
> check out
>
> http://www.zope.org/Members/Amos/xmlrpclib.py
> you'll need to fix a base class and an import.
>
> www.xml-rpc.com
>
> www.xml.com search for amos
>
> and zope.org for howtos on xmlrpc
>
> Cheers
>
> Kapil
>
> _______________________________________________
> Zope maillist - Zope@zope.org
> http://lists.zope.org/mailman/listinfo/zope
> ** No cross posts or HTML encoding! **
> (Related lists -
> http://lists.zope.org/mailman/listinfo/zope-announce
> http://lists.zope.org/mailman/listinfo/zope-dev )