I have a web-app running smoothly on GlassFish 3.1.2 which is on my local machine. However I get to put this app on an actual server which runs GF2.1.
When I tried to import the netbeans project into the netbeans (which is a lower version) and compiled it, few of my import library get "class not found“ error.
Below are those imports:
import javax.ejb.Schedule;
import javax.ejb.Singleton;
import javax.ejb.Startup;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
Just wondering how could I possibly solve this?
Is there any chance that I can add some more library manually onto Glassfish 2.1?
Or is there any alternatives approach that I can go for?
Thanks in advance!