473,385 Members | 1,676 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Java Game- Game can't find it's graphics jar file

My name is Nick Soutter, I own a small game development company
(www.aepoxgames.net) making our first game (www.andromedaonline.net) in
java.

I am writing because we are having a very serious problem, and I was hoping
someone might have thoughts.

Our game has 2 main programs- one is an updater, the other is the game
client. The updater (AndromedaOnline.jar) checks for updates to the
graphics, sound, client, and of course itself. After applying any updates,
the updater runs the client (AndromedaClient.jar) for people to play with.

When players install this program on their systems with pre-existing
versions of JAVA, it runs fine. When they try to install it after installing
a fresh, new Java JRE, however, it fails.

I am running Java 1.4.1_05 on my system. This runs fine. After some Alpha
testers reported client problems, we brought up a test computer, installed a
fresh Windows XP, installed Java 1.4.1_05 on the system, then installed the
game. The updater ran fine, but the client failed to run. It threw null
pointer exceptions when it tried to load the graphics from the graphics jar
file (AndromedaGFX.jar)

Strange as this may sound, this problem SEEMS to only to occur on newly
installed JRE's.

The problem appears to be that the client is not reading graphics from the
associated graphics jar. The updater is small, so we were able to include
its graphics with the updater, instead of in a separate jar, which is
probably why the updater works fine.

If we take the bad Andromeda game folder, copy it to another computer with
Java on it, the game works fine. But copy the folder back to the freshly
installed computer, and it won't work.

We suspected a classpath issue, but there's a classpath info in the client
jar which should prevent this. Further, we've updated all the classpath
information on the new installation, aswel as path, and JAVA_HOME
environmental variables. None of it worked (it is interesting to note that
classpath isn't set on the working machine, it gets that from the client
manifest).

We've had this problem reported on three windows machines and have been
unable to fix it. On at least 5 machines it appears to runs fine. We haven't
a clue what is causing this problem. It does not appear to be the game or
the code, as copying the game folder from a "bad" machine to a "good" one
allows the client within the folder to work.

It's very strange, and ALL of us here are stumped. We go to beta soon, and
obviously this is a serious problem. Again, as strange as it sounds, the
only common thread is new installs of java where none existed. Install java
on your machine (any 1.4.1 or higher), and the client can't load it's own
graphics files (copy of client manifest below).

If you'd like to see the basic files, they can be found at
http://www.aepox.net/andromeda/Downl...omedaBasic.zip. This includes
the updater and client, as well as the libraries. If you run the updater
(AndromedaOnline.jar) it will attempt to download the graphics package
(AndromedaGFX.jar). If you want to download the entire package (graphics and
everything) it's at
http://www.aepox.net/andromeda/Downl...medaOnline.zip

Thank you for your time. Any thoughts as to the cause of this troublesome
problem would be MUCH appreciated.

Nick Soutter

Aepox Games

Manifest-Version: Version 1.0

Specification-Title: Andromeda GameClient Classes

Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;

Main-Class: com.andromeda.gameclient.PreGameClient

Implementation-Title: com.andromeda.gameclient

Specification-Vendor: Aepox Games

Specification-Version: 1.0

Implementation-Version: 40119

Name: com/andromeda/gameclient

Implementation-Vendor: Aepox Games
Jul 17 '05 #1
21 4361
BlackHawke wrote:
Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;


I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software
Jul 17 '05 #2
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!

So unfortunately, despite fixing that problem, this still doesn't work... :(

any other thoughts?

Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...
BlackHawke wrote:
Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;


I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software

Jul 17 '05 #3
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!

So unfortunately, despite fixing that problem, this still doesn't work... :(

any other thoughts?

Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...
BlackHawke wrote:
Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;


I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software

Jul 17 '05 #4
BlackHawke wrote:
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!

So unfortunately, despite fixing that problem, this still doesn't work... :(

any other thoughts?
Have you done any bare bones testing? Make the snallest working piece
of code that uses the same mechanisms to load graphics and see if the
problem persists. Keep things as close to real as possible. In other
words, keep graphics file names the same, keep overall directory
structures the same, and so on. If after this the problem goes away,
you can be fairly certain there is something in your code that is
causing the problem.
Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...
BlackHawke wrote:

Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;


I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software


Jul 17 '05 #5
BlackHawke wrote:
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!

So unfortunately, despite fixing that problem, this still doesn't work... :(

any other thoughts?
Have you done any bare bones testing? Make the snallest working piece
of code that uses the same mechanisms to load graphics and see if the
problem persists. Keep things as close to real as possible. In other
words, keep graphics file names the same, keep overall directory
structures the same, and so on. If after this the problem goes away,
you can be fairly certain there is something in your code that is
causing the problem.
Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...
BlackHawke wrote:

Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;


I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software


Jul 17 '05 #6
"BlackHawke" <bl********@legacygames.net> wrote in message news:<r6******************@newsread2.news.pas.eart hlink.net>...

Show your code that accesses graphics files in question.
Jul 17 '05 #7
"BlackHawke" <bl********@legacygames.net> wrote in message news:<r6******************@newsread2.news.pas.eart hlink.net>...

Show your code that accesses graphics files in question.
Jul 17 '05 #8
Hi

How does the updater start the game after the update is finished?
Runtime.exec()? direct class-instantiation ?, ... ?

greets,
mike

inexess technology
Software-Development
Jim Sculley wrote:
BlackHawke wrote:
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!

So unfortunately, despite fixing that problem, this still doesn't
work... :(

any other thoughts?

Have you done any bare bones testing? Make the snallest working piece
of code that uses the same mechanisms to load graphics and see if the
problem persists. Keep things as close to real as possible. In other
words, keep graphics file names the same, keep overall directory
structures the same, and so on. If after this the problem goes away,
you can be fairly certain there is something in your code that is
causing the problem.

Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...
BlackHawke wrote:
Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;
I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software



Jul 17 '05 #9
Hi

How does the updater start the game after the update is finished?
Runtime.exec()? direct class-instantiation ?, ... ?

greets,
mike

inexess technology
Software-Development
Jim Sculley wrote:
BlackHawke wrote:
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!

So unfortunately, despite fixing that problem, this still doesn't
work... :(

any other thoughts?

Have you done any bare bones testing? Make the snallest working piece
of code that uses the same mechanisms to load graphics and see if the
problem persists. Keep things as close to real as possible. In other
words, keep graphics file names the same, keep overall directory
structures the same, and so on. If after this the problem goes away,
you can be fairly certain there is something in your code that is
causing the problem.

Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...
BlackHawke wrote:
Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;
I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software



Jul 17 '05 #10
This is it:

public static void main(String args[]) {
UpdateFrame uf = new UpdateFrame();

try {Process p =
Runtime.getRuntime().exec("java -Xmx64M -Xms64M -jar AndromedaClient.jar");}
catch(Exception exc) {exc.printStackTrace(System.out);}

uf.removeNotify();
uf.dispose();

Nick

"Michael Mangeng" <mm@vis.at> wrote in message
news:bu************@ID-220660.news.uni-berlin.de...
Hi

How does the updater start the game after the update is finished?
Runtime.exec()? direct class-instantiation ?, ... ?

greets,
mike

inexess technology
Software-Development
Jim Sculley wrote:
BlackHawke wrote:
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!
So unfortunately, despite fixing that problem, this still doesn't
work... :(

any other thoughts?

Have you done any bare bones testing? Make the snallest working piece
of code that uses the same mechanisms to load graphics and see if the
problem persists. Keep things as close to real as possible. In other
words, keep graphics file names the same, keep overall directory
structures the same, and so on. If after this the problem goes away,
you can be fairly certain there is something in your code that is
causing the problem.

Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...

BlackHawke wrote:
> Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;
>

I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software

Jul 17 '05 #11
This is it:

public static void main(String args[]) {
UpdateFrame uf = new UpdateFrame();

try {Process p =
Runtime.getRuntime().exec("java -Xmx64M -Xms64M -jar AndromedaClient.jar");}
catch(Exception exc) {exc.printStackTrace(System.out);}

uf.removeNotify();
uf.dispose();

Nick

"Michael Mangeng" <mm@vis.at> wrote in message
news:bu************@ID-220660.news.uni-berlin.de...
Hi

How does the updater start the game after the update is finished?
Runtime.exec()? direct class-instantiation ?, ... ?

greets,
mike

inexess technology
Software-Development
Jim Sculley wrote:
BlackHawke wrote:
Ohhhhhhhh....

You're right!!

I gave it a shot, and unfortunately that didn't work.... I'd think that
would have been it... Thank you for the suggestion though, nice catch!!!
So unfortunately, despite fixing that problem, this still doesn't
work... :(

any other thoughts?

Have you done any bare bones testing? Make the snallest working piece
of code that uses the same mechanisms to load graphics and see if the
problem persists. Keep things as close to real as possible. In other
words, keep graphics file names the same, keep overall directory
structures the same, and so on. If after this the problem goes away,
you can be fairly certain there is something in your code that is
causing the problem.

Nick


"Phyrum Tea" <me@tea.ch> wrote in message
news:40**********@news.bluewin.ch...

BlackHawke wrote:
> Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;
>

I don't know if it's a problem but your class-path does not meet the
manifest specification for jar files.

You may try to replace the semicolons with a space.

http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html

Best regards

Phyrum Tea
--
Firstname/Lastname: Phyrum Tea, me@tea.ch
http://www.tea.ch/ - Crossword Puzzle Software

Jul 17 '05 #12
You are the best!!!!!

I went over the code, and I FOUND THE PROBLEM.... Thank you!!!!! We had a
different directory for 600x800 resolution which we no longer use. That's
the problem. On 600x800 resolution, the graphics couldn't be found

NIck
"hiwa" <HG******@nifty.ne.jp> wrote in message
news:68************************@posting.google.com ...
"BlackHawke" <bl********@legacygames.net> wrote in message news:<r6******************@newsread2.news.pas.eart hlink.net>...
Show your code that accesses graphics files in question.

Jul 17 '05 #13
You are the best!!!!!

I went over the code, and I FOUND THE PROBLEM.... Thank you!!!!! We had a
different directory for 600x800 resolution which we no longer use. That's
the problem. On 600x800 resolution, the graphics couldn't be found

NIck
"hiwa" <HG******@nifty.ne.jp> wrote in message
news:68************************@posting.google.com ...
"BlackHawke" <bl********@legacygames.net> wrote in message news:<r6******************@newsread2.news.pas.eart hlink.net>...
Show your code that accesses graphics files in question.

Jul 17 '05 #14
Thank you all!

Based on a suggestion made her, I looked over the code and found the
problem. In 600x800 settings, a different folder was used to store the
graphics. We disabled 600x800 support, but that line was never commented
out.

Thank's all for helping. It's so incredible that there is the resource of
people like you taking this kind of time. Thank you, thank you, thank you.

Sincerely

Nick Soutter
Aepox Games

"BlackHawke" <bl********@legacygames.net> wrote in message
news:r6******************@newsread2.news.pas.earth link.net...
My name is Nick Soutter, I own a small game development company
(www.aepoxgames.net) making our first game (www.andromedaonline.net) in
java.

I am writing because we are having a very serious problem, and I was hoping someone might have thoughts.

Our game has 2 main programs- one is an updater, the other is the game
client. The updater (AndromedaOnline.jar) checks for updates to the
graphics, sound, client, and of course itself. After applying any updates,
the updater runs the client (AndromedaClient.jar) for people to play with.

When players install this program on their systems with pre-existing
versions of JAVA, it runs fine. When they try to install it after installing a fresh, new Java JRE, however, it fails.

I am running Java 1.4.1_05 on my system. This runs fine. After some Alpha
testers reported client problems, we brought up a test computer, installed a fresh Windows XP, installed Java 1.4.1_05 on the system, then installed the game. The updater ran fine, but the client failed to run. It threw null
pointer exceptions when it tried to load the graphics from the graphics jar file (AndromedaGFX.jar)

Strange as this may sound, this problem SEEMS to only to occur on newly
installed JRE's.

The problem appears to be that the client is not reading graphics from the
associated graphics jar. The updater is small, so we were able to include
its graphics with the updater, instead of in a separate jar, which is
probably why the updater works fine.

If we take the bad Andromeda game folder, copy it to another computer with Java on it, the game works fine. But copy the folder back to the freshly
installed computer, and it won't work.

We suspected a classpath issue, but there's a classpath info in the client
jar which should prevent this. Further, we've updated all the classpath
information on the new installation, aswel as path, and JAVA_HOME
environmental variables. None of it worked (it is interesting to note that
classpath isn't set on the working machine, it gets that from the client
manifest).

We've had this problem reported on three windows machines and have been
unable to fix it. On at least 5 machines it appears to runs fine. We haven't a clue what is causing this problem. It does not appear to be the game or
the code, as copying the game folder from a "bad" machine to a "good" one
allows the client within the folder to work.

It's very strange, and ALL of us here are stumped. We go to beta soon, and
obviously this is a serious problem. Again, as strange as it sounds, the
only common thread is new installs of java where none existed. Install java on your machine (any 1.4.1 or higher), and the client can't load it's own
graphics files (copy of client manifest below).

If you'd like to see the basic files, they can be found at
http://www.aepox.net/andromeda/Downl...omedaBasic.zip. This includes
the updater and client, as well as the libraries. If you run the updater
(AndromedaOnline.jar) it will attempt to download the graphics package
(AndromedaGFX.jar). If you want to download the entire package (graphics and everything) it's at
http://www.aepox.net/andromeda/Downl...medaOnline.zip

Thank you for your time. Any thoughts as to the cause of this troublesome
problem would be MUCH appreciated.

Nick Soutter

Aepox Games

Manifest-Version: Version 1.0

Specification-Title: Andromeda GameClient Classes

Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;

Main-Class: com.andromeda.gameclient.PreGameClient

Implementation-Title: com.andromeda.gameclient

Specification-Vendor: Aepox Games

Specification-Version: 1.0

Implementation-Version: 40119

Name: com/andromeda/gameclient

Implementation-Vendor: Aepox Games

Jul 17 '05 #15
Thank you all!

Based on a suggestion made her, I looked over the code and found the
problem. In 600x800 settings, a different folder was used to store the
graphics. We disabled 600x800 support, but that line was never commented
out.

Thank's all for helping. It's so incredible that there is the resource of
people like you taking this kind of time. Thank you, thank you, thank you.

Sincerely

Nick Soutter
Aepox Games

"BlackHawke" <bl********@legacygames.net> wrote in message
news:r6******************@newsread2.news.pas.earth link.net...
My name is Nick Soutter, I own a small game development company
(www.aepoxgames.net) making our first game (www.andromedaonline.net) in
java.

I am writing because we are having a very serious problem, and I was hoping someone might have thoughts.

Our game has 2 main programs- one is an updater, the other is the game
client. The updater (AndromedaOnline.jar) checks for updates to the
graphics, sound, client, and of course itself. After applying any updates,
the updater runs the client (AndromedaClient.jar) for people to play with.

When players install this program on their systems with pre-existing
versions of JAVA, it runs fine. When they try to install it after installing a fresh, new Java JRE, however, it fails.

I am running Java 1.4.1_05 on my system. This runs fine. After some Alpha
testers reported client problems, we brought up a test computer, installed a fresh Windows XP, installed Java 1.4.1_05 on the system, then installed the game. The updater ran fine, but the client failed to run. It threw null
pointer exceptions when it tried to load the graphics from the graphics jar file (AndromedaGFX.jar)

Strange as this may sound, this problem SEEMS to only to occur on newly
installed JRE's.

The problem appears to be that the client is not reading graphics from the
associated graphics jar. The updater is small, so we were able to include
its graphics with the updater, instead of in a separate jar, which is
probably why the updater works fine.

If we take the bad Andromeda game folder, copy it to another computer with Java on it, the game works fine. But copy the folder back to the freshly
installed computer, and it won't work.

We suspected a classpath issue, but there's a classpath info in the client
jar which should prevent this. Further, we've updated all the classpath
information on the new installation, aswel as path, and JAVA_HOME
environmental variables. None of it worked (it is interesting to note that
classpath isn't set on the working machine, it gets that from the client
manifest).

We've had this problem reported on three windows machines and have been
unable to fix it. On at least 5 machines it appears to runs fine. We haven't a clue what is causing this problem. It does not appear to be the game or
the code, as copying the game folder from a "bad" machine to a "good" one
allows the client within the folder to work.

It's very strange, and ALL of us here are stumped. We go to beta soon, and
obviously this is a serious problem. Again, as strange as it sounds, the
only common thread is new installs of java where none existed. Install java on your machine (any 1.4.1 or higher), and the client can't load it's own
graphics files (copy of client manifest below).

If you'd like to see the basic files, they can be found at
http://www.aepox.net/andromeda/Downl...omedaBasic.zip. This includes
the updater and client, as well as the libraries. If you run the updater
(AndromedaOnline.jar) it will attempt to download the graphics package
(AndromedaGFX.jar). If you want to download the entire package (graphics and everything) it's at
http://www.aepox.net/andromeda/Downl...medaOnline.zip

Thank you for your time. Any thoughts as to the cause of this troublesome
problem would be MUCH appreciated.

Nick Soutter

Aepox Games

Manifest-Version: Version 1.0

Specification-Title: Andromeda GameClient Classes

Class-Path: lib/jmf.jar;AndromedaGFX.jar;AndromedaSFX.jar;

Main-Class: com.andromeda.gameclient.PreGameClient

Implementation-Title: com.andromeda.gameclient

Specification-Vendor: Aepox Games

Specification-Version: 1.0

Implementation-Version: 40119

Name: com/andromeda/gameclient

Implementation-Vendor: Aepox Games

Jul 17 '05 #16
"BlackHawke" <bl********@legacygames.net> wrote in message news:<h%*****************@newsread2.news.pas.earth link.net>...

That's not worth posting on a public forum because you have
not shown the relevant code.
Jul 17 '05 #17
"BlackHawke" <bl********@legacygames.net> wrote in message news:<h%*****************@newsread2.news.pas.earth link.net>...

That's not worth posting on a public forum because you have
not shown the relevant code.
Jul 17 '05 #18


"hiwa" <HG******@nifty.ne.jp> wrote in message
news:68**************************@posting.google.c om...
| "BlackHawke" <bl********@legacygames.net> wrote in message
news:<h%*****************@newsread2.news.pas.earth link.net>...
|
| That's not worth posting on a public forum because you have
| not shown the relevant code.

I disagree, I think it is good manners to say thanks for the help which you
have received :-)
--
-P
Jul 17 '05 #19


"hiwa" <HG******@nifty.ne.jp> wrote in message
news:68**************************@posting.google.c om...
| "BlackHawke" <bl********@legacygames.net> wrote in message
news:<h%*****************@newsread2.news.pas.earth link.net>...
|
| That's not worth posting on a public forum because you have
| not shown the relevant code.

I disagree, I think it is good manners to say thanks for the help which you
have received :-)
--
-P
Jul 17 '05 #20
Well PerfectDay, I think perhaps hiwa meant the problem was not worth
posting, not the "Thanks" (though I appreciate your defense).

I do disagree with hiwa, however.

I thought the issue would be a classpath issue or something else someone
might have seen before. I didn't post the relative code because, well, I
didn't know what the relevant code might be. The errors were in multiple
class files. I had no way of knowing it was the loader. If I did, I'd have
posted the loader code, but I'd also have known what the problem was, so I
wouldn't have had to post.

When someone requested a segment (the runtime.exe code), I happily posted
it.

And I would not have found the problem had I not seen the post (which I
can't seem to find now) which recommended checking the loader code. That
post lead directly to us finding the problem, and was a huge help (all the
suggestions were great, and one was right!)

So I will respectfully have to disagree with hiwa.

Nick Soutter
Jul 17 '05 #21
Well PerfectDay, I think perhaps hiwa meant the problem was not worth
posting, not the "Thanks" (though I appreciate your defense).

I do disagree with hiwa, however.

I thought the issue would be a classpath issue or something else someone
might have seen before. I didn't post the relative code because, well, I
didn't know what the relevant code might be. The errors were in multiple
class files. I had no way of knowing it was the loader. If I did, I'd have
posted the loader code, but I'd also have known what the problem was, so I
wouldn't have had to post.

When someone requested a segment (the runtime.exe code), I happily posted
it.

And I would not have found the problem had I not seen the post (which I
can't seem to find now) which recommended checking the loader code. That
post lead directly to us finding the problem, and was a huge help (all the
suggestions were great, and one was right!)

So I will respectfully have to disagree with hiwa.

Nick Soutter
Jul 17 '05 #22

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Shawn | last post by:
I am getting the following error with a Java Applet being served out by IIS over HTTPS/SSL using a Verisign certificate: java.lang.NoClassDefFoundError: javax/help/HelpSetException at...
1
by: CM | last post by:
Hi, when i want connect me in my BD with a JSP (with this simple code), this exception is throw. Thank's for ur help Mathieu CODE of my JSP ---------------------
0
by: anaik100 | last post by:
am trying to run a java db2 program. my db2 is in os/390. below is the code public class T4DB2Connect { public static void main(String args) { try { // load the DB2 Driver...
8
by: gimme_this_gimme_that | last post by:
I have the following Java code : package com.rhi.bb.udf.utils; import java.sql.Clob; import java.sql.SQLException; import java.util.regex.Pattern; import java.util.regex.Matcher;
0
by: NoaGross | last post by:
Hi, I'm relly new in java and I have a problem. I'm using java applet. When using http all ok, but when trying to use https i get: Java Plug-in 1.5.0_10 Using JRE version 1.5.0_10 Java...
0
by: jaywak | last post by:
Just tried running some code on Linux (2.4.21-32.0.1.EL and Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)) and Windows XPSP2 (with Java HotSpot(TM) Client VM (build...
0
oll3i
by: oll3i | last post by:
package library.common; import java.sql.ResultSet; public interface LibraryInterface { public ResultSet getBookByAuthor(String author); public ResultSet getBookByName(String name);
0
by: markthien | last post by:
Hi guys, I was trying to compile jasper report from java as below: public static void runReport(String databaseName, String userName, String password, String reportFile) {...
3
by: TsanChung | last post by:
I want to make a java TCP socket client to communicate with a TCP server socket on linux. Are there some sample C unix server and java client socket programs available? The Richard Stevens'...
1
by: raagadeepthi | last post by:
Getting below error when iam trying to sort the values: Oct 29 04:33:52 WARN cb.DefaultController - Cannot forward after response has been committed java.lang.IllegalStateException: Cannot...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.