Dear all,
There is attempt to get an advise for J2SDK(1.4.1)/JacORB(1.4)/Linux.
Previously I had no experience with JacORB. And now compiling of typical and primitive package of classes however returns a problem. One of the classes extends superclass EchoPOA which cannot be found by both GCJ javac and Java SDK javac during compiling. Errors are returned only for EchoPOA. It seems that problem with Unix Environment Settings occurs. On the other hand, settings for $CLASSPATH, $JAVA_HOME, $JRE_HOME, $JACORB_HOME and $PATH are already done in ~/.bashrc. But it could be something else. Please suggest possible solutions.
package First ;
public class EchoImpl extends EchoPOA {
EchoImpl() { super() ; }
public String writeMessage(String s) { return s ; }
}
|