sorry I missread the q, you'll probably also need these: application.xml ps. you should replace the display-name, home and remote to your program's names
| <?xml version="1.0" encoding="UTF-8"?> | <!DOCTYPE application-client PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.3//EN' 'http://java.sun.com/dtd/application-client_1_3.dtd'> | <application-client> | <display-name>ExampleGUI</display-name> <!-- also the client app name in my case. --> | <ejb-ref> | <ejb-ref-name>ejb/ExampleRef</ejb-ref-name> | <ejb-ref-type>Session</ejb-ref-type> | <home>ExampleHome</home> <!-- home interface (extends EJBHome) --> | <remote>Example</remote> <!-- this is an interface (extends EJBObject) --> | </ejb-ref> | </application-client> | | jboss-client.xml | <jboss-client> | <jndi-name>ExampleGUI</jndi-name> | <ejb-ref> | <ejb-ref-name>ejb/ExampleRef</ejb-ref-name> | <jndi-name>ExampleController</jndi-name> <!-- ejb (implements SessionBean) --> | </ejb-ref> | </jboss-client> | Manifest.mf | Manifest-Version: 1.0 | Ant-Version: Apache Ant 1.6.2 | Created-By: Carl Boshoff | main-class: ExampleGUI | I think this everything now, If I remember something else, I'll post here again. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877944#3877944 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877944 ------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
