• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

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.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic