I created a Dynamic Web Project, added a jsp page, referenced the Bean and
it worked -- I could run the Bean.
However, my problems started when I tried to add any more functionality to
the Bean -- although the intellisense recognized new methods and beans and
let me add them and even automatically added the IMPORT reference, when I
ran the jsp before it had a chance to render the page it said:
"Only a type can be imported. com.bowne.NewBean resolves to a package"
I tried:
Creating a brand new Dynamic Web Project
Creating a new package inside the EJB project
Exporting the EJB project as a jar and referencing that
Nothing seems to allow the Web Project to access additional functionality
in the Bean without throwing error.
I also notice that even though I changed the functionality (just a simple
String return) of the original method -- the jsp page still outputs the
value of the original method!!
I cannot figure out how to get that original Bean out of Eclipse/JBoss/My
Project's config!?