• 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

RMI and Tomcat

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does anyone know if Tomcat (4.1.24) supports RMI??
I'm using Tomcat and a simple HTTP servlet for an RMI application, but I cannot get Tomcat to provide my HTTP servlet with the name of the stub-file.
Have tried e.g. getQuery on the request object, but it comes back null.
Sure I've missed something... , but what???
Thanks
Ulf
 
Saloon Keeper
Posts: 27764
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No. Tomcat's not an RMI server. However Tomcat can be part of an RMI serving system - both JBoss and JOnAS use RMI for their EJB services and both can start up Tomcat (or Jetty) to provide the HTTP services.
 
Ulf Johansson
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Tim!
Not trying to use Tomcat as an RMI-server, just as the web server the RMI-client accesses to download the stub...
 
Ranch Hand
Posts: 1179
Mac OS X Eclipse IDE
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try this link: http://www.cs.clemson.edu/~pargas/courses/cs881/spring2002/presentations/ankits/
PS: I haven't tried the samples myself
Rene
 
reply
    Bookmark Topic Watch Topic
  • New Topic