Java Programming - weird error

What is the meaning of following error:Exception in thread "Thread-2" java.lang.NoClassDefFoundError: de/tu_darmstadt/sp/SocketFactoryImpl
[257 byte] By [ysrpa] at [2007-11-26 23:21:16]
# 1
looks like a straightforward error to me. that SocketFactoryImpl class isn't on your app's runtime classpath. probably, you forgot to include a particular jar
georgemca at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 2
I am using 1.4.2 version. All required jar files are there in classpath.Still i cant figure out what might be the problem
ysrpa at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 3
Any stacktrace available?
quittea at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 4

Creating new Socket....

Exception in thread "Thread-2" java.lang.NoClassDefFoundError: de/tu_darmstadt/sp/SocketFactoryImpl

at javax.net.SocketFactory.<clinit>(SocketFactory.jav a:76)

at com.xilix.xsentry.datamodel.SocketController.conne ct(SocketController.java:60)

ysrpa at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 5
you're using some third-party library that has an alternative socket factory in it. where did you get this from? it looks like it's not on your classpath
georgemca at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 6

you're using some third-party library that has an

alternative socket factory in it. where did you get

this from? it looks like it's not on your classpath

My java version is following:

java version "1.5.0_06"

Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)

Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode, sharing)

I am not using any third party tools or jars. And i dont have any other jvm installed part from the above mentioned.

ysrpa at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 7

you're using some third-party library that has an

alternative socket factory in it. where did you

get

this from? it looks like it's not on your

classpath

My java version is following:

java version "1.5.0_06"

Java(TM) 2 Runtime Environment, Standard Edition

(build 1.5.0_06-b05)

Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed

mode, sharing)

I am not using any third party tools or jars. And i

dont have any other jvm installed part from the above

mentioned.

Well, I can guarntee that neither

de/tu_darmstadt/sp/SocketFactoryImpl

nor

com.xilix.xsentry.datamodel.SocketController.connect (SocketController.java:60)

are in the standard classpath.

masijade.a at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 8

you're using some third-party library that has an

alternative socket factory in it. where did you

get

this from? it looks like it's not on your

classpath

My java version is following:

java version "1.5.0_06"

Java(TM) 2 Runtime Environment, Standard Edition

(build 1.5.0_06-b05)

Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed

mode, sharing)

I am not using any third party tools or jars. And i

dont have any other jvm installed part from the above

mentioned.

then your machine is haunted

georgemca at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 9
then your machine is hauntedmay be hehe. but i got to resolve this problem
ysrpa at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...
# 10
then your machine is hauntedmay be hehe. but i got to resolve this problemI know. but something is definately using a third-party library, and it's not on your classpath. what is your code supposed to do?
georgemca at 2007-7-10 14:25:25 > top of Java-index,Java Essentials,Java Programming...