CORBA in JAVA and idlj compiler problem...

Hello there I am using jdk 1.4 and its default CORBA compiler javaidl and trying this example http://java.sun.com/developer/technicalArticles/RMI/rmi_corba/

When I am running the idlj -fserver FileInterface.idl command it is suppose to create a file name _FileInterfaceImplBase. However after I run the command it does create some files but not _FileInterfaceImplBase. Without that I can't proceed into the next step. I think I followed the link fully. What can be wrong?

take care

Arif.

[513 byte] By [Jubaera] at [2007-11-26 18:31:08]
# 1

That article is obsolete. You only get an ImplBase file now if you specify -oldImplBase to the idlj compiler, which is now a deprecated technique.

If you don't specify that option, you get a POA file, and that's the one your server should extend.

See http://java.sun.com/j2se/1.5.0/docs/guide/rmi-iiop/toJavaPortableUG.html

ejpa at 2007-7-9 6:05:17 > top of Java-index,Core,Core APIs...
# 2
Thanks, it is now creating the necessary files.take careArif.
Jubaera at 2007-7-9 6:05:17 > top of Java-index,Core,Core APIs...