• 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

class path

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hai
Today i download weblogic6.1, and i installed on Windows NT, when i compiled EJB program , the error is like this
javax.ejb.EJBObject is not found,
i dont the path to set. pls give me the
classpath.
please give me the solution, how to set the path in window NT and also CODE also.
thanks and regard
Great B.C
 
Ranch Hand
Posts: 44
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Okay,
How are you compiling your code? Within an IDE or from the command line.
Are you new to Java? If so why are you starting with EJB's? The weblogic download comes with a jar file that contains all of the classes necessary for J2EE development. It can be found here:
\beahome\wlserver6.1\lib\weblogic.jar
To set your classpath for a shell do:
set classpath=\beahome\wlserver6.1\lib\weblogic.jar
this then points to the .jar file.
To set it for all shells go to start\settings\control panel\system\env variables and add set up a classpath variable here.
Helps??
T
reply
    Bookmark Topic Watch Topic
  • New Topic