0

Possible Duplicate:
NoClassDefFoundError: wrong name

I've gone through all of the steps from the corba/java tutorial (here is the link : http://docs.oracle.com/javase/7/docs/technotes/guides/idl/GShome.htmll) but when I run the server with this command :

 start java HelloServer -ORBInitialPort 1050 -ORBInitialHost localhost

this error is displayed in another prompt : here it is

do you have any idea to resolve this problem,

thank you in advance

Community
  • 1
  • 1
user201892
  • 277
  • 2
  • 4
  • 11
  • Can you copy/paste that error ? Referencing an image on another site is a little fragile and unsearchable – Brian Agnew Nov 20 '12 at 12:00
  • This error happens when the JVM tries to load a class, but finds the class file defines a class with the wrong name. The linked question explains the problem. – Stephen C Nov 20 '12 at 12:04
  • just a classpath problem I beliver , you will have to start like start java corba1.HelloServer -ORBInitialPort 1050 -ORBInitialHost localhost – Satya Nov 20 '12 at 12:04

1 Answers1

1

I found the problem, I'll have to go back one directory and run with corba1.HelloServer

user201892
  • 277
  • 2
  • 4
  • 11