.jar Files with BDK/JavaBeans tutorial

I am taking the JavaBeans tutorial availabe on the sun website, and tried to write, compile and load the SimpleBean bean/.jar into the BeanBox.

The code compiles, and the .jar file is created with the manifest file and the .class file.

When I try to load the .jar file into BeanBox, however, I get a message saying the .jar file does not contain any beans.

Any ideas on why this is happening? I've taken the code directly from the web pages.

Thanks!

[489 byte] By [plsames] at [2007-9-26 1:31:58]
# 1
I have just had the same problem. And have the same question.Kevin
kmakar at 2007-6-29 1:32:21 > top of Java-index,Desktop,Developing for the Desktop...
# 2

while creatign your manifest file

add this line as which class the bean has to listen

manifest.mf

==========

Manifest-Version: 1.0

Name: SimpleBean.class

Java-Bean: True

Created-By: 1.3.0 (Sun Microsystems Inc.)

========================

then after reading this manifest file n enclose the same in jar file.

shaluG at 2007-6-29 1:32:21 > top of Java-index,Desktop,Developing for the Desktop...