Quoted from j2sdkee1.3's docs:Use the JNDI naming context java:comp/env to access enterprise bean's environment.

解决方案 »

  1.   

    下面是EJB2.0对SessionContext的文档,来自SUN
    The SessionContext interface provides access to the runtime session context that the container provides for a session enterprise Bean instance. The container passes the SessionContext interface to an instance after the instance has been created. The session context remains associated with the instance for the lifetime of the instance. 
    --------------------------------------------------------------------------------Method Summary 
     EJBLocalObject getEJBLocalObject() 
              Obtain a reference to the EJB local object that is currently associated with the instance. 
     EJBObject getEJBObject() 
              Obtain a reference to the EJB object that is currently associated with the instance. 
     javax.xml.rpc.handler.MessageContext getMessageContext() 
              Obtain a reference to the JAX-RPC MessageContext. 
      Methods inherited from interface javax.ejb.EJBContext 
    getCallerIdentity, getCallerPrincipal, getEJBHome, getEJBLocalHome, getEnvironment, getRollbackOnly, getTimerService, getUserTransaction, isCallerInRole, isCallerInRole, setRollbackOnly 
      Method Detail 
    getEJBLocalObject
    public EJBLocalObject getEJBLocalObject()
                                     throws java.lang.IllegalStateException
    Obtain a reference to the EJB local object that is currently associated with the instance. 
    An instance of an entity enterprise Bean can call this method only when the instance is associated with an EJB local object identity, i.e. in the ejbActivate, ejbPassivate, ejbPostCreate, ejbRemove, ejbLoad, ejbStore, and business methods. An instance can use this method, for example, when it wants to pass a reference to itself in a method argument or result. 
    Returns:
    The EJB local object currently associated with the instance. 
    Throws: 
    java.lang.IllegalStateException - Thrown if the instance invokes this method while the instance is in a state that does not allow the instance to invoke this method, or if the instance does not have a local interface.
      

  2.   

    应该是下面的这段,API如下:
     
     EJBLocalObject getEJBLocalObject() 
              Obtain a reference to the EJB local object that is currently associated with the instance.  EJBObject getEJBObject() 
              Obtain a reference to the EJB object that is currently associated with the instance.  javax.xml.rpc.handler.MessageContext getMessageContext() 
              Obtain a reference to the JAX-RPC MessageContext.  Methods inherited from interface javax.ejb.EJBContext getCallerIdentity, getCallerPrincipal, getEJBHome, getEJBLocalHome, getEnvironment, getRollbackOnly, getTimerService, getUserTransaction, isCallerInRole, isCallerInRole, setRollbackOnly 
      

  3.   

    算了给你一个地址:
    http://java.sun.com/products/ejb/javadoc-2_1-pfd/
      

  4.   

    可是getEnviroment 方法已经不被支持了,我想可能就是用jndi来解决,但怎么作我还很模糊,谁有 一个bean调用另一个bean的例子?可以再加200分!
      

  5.   

    谁有SessionBean 调用SessionBean的例子?
      

  6.   

    EJB 2.0 no longer support getEnvironment