Implement EJBs in Python/Jython

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • reinsn

    #1

    Implement EJBs in Python/Jython

    Hi,

    I'd like to know, if it's possible to implement EJB bean classes in
    Python. I mean, Jython provides to possible to create *.class files
    from python modules. How must my python module look like to create a
    valid enterprise bean class from it.

    Thanks in advance,

  • Diez B. Roggisch

    #2
    Re: Implement EJBs in Python/Jython

    reinsn wrote:
    [color=blue]
    > Hi,
    >
    > I'd like to know, if it's possible to implement EJB bean classes in
    > Python. I mean, Jython provides to possible to create *.class files
    > from python modules. How must my python module look like to create a
    > valid enterprise bean class from it.[/color]

    You have to compile a class that implements the EJB-Interface. Look for
    examples that do that for other classes like struts actions, and perform
    accordingly.

    Diez

    Comment

    Working...