• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

rmi restrictions?

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

in my assignment it is stated that there are certain restrictions on the use of RMI:

You must not require the use of an HTTP server.
You must not require the installation of a security manager.
You must provide all classes pre-installed so that no dynamic class downloading occurs.
You must use RMI over JRMP (do not use IIOP)

From this I have surmised the following:

Every client has to have the remote server stub classes stored locally to enable operatibility without a HTTP server or dynamic class downloading.

Is this correct?

Thanks in advance,

Alain.


PS. Apologies if this has been addressed on this forum already - I searched but could not find a thread that does.
 
Ranch Hand
Posts: 532
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi alain :
Basically what it says is that you are not wllowed to use J2EE. so, not servlet, jsp, ejb, http...etc
 
Ranch Hand
Posts: 118
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Alain,


Every client has to have the remote server stub classes stored locally to enable operatibility without a HTTP server or dynamic class downloading.

Is this correct?


Yes.


Regards,

Jon
 
alain saha
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ok - now I can be sure.
Thanks for the replies everyone.

Alain.
 
reply
    Bookmark Topic Watch Topic
  • New Topic