• 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:

How to Do it

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am deploying my application in Tomcat 5.0 web server and JBoss 4.0.2 application server.I have deployed my web part in Tomcat Server and EJBs on JBOSS application server.
Please let me know wt are the files required by Tomcat to lookup the EJB from my tomcat server. Can u provide me an example of Lookup code (from a Tomcat Server to JBOSS server).

Thanx for the help

Jagmohan
 
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can deploy your web componets too in the JBoss. Your approach is not good since your web components has to do remote lookup to get ejb. Intead of this you can create a .ear file contain both your ejb jars and web wars and deploy it in the JBoss. Normally tomcat is integrated in the JBoss server so there is no need of deploying it in the different tomcat server.
reply
    Bookmark Topic Watch Topic
  • New Topic