I am interested in using myEclipse to develop webapps which as part of their backend make CORBA calls using JacORB. I’m using Tomcat 5.5 and have the various JacORB required jar files loaded to c:\tomcat5.5\shared\lib. I also have a directory of class files under c:\tomcat5.5\shared\classes. Using the Sysdeo eclipse plug in I configured Preferences->Tomcat->JVM Settings with:
-Dorg.omg.CORBA.ORBClass=org.jacorb.orb.ORB
-Dorg.omg.CORBA.ORBSingletonClass=org.jacorb.orb.ORBSingleton
and added the JacORB classes in the prepend to classpath section, but I’m not sure that part was actually necessary.
When I tried to make a similar configuration on a different machine which has myEclipse installed on it (but no sysdeo) I would get runtime errors that the ORB could not initialize.
Other that that though I like the myEclipse features much better and would like to switch to it once I get it working. Has anyone else been able to
do webapp development with JacORB? I’m not doing EJB development, just making CORBA calls – for simple starters right from a JSP file, but later from
within model classes.