org.jboss.seam.InstantiationException: Could not instantiate Seam component

Error Message: org.jboss.seam.InstantiationException: Could not instantiate Seam component

Possible Solution:

This error message often indicates that your session bean (stateless or stateful) is missing an interface (local or remote).
    @Local
    public interface Register {
        public boolean register();
    }

    public interface RegisterAction implements Register
      ...
This is an EJB3.0 requirement. More information, including the difference between stateless and stateful beans, and the difference between local and remote interfaces, can be found in the Part IV of the Java EE 5 Tutorial.

 
Trackbacks
  • No trackbacks exist for this post.
Comments

Leave a comment

Submitted comments are subject to moderation before being displayed.

 Enter the above security code (required)

 Name

 Email (will not be published)

 Website

Your comment is 0 characters limited to 3000 characters.