> Jochen Vastmans wrote:
> Do i have to build another file manifest different from META-INF/MANIFEST.MF??

You do not need to create the META-INF/MANIFEST.MF file yourself - jar does that
for you. You just need a file (with any filename, but I see just plain old
'manifest' used to the most) which contains the information you stated before.

Then do a 

jar -cvmf <dir_to_bean>/manifest UserEJB.jar <dir_to_bean>/HomeInterface.class
<dir_to_bean>/RemoteInterface.class ...

More generically, the template is

jar -cvmf <MANIFEST_FILENAME> <JAR_FILENAME> <FILES_TO_PUT_INTO_JAR>

Let me know if you are still having trouble.

--shawn

Reply via email to