<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="http://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    mixing EJB2.1 with EJB3, datasource is down
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="http://community.jboss.org/people/kobiianko">Kobi Ianko</a> in <i>EJB3</i> - <a href="http://community.jboss.org/message/575141#575141">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi All,</p><p>I've got an EJB2.1 project on JBOSS AS 5.1.</p><p>I'd like to add new ejb3 (session and entity bean) to the project.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I've created a simple session bean that persist a new entity (row) to the DB, and packed it in a JAR file (with persistence.xml in meta-inf directory).</p><p>this works fne.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>now, I want it to be a part of my EJB2.1 project so I've done:</p><p>1. packed the new jar in the project ear file</p><p>2. updated the aplication.xml with the new ejb-module</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>when I run the server, I can access the session bean from the client but the entity manager is NULL,</p><p><span>and when I run in the browser "</span><a class="jive-link-external-small" href="http://localhost:8080/admin-console" target="_blank">http://localhost:8080/admin-console</a><span>" I can see the my datasource is marked as "DOWN"</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>my persistence.xml:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;<br/><span>&lt;persistence xmlns="</span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/persistence" target="_blank">http://java.sun.com/xml/ns/persistence</a><span>" xmlns:xsi="</span><a class="jive-link-external-small" href="http://www.w3.org/2001/XMLSchema-instance" target="_blank">http://www.w3.org/2001/XMLSchema-instance</a><span>" xsi:schemaLocation="</span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/persistence" target="_blank">http://java.sun.com/xml/ns/persistence</a><span> </span><a class="jive-link-external-small" href="http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" target="_blank">http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd</a><span>" version="1.0"&gt;</span><br/>&#160; &lt;persistence-unit name="BoardDB"&gt;<br/>&#160; &lt;provider&gt;org.hibernate.ejb.HibernatePersistence&lt;/provider&gt; <br/>&#160; &lt;jta-data-source&gt;java:/Kobi2DS&lt;/jta-data-source&gt;<br/>&#160; &lt;properties&gt;<br/>&#160;&#160;&#160;&#160; &lt;property name="hibernate.hbm2ddl.auto"<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; value="update"/&gt; &lt;!-- create-drop/update --&gt;<br/>&#160;&#160;&#160; &lt;property name="hibernate.dialect"<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; value="org.hibernate.dialect.SybaseDialect"/&gt;&#160; <br/>&#160; &lt;/properties&gt;<br/>&#160; &lt;/persistence-unit&gt;&#160; <br/>&lt;/persistence&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>my session bean:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>@Stateless<br/>public class BoardManagerBean implements BoardManagerRemote {</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; @PersistenceContext(unitName = "BoardDB")<br/>&#160;&#160;&#160; EntityManager entityManager;<br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; <br/>&#160;&#160;&#160; @Override<br/>&#160;&#160;&#160; public Board getBoardByID(int boardID) {<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; return entityManager.find(Board.class, boardID);<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br/>&#160;&#160;&#160; }</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><br/>&#160;&#160;&#160; @Override<br/>&#160;&#160;&#160; public void echo(String str) {<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; LogUtils.info(this.getClass(), str);<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; Board board = new Board();<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; board.setId(1);<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; board.setName("koko");<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; board.setSubject("sdcasasc");<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; entityManager.persist(board);<br/>&#160;&#160;&#160;&#160;&#160;&#160;&#160; <br/>&#160;&#160;&#160; }</p></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="http://community.jboss.org/message/575141#575141">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in EJB3 at <a href="http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2029">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>