• 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

ejb.jar file

 
Ranch Hand
Posts: 647
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
what are the possible reasons that the ejbc compiler is not able to find one of the bean class...
i am getting an error where it says that

weblogic.xml.process.xmlprocessingexception could not locate bean with ejb name "PersistentManager" in ejb-jar.xml file..
thanks in advance.
trupti
 
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Trupti,
Check the ejb.jar file for proper name of the home,remote,bean classes.I they are ok while deploying you need to give the password while deploying the bean on WEBLOGIC 5.1. At command prompt you have to pass coomend as follows.
(Before passing the command please run the weblogic/setenv file.Make sure that you have set environment variables in setenv file)
java weblogic.deploy deploy weblogic anyname fullpathofyour deployable jar file(for eg:c:\weblogic\myserver\deployable jar file).
anyname=anyname you can give for your deployment.
weblogic=password on my m/c(check it in properties file of weblogic).
I hope this will solve your problem.
You can also write directly in properties file of weblogic installation.This looks something like as follows.
weblogic.ejb.deploy = \
c:/weblogic/myserver/logindeploy.jar
Thanx
Mahesh
 
reply
    Bookmark Topic Watch Topic
  • New Topic