lib,

> I am facing a problem while running a jar file (which I created using
> eclipse v3.2.1 on windows XP.) on linux.
> The same jar file runs fine on dos,
> whereas on linux or solaris it returns a weird issue.
> (XYZ not defined or something like that)

... not defined ... usually means that execution of your jar file
tried to create an object that it doesn't know about.
If someone directed you to "masticate porcine vittles" you might
respond, "What are vittles?  What does porcine mean?  I don't know
what masticate means."  They might respond, "Eat bacon."

<GUESS>
The java virtual machine is telling you that it doesn't know what
XYZ means.
</GUESS>

> Without knowing what the actual error message is, I don't think there  
> is any way we can help you.

If you call your auto mechanic and say, "I can drive down the street
in my Rabbit, but I can't drive down the same street in my Intrepid.
There is a light illuminated on the dashboard.", he will probably
be unable to help.
Your auto mechanic needs to know which light is on, the empty fuel
indicator, no oil light, ...
He will also need to know your configuration, in neutral, elevated
on blocks, ...

To help, people need to know at least the exact error message.


<GUESS>
XYZ is probably a class defined in a library pointed to by your
configuration installed on your windows xp box.
To run on linux/solaris or any other machine,
you need to have installed and point your java virtual machine at,
the required libraries (e.g. jars).
The name of XYZ, probably <category>.<vendor>.<product>.<component>.<class>,
and the rest of the error, perhaps needed by
<category>.<vendor>.<product>.<component>.<class>.<method>
is often a clue.

If the above is correct, the fix is identify the missing libraries,
purchase and install them if necessary, and point the java virtual
machine at them.
</GUESS>

Hopefully helpful,
-- 
Dr. Robert J. Meier


----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to