Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

com.sun.corba.se.internal.core

Status
Not open for further replies.

neonep

Programmer
Joined
Jun 26, 2003
Messages
34
When I compile my java files in eclipse, it complains saying "package com.sun.corba.se.internal.core does not exist".
This error is obtained from the line "import com.sun.corba.se.internal.core.Request". I am fairly new to java and would like to request you to give me a link where I can download the necessary package from or how to fix it if is any other issue. Thanks in advance.
 
A corba class in a sun library? Maybe that's part of the Sun One Application Server. Only a guess, mind.

Tim
 
If you are running JDK 1.4, that class is packaged by default in the file JAVA_HOME/jre/lib/rt.jar, which is automatically included by the javac and java executables.

This class is NOT present in JDK 1.5 - so I guess you have to use something else. Its *possible* that it is in j2ee.jar, but it may be that Sun removed the class altogether.

--------------------------------------------------
Free Java/J2EE Database Connection Pooling Software
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top