• 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

Rmic stubs question

 
Ranch Hand
Posts: 211
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have no experience of RMI and have a simple question.

My remote server interface is SearchBookingFacadeRemote and its implementation is SearchBookingFacadeRemoteImpl.

When I run "rmic -v1.2 -classpath . -d classes suncertify.remote.SearchBookingFacadeRemoteImpl", it updates class files for SearchBookingFacadeRemote, SearchBookingFacadeRemoteImpl and generates SearchBookingFacadeRemoteImpl_Stub class for me.

Is that all I need to include in my submission (runme.jar) to avoid dynamic class loading etc?

Thanks.
 
Ali Hussain
Ranch Hand
Posts: 211
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just found that it is all I need, since skeletons are only used in JDK1.1 compatible versions. Please correct me if I am wrong.
 
reply
    Bookmark Topic Watch Topic
  • New Topic