Hi,
I had some trouble with the generated ejb-jar.xml from EJBDoclet-0.2.
The <method> sections were not properly terminated with a </method> tag.
This fixed it for me :
@@ -342,7 +342,7 @@
out.println(" <method>");
out.println("
<ejb-name>"+ejbName+"</ejb-name>");
out.println(" <method-name>*</method-name>");
- out.println(" <method>");
+ out.println(" </method>");
out.println(" </method-permission>");
}
@@ -390,7 +390,7 @@
out.println(" <method>");
out.println("
<ejb-name>"+ejbName+"</ejb-name>");
out.println(" <method-name>*</method-name>");
- out.println(" <method>");
+ out.println(" </method>");
out.println("
<trans-attribute>"+currentClass.tags("transaction")[0].text()+"</trans-attribute>");
out.println(" </container-transaction>");
}
--
Peter Tillemans
--
--------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]