• 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

wLS 6.1 and WLS 8.1

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
The problem:
I have two instances of weblogic servers that need to communicate. One instance is wls 6.1 and the other is wls 8.1. My wls 6.1 is suppose to use ejb that will be hosted in 8.1 instance.
Question:
1. Is there any potential problem in this picture. (EJB interface is not going to use anything that is specific to particualr JDK version)?
2. How do I deploy client side of my ejb to wls 6.1? Do these classes have to be in classpath of wls 6.1? What classes do I have to deploy to wls 6.1?
Thx in advance,
Ilija
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to the BEA/WebLogic Forum...
 
Ranch Hand
Posts: 1871
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ilija,
I dont see any problem in the picture. Whether the ejb is deployed in any application server should not be the problem. You can package the required classes like the home , stubs and the remote interface along with the ejb jar that you plan to deploy. If however you dont want to do so you may need to make use of the
Extension Mechanism Architecture
or
Put it in the server classpath
The first is preferred if you dont want to package the classes in the ejb jar file
The problem would be if you are trying to make two weblogic servers 6.1 and 8.1 a part of a cluster which weblogic will not support.
[ August 26, 2003: Message edited by: Rahul Mahindrakar ]
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic