• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Skelton not generated using idl2java !

 
Ranch Hand
Posts: 389
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have downloaded visibroker ver 4.0 for Windows NT from the www.inprise.com. I tried to compile the bank.idl file given in the examples directory of visibroker using idl2java but it doesn't generate the _example_Account file, Where I need to provide implementation for my corba object . It generates the following files :
Account.java
AccountHelper.java
AccountHolder.java
AccountManager.java
AccountManagerHelper.java
AccountManagerHolder.java
AccountManagerOperations.java
AccountManagerPOA.java
AccountManagerPOATie.java
AccountOperations.java
AccountPOA.java
AccountPOATie.java
_AccountManagerStub.java
_AccountStub.java
Where am I going wrong ?
 
Ranch Hand
Posts: 111
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Nothing is wrong..
These files generated is enough for u.. why do u need skeletons..?
Proceed with the example..
Saran
 
ravi janap
Ranch Hand
Posts: 389
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear Saran
How do I create the server object? I have worked with visibroker 3.4 , It creates a implementation java program _exampleAccount with a default implementation where I can provide my own implementation code. Can you send me some sample code for a server object ? I know the IDL file, the seven java files which are generated as a result of compiling the IDL with idl2java and server program and client program . In my server program , If I say
AccountImpl ai = new AccountImpl();
How do I create this AccountImpl and which class does it extend ?
My email id is ravindra_janapareddy@yahoo.com
 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can write the implementation class yourself and can give any name to it.
eg BankImpl and extend this from the _AccountImplBase that the idl2java compiler generated for you if you are using the BOA(Basic Object Adapter).
If you are using the POA(Portable Object Adapter) the class you need to extend is the AccountPOA.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic