Help coderanch get a
new server
by contributing to the fundraiser
  • 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

can applet use RMI-IIOP to connect WEB or EJB container?

 
Ranch Hand
Posts: 139
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
can applet use RMI-IIOP to connect WEB container or EJB container?
sorry for the silly question.
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Communication to an Application Server (a client does not talk directly to an EJB Container) is actually recommended to use RMI-IIOP in EJB 2.0. Communication with a Web Container however takes place over HTTP or HTTPS.
 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Applet can talk to EJB container using RMI-IIOP with the help of HTTP Tunneling, if it is outside firewall. If there are no firewall issues, then applet can talk to EJB container using RMI-IIOP. Generally web container uses HTTP/HTTPS protocol for talking to applet clents and RMI-IIOP protocol for talking to EJB container.
 
reply
    Bookmark Topic Watch Topic
  • New Topic