Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Distributed Java and the fly likes Question about CORBA Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Distributed Java
Reply Bookmark "Question about CORBA" Watch "Question about CORBA" New topic
Author

Question about CORBA

Rajesh Khan
Ranch Hand

Joined: Oct 16, 2011
Posts: 230
So i was trying an example at http://docs.oracle.com/javase/1.4.2/docs/guide/idl/tutorial/GSserver.html. While generating stubs and skeletons for my idl:
Hello.idl
module HelloApp
{
interface Hello
{
string sayHello();
oneway void shutdown();
};
};

using idlj.exe Hello.idl , i got HelloApp containing _HelloStub,Hello,HelloHelper,HelloHolder,HelloOperations.java

The tutorial recommended that i would also get a HelloPOA class since it uses


Any idea where the HelloPOA class is or is the tutorial outdated??

 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: Question about CORBA
 
Similar Threads
Corba Intro
help me
error sending contents in 2D ByteArray over LAN using Java IDL
Inner Class method acess
Method Overloading and overriding