Python EJB Equivalent
Hamish Lawson
hamish_lawson at yahoo.co.uk
Thu Nov 9 09:28:03 EST 2000
More information about the Python-list mailing list
Thu Nov 9 09:28:03 EST 2000
- Previous message (by thread): Python EJB Equivalent
- Next message (by thread): Python EJB Equivalent
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ruben at techfactor.com wrote: > Coming from a Java background and recently using Python for > application development, I have a question. Is there an equivalent to > Enterprise JavaBeans in Python? Zope has many similarities. Zope is a web application server and object- publishing framework. Installed components (known as 'products') define a set of permissions. These permissions can be allocated to a role, and the role granted to a user. Some ways in which (AFAIK) Zope goes beyond EJB: * through-the-web management * product *instances* are web-addressable Suppose in the folder MyStuff you create an instance of the Forum product which you call MyForum; then that instance would have a URL of /path/to/MyStuff/MyForum. Furthermore its methods could be called like /path/to/MyStuff/MyForum/addMessage?title=Hello%20there As I understand, an EJB component is web-addressable but not an individual instance of it (except by passing a parameter to the EJB component). This would seem to make it awkward to use relative addressing between an HTML file and some related instance of an EJB component. Zope is at www.zope.org and a good introduction can be found at http://www.devshed.com/Server_Side/Zope/Intro/ Hamish Lawson Sent via Deja.com http://www.deja.com/ Before you buy.
- Previous message (by thread): Python EJB Equivalent
- Next message (by thread): Python EJB Equivalent
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list