• 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

Why are Application Servers so Web-Centric?

 
Ranch Hand
Posts: 185
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We would like to use infrastructure services provided by a J2EE Application Server (connection, JNDI) in a web-less back/end application.

Is there a way to get that?
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Alok Pota:
We would like to use infrastructure services provided by a J2EE Application Server (connection, JNDI) in a web-less back/end application.


There is no issue with this. Why do you feel that this would be a problem?
Application Servers are not web-centric. They are J2EE-centric. It just so happens that most J2EE Applications have web front-ends.
 
Ranch Hand
Posts: 2676
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
EJBs are accessible via thick clients using RMI-IIOP, and I believe there is a way to do it using CORBA. Instead of using HTML (servlets, jsp, etc.) you could use Swing, AWT, or a similar technology for your client side.
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's easy to mix up web server bits and app server bits. J2EE specifies both types of containers, and many articles and posts are not clear which one they are talking about all the time. But you can certainly use either container without the other - Java fat client to EJB server is just normal use of the remote access portion of EJB.
 
Always look on the bright side of life. At least this ad is really tiny:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic