transaction-type
If I have a session bean marked with
<transaction-type>Bean</transaction-type>
in ejb-jar.xml
but also this...
<container-transaction >
<method >
<ejb-name>SdskatEjbSB</ejb-name>
<method-name>*</method-name>
</method>
<trans-attribute>required</trans-attribute>
</container-transaction>
<container-transaction >
<method >
<ejb-name>SdskatEjbSB</ejb-name>
<method-intf>Remote</method-intf>
<method-name>koordination</method-name>
<method-params>
<method-param>dk.modulus.drift.jobtrin.to.JobtrinContext</method-param>
<method-param>dk.modulus.drift.jobtrin.ydelser.sdskat.SdskatParam</method-param>
<method-param>dk.modulus.drift.jobtrin.ydelser.sdskat.SdskatKvittering</method-param>
</method-params>
</method>
<trans-attribute>NotSupported</trans-attribute>
</container-transaction>
is the last part just ignored by the container ?
Kris

