Hi ,
thanks for the answer.
My ejb-jar.xml:
| <?xml version="1.0" encoding="UTF-8"?>
| <ejb-jar
xmlns="http://java.sun.com/xml/ns/j2ee"
| version="2.1"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd">
|
| <description> Test app. v 1.0</description>
| <display-name>UniTable</display-name>
| <enterprise-beans>
| <session>
| <display-name>UniTable</display-name>
| <ejb-name>UniTable</ejb-name>
| <home>unisoftbg.unitable.UniTableHome</home>
| <remote>unisoftbg.unitable.UniTable</remote>
| <ejb-class>unisoftbg.unitable.UniTableBean</ejb-class>
| <session-type>Stateless</session-type>
| <transaction-type>Bean</transaction-type>
| </session>
| </enterprise-beans>
| <ejb-client-jar>unitab.jar</ejb-client-jar>
| </ejb-jar>
|
|
And my jboss.xml:
|
| <?xml version="1.0" encoding="UTF-8"?>
|
| <jboss>
| <secure>false</secure>
| <container-configurations />
| <resource-managers />
| <enterprise-beans>
| <session>
| <ejb-name>UniTable</ejb-name>
| </session>
| </enterprise-beans>
| </jboss>
|
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199449#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...