I just installed the Weblogic 6.1. And wanted to try a simple HelloWorld
ejb on it. But when I create the ejb-jar file by jar cf HelloWorld.jar *, the folder structure of within the Ejb-jar file is:
META-INFO/
META-INFO/MANIFEST.MF
ejb-jar.xml
HelloBean.class
Hello.class
HelloHome.class
Which is not like the one showing on the book:
META-INFO/MANIFEST.MF
META-INFO/ejb-jar.xml
examples/HelloBean.class
examples/Hello.class
examples/HelloHome.class
Why? Is there anything wrong with my ejb-jar.xml? But I just copy the one on the book.
Thanks a lot!
nina