users@glassfish.java.net

Deploy JDeveloper JSF App to Sun App Server

From: <glassfish_at_javadesktop.org>
Date: Wed, 09 Jan 2008 10:03:27 PST

Hi all,

I am new to this group. I am trying to deploy a simple JSF/EJB app I wrote in JDeveloper 10.1.3.3.0 to the Sun Java System Application Server 9.1_01 (build b09d-fcs).

The current error I am receiving is:
Deploying application in domain failed; Error loading deployment descriptors for module [SunTest] -- Error: Unresolved : SessionEJB Error loading deployment descriptors for module [SunTest] -- Error: Unresolved : SessionEJB

below is ejb part of web.xml:
<ejb-local-ref>
        <ejb-ref-name>SessionEJB</ejb-ref-name>
        <ejb-ref-type>Session</ejb-ref-type>
        <local-home></local-home>
        <local>model.SessionEJBLocal</local>
        <ejb-link>SessionEJB</ejb-link>
    </ejb-local-ref>

below is part of my ejb-jar.xml
<enterprise-beans>
<session>
<ejb-name>SessionEJB</ejb-name>
<ejb-class>model.SessionEJBBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>

I suspect the problem is somewhere in these 2 files. Maybe I am missing a file for the sun server. I was able to deploy the application successfully without the ejb but that doesn't do much good.

Please help!
[Message sent by forum member 'garyjsf' (garyjsf)]

http://forums.java.net/jive/thread.jspa?messageID=253025