|
Prev: Porting a JSF based application from Netbeans 6.1 to Eclipse Ganymede 3.4
Next: NewsMaestro Usenet Supertool v. 4.4.8 for Windows/Linux/Unix
From: Arne Vajhøj on 29 Jun 2008 16:42 Rakesh wrote: > I am trying to port some applications from Netbeans 6.1 to Eclipse > 3.4 Ganymede. I got the following list of compilation errors, similar > to the following - > > import com.sun.rave.web.ui.appbase.AbstractRequestBean; > > The import com.sun.rave cannot be resolved. I am trying to figure out > the appropriate JAR file that needs to be added to the build path. Can > you please suggest the right way of doing this. As the name implies then this is a SUN implementation specific class. Using that makes the application non portable. If you want to proceed then you need to find the proper jar file. It seems as if SUN Project Rave is not separate downloadble. So you will need to look in the NB tree after the jar file. jar tvf foobar.jar | grep com.sun.rave.web.ui.appbase.AbstractRequestBean Arne |