Using ME 4.1.1 GA, Eclipse 3.1.0, Weblogic 8.1 (sp3) on win 2000 (sp4)
I’m trying to debug a EJB method which is part of a transaction because I’m taking a while to step throuhg the code I get this exception when it finishes –
[Reason=weblogic.transaction.internal.TimedOutException: Transaction timed out after 34 seconds
Looks like ejb transactions have 30(‘ish) seconds timeouts?
So I thought I’d try to change the transaction timeout for my EJB method & so I put the following xDoclet tags before my method –
/**
* Processes finance data upload data file
* @throws IOException
* @since JDK1.3
*
* @ejb.interface-method view-type = “local”
* @ejb.transaction type = “RequiresNew”
* @weblogic.transaction-descriptor trans-timeout-seconds = “500”
*/
The ejb ones are generated but the weblogic seems to be completely ignored!
In project properties, MyEclipse | doclet | standard EJB | weblogic – is selected – xdoclete generated weblogic.xml fine!
Any ideas?
thanks
harry