• 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

How separate application server and web server?

 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello.
I am using Weblogic mainly. Wanting to separate app server and web server: to locate on different hosts. In future may use Apache Tomcat as web server.
Example,
192.168.1.10 - as App Server - Weblogic / EJB module
192.168.1.11 - as Web Server - Weblogic / WEB module

Using @Remote interface to reference EJB in WEB module. It is not working on the same machine with Tomcat+Weblogic.
Please any example and references. Thanks.
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JR Javid.

Of what use is separating the EJB components from the web components ? You will need to make an extra JRMP hop with the new configuration.

It is not working



Define not working. Exceptions ? Able to get a reference but unable to call ?
 
David Scholl
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello, Deepak.

Javid Sch wrote:
It is not working on the same machine with Tomcat+Weblogic.


there is NullPointerException in Servlet, when:

Simply, I have tested.

I want to separate EJB and WEB modules on servers/physical level. Can't find any resource/example about it over google.
Now, i am reviewing JEE tutorial and Blueprints.
 
Deepak Bala
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The JNDI binding name is probably referred to incorrectly. The resources you are referring to are a good start
 
reply
    Bookmark Topic Watch Topic
  • New Topic