• 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
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Unable to compile home interface file

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi I am trying to code an EJB example. However, it is not compiling the home interface . It gives no promblem for remote interface and bean class.
The code for remote interface is


The code for home interface is as follows

While compiling home interface it gives the error as :-
C:\Test\EJB>javac -classpath "C:\j2sdkee1.3.1\lib\j2ee.jar" DemoHome.java
DemoHome.java:11: cannot resolve symbol
symbol : class Demo
location: interface ejb.demo.DemoHome
Demo create() throws RemoteException , CreateException;
^
1 error
Can someone please help.
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The compiler doesn't see your compiled Demo.class in the classpath. Currently the command-line you posted includes only the J2EE libs and not, for example, the current directory...
 
Goldy John
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It worked ...
Thanks a lot...
 
I knew that guy would be trouble! Thanks tiny ad!
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic