Default trans-attribute for stateless session beans [message #115315] |
Sat, 09 April 2005 05:03 |
ammaskannan
Messages: 6 Registered: April 2005
|
Junior Member |
|
|
Hello:
What is the default trans-attribute for state-less session beans in OC4J 10.1.2 ? I am trying to port my app from JBoss to OC4J and now in OC4J no active transaction is started with the invocation of bean methods. Here is a snap-shot of my ejb-jar.xml and all the other bean definition is exact replica of the below definition and there is no other meta information in
ejb-jar.xml.
<session>
<ejb-name>MyFacadeEJB</ejb-name>
<home>com.foo.BillingFacadeHome</home>
<remote>com.foo.BillingFacade</remote>
<local-home>com.foo.BillingFacadeLocalHome</local-home>
<local>com.foo.BillingFacadeLocal</local>
<ejb-class>com.foo.BillingFacadeEJB</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
thanks and regards,
-- Kannan.
|
|
|