I am getting the error of "The markup in the document following the root element must be well-formed" for container transaction.
The ejb-jar.xml code is given below:
http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"> EmployeeDetails EmployeeDetails EmployeeBean com.test.intrfc.EmployeeHome com.test.intrfc.EmployeeRemote com.test.classes.EmployeeBean Container com.test.classes.EmployeePK false 2.x EmployeeRemote employeeid employeeName shareAmount shareValue employeeid Finds a Employee bean by the name of an employee findByEmployeeName java.lang.String Select Object(a) FROM EmployeeRemote As a Where a.employeeName=?1
<container-transaction>
<method>
<ejb-name>EmployeeBean</ejb-name>
<method-intf>EmployeeHome</method-intf>
<method-name>remove</method-name>
<method-params>
<method-param>java.lang.Object</method-param>
</method-params>
</method>
<trans-attribute>Required</trans-attribute>
</container-transaction>