icedtea-java7-plugin strangeness with anis.class

Bug #186245 reported by jim_charlton
4
Affects Status Importance Assigned to Milestone
icedtea-java7 (Ubuntu)
Expired
Undecided
Unassigned

Bug Description

I am running Ubuntu Gutsy 2.6.22-14-generic on an AMD64 machine 4 processors
Linux version 2.6.22-14-generic (buildd@king) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Dec 18 05:28:27 UTC 2007
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 15
model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
stepping : 11
cpu MHz : 1596.000
cache size : 4096 KB
physical id : 0
siblings : 4
core id : 0
cpu cores : 4
fpu : yes
fpu_exception : yes
cpuid level : 10
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
bogomips : 4803.24
clflush size : 64
cache_alignment : 64
address sizes : 36 bits physical, 48 bits virtual
power management:

Here is the output from 'java -version'
jim@charlton7:/var/log$ java -version
java version "1.7.0"
IcedTea Runtime Environment (build 1.7.0-b22)
IcedTea 64-Bit Server VM (build 1.7.0-b22, mixed mode)

I am running Mozilla/Firefox Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11

When I go to http://www.goes.noaa.gov/GSSLOOPS/wcir.html only the first image displays, even though the java applet seems to be running OK.
Here is the relevant section of the source code
******
<APPLET codebase="http://www.goes.noaa.gov/applet" archive="aniscode.jar" code="AniS.class" WIDTH=700 HEIGHT=580>

<PARAM NAME="controls" VALUE="startstop, looprock, step, speed, toggle, zoom, firstlast, refresh">
<PARAM NAME="auto_refresh" VALUE="30">
<PARAM NAME="rate" VALUE="80">
<PARAM NAME="pause_percent" VALUE="800">
<PARAM name="no_enh" value="true">
<PARAM name="use_IP" value="true">
<PARAM NAME="filenames" VALUE="http://www.goes.noaa.gov/GSSLOOPS/wcir/1.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/2.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/3.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/4.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/5.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/6.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/7.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/8.jpg">
*****
If I save the whole source page as an html file and change the above code segment to
*****
<APPLET codebase="http://www.goes.noaa.gov/applet" archive="aniscode.jar" code="AniS.class" WIDTH=700 HEIGHT=580>
<PARAM NAME="controls" VALUE="startstop, looprock, step, speed, toggle, zoom, firstlast, refresh">
<PARAM NAME="auto_refresh" VALUE="30">
<PARAM NAME="rate" VALUE="80">
<PARAM NAME="pause_percent" VALUE="800">
<PARAM name="no_enh" value="true">
<PARAM name="use_IP" value="true">
<PARAM name="image_base" value="http://www.goes.noaa.gov/GSSLOOPS/wcir/">
<PARAM NAME="filenames" VALUE="1.jpg,2.jpg,3.jpg,4.jpg,5.jpg,6.jpg7.jpg,8.jpg">
******
Then loading this file from Firefox now works exactly perfectly... just like my Windows XP machine using Sun Java, works on the original http://www.goes.noaa.gov/GSSLOOPS/wcir.html (using the upper code example).

The AniS code is described on http://www.ssec.wisc.edu/anis/.

Since the AniS code appears in many web pages, it is a bit annoying to have it often not work on my Linux box using Firefox and IcedTea.

Anyone have a clue as to why IcedTea Java won't execute the first given code properly. I am really not a Java expert myself.

Revision history for this message
jim_charlton (charltn) wrote :

Further comments on this problem.

By running firefox in a terminal window I can see the error. The Java implementation is not ignoring the carriage return at the end of the line in the list of filenames.

This works...

<PARAM NAME="filenames" VALUE="http://www.goes.noaa.gov/GSSLOOPS/wcir/1.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/2.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/3.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/4.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/5.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/6.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/7.jpg, http://www.goes.noaa.gov/GSSLOOPS/wcir/8.jpg">

(one continuous string)

but this does not work

<PARAM NAME="filenames" VALUE="http://www.goes.noaa.gov/GSSLOOPS/wcir/1.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/2.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/3.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/4.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/5.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/6.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/7.jpg,
                               http://www.goes.noaa.gov/GSSLOOPS/wcir/8.jpg">
All but the first filename is mangled because a "/n" and several spaces are added to the beginning of the filename.

Regular Sun Java on my windows XP machine executes the applet code just fine and does not seem to mangle the filenames even though they appear on separate lines as above.

Revision history for this message
jim_charlton (charltn) wrote :

One more comment... :-)

The problem is in method getParameter(). Using java icedtea 1.7.0 and passing a PARAM string to getParameter() that includes a carriage return, /n, results in a string that still includes the carriage return. Running the same applet on a windows XP machine wwith internet explorer running java 6 update 3, the getParameter() method returns a string without the carriage returns included. Bug or feature... whatever... it causes some web pages to fail in firefox using the icedtea plugin.

jim...

Revision history for this message
Matti Lindell (mlind) wrote :

Can you reproduce this in Hardy, using openjdk-6 counterpart icedtea-gcjwebplugin ?

Changed in icedtea-java7:
status: New → Incomplete
Revision history for this message
jim_charlton (charltn) wrote : Re: [Bug 186245] Re: icedtea-java7-plugin strangeness with anis.class
Download full text (4.5 KiB)

Sorry:

I was away for 3 weeks and could not deal with your message.

I don't have Hardy on a machine that I can use to try your suggestion.
I will upgrade this machine to Hardy when I get a chance and then get
back to you on what happens.

jim...

On Mon, 2008-03-24 at 01:46 +0000, Matti Lindell wrote:
> Can you reproduce this in Hardy, using openjdk-6 counterpart icedtea-
> gcjwebplugin ?
>
> ** Changed in: icedtea-java7 (Ubuntu)
> Status: New => Incomplete
>
> --
> icedtea-java7-plugin strangeness with anis.class
> https://bugs.launchpad.net/bugs/186245
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in Source Package "icedtea-java7" in Ubuntu: Incomplete
>
> Bug description:
> I am running Ubuntu Gutsy 2.6.22-14-generic on an AMD64 machine 4 processors
> Linux version 2.6.22-14-generic (buildd@king) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Dec 18 05:28:27 UTC 2007
> processor : 0
> vendor_id : GenuineIntel
> cpu family : 6
> model : 15
> model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
> stepping : 11
> cpu MHz : 1596.000
> cache size : 4096 KB
> physical id : 0
> siblings : 4
> core id : 0
> cpu cores : 4
> fpu : yes
> fpu_exception : yes
> cpuid level : 10
> wp : yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
> bogomips : 4803.24
> clflush size : 64
> cache_alignment : 64
> address sizes : 36 bits physical, 48 bits virtual
> power management:
>
> Here is the output from 'java -version'
> jim@charlton7:/var/log$ java -version
> java version "1.7.0"
> IcedTea Runtime Environment (build 1.7.0-b22)
> IcedTea 64-Bit Server VM (build 1.7.0-b22, mixed mode)
>
> I am running Mozilla/Firefox Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11
>
> When I go to http://www.goes.noaa.gov/GSSLOOPS/wcir.html only the first image displays, even though the java applet seems to be running OK.
> Here is the relevant section of the source code
> ******
> <APPLET codebase="http://www.goes.noaa.gov/applet" archive="aniscode.jar" code="AniS.class" WIDTH=700 HEIGHT=580>
>
> <PARAM NAME="controls" VALUE="startstop, looprock, step, speed, toggle, zoom, firstlast, refresh">
> <PARAM NAME="auto_refresh" VALUE="30">
> <PARAM NAME="rate" VALUE="80">
> <PARAM NAME="pause_percent" VALUE="800">
> <PARAM name="no_enh" value="true">
> <PARAM name="use_IP" value="true">
> <PARAM NAME="filenames" VALUE="http://www.goes.noaa.gov/GSSLOOPS/wcir/1.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/2.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/3.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/4.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/5.jpg,
> http://www.goes.noaa.gov/G...

Read more...

Revision history for this message
jim_charlton (charltn) wrote :
Download full text (4.3 KiB)

On Mon, 2008-03-24 at 01:46 +0000, Matti Lindell wrote:
> Can you reproduce this in Hardy, using openjdk-6 counterpart icedtea-
> gcjwebplugin ?
>
> ** Changed in: icedtea-java7 (Ubuntu)
> Status: New => Incomplete
>
> --
> icedtea-java7-plugin strangeness with anis.class
> https://bugs.launchpad.net/bugs/186245
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in Source Package "icedtea-java7" in Ubuntu: Incomplete
>
> Bug description:
> I am running Ubuntu Gutsy 2.6.22-14-generic on an AMD64 machine 4 processors
> Linux version 2.6.22-14-generic (buildd@king) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Dec 18 05:28:27 UTC 2007
> processor : 0
> vendor_id : GenuineIntel
> cpu family : 6
> model : 15
> model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
> stepping : 11
> cpu MHz : 1596.000
> cache size : 4096 KB
> physical id : 0
> siblings : 4
> core id : 0
> cpu cores : 4
> fpu : yes
> fpu_exception : yes
> cpuid level : 10
> wp : yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
> bogomips : 4803.24
> clflush size : 64
> cache_alignment : 64
> address sizes : 36 bits physical, 48 bits virtual
> power management:
>
> Here is the output from 'java -version'
> jim@charlton7:/var/log$ java -version
> java version "1.7.0"
> IcedTea Runtime Environment (build 1.7.0-b22)
> IcedTea 64-Bit Server VM (build 1.7.0-b22, mixed mode)
>
> I am running Mozilla/Firefox Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11
>
> When I go to http://www.goes.noaa.gov/GSSLOOPS/wcir.html only the first image displays, even though the java applet seems to be running OK.
> Here is the relevant section of the source code
> ******
> <APPLET codebase="http://www.goes.noaa.gov/applet" archive="aniscode.jar" code="AniS.class" WIDTH=700 HEIGHT=580>
>
> <PARAM NAME="controls" VALUE="startstop, looprock, step, speed, toggle, zoom, firstlast, refresh">
> <PARAM NAME="auto_refresh" VALUE="30">
> <PARAM NAME="rate" VALUE="80">
> <PARAM NAME="pause_percent" VALUE="800">
> <PARAM name="no_enh" value="true">
> <PARAM name="use_IP" value="true">
> <PARAM NAME="filenames" VALUE="http://www.goes.noaa.gov/GSSLOOPS/wcir/1.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/2.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/3.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/4.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/5.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/6.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/7.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/8.jpg">
> *****
> If I save the whole source page as an html file and change t...

Read more...

Revision history for this message
jim_charlton (charltn) wrote :
Download full text (5.1 KiB)

Matti:

I have installed Hardy on my machine. Note that it is an Intel64
machine... not an AMD as stated in my original bug report.

I checked the Java plugins now installed with Firefox.

Two appear to be installed:

GCJ Web Browser Plugin (using IcedTea) 1.0
        File
        name: /usr/lib/jvm/java-6-openjdk/jre/lib/amd64/gcjwebplugin.so
        The GCJ Web Browser Plugin (using IcedTea) executes Java
        applets.

GCJ Web Browser Plugin 0.96-pre
        File name: /usr/lib/gcj-4.2-81/libgcjwebplugin.so
        The GCJ Web Browser Plugin executes Java applets.

Confusing... as I am not sure which plugin actually executes the Java
applets.

Nevertheless... the bug remains exactly as I described it earlier.

Is there anything else I should check/install/uninstall???

jim...

On Mon, 2008-03-24 at 01:46 +0000, Matti Lindell wrote:
> Can you reproduce this in Hardy, using openjdk-6 counterpart icedtea-
> gcjwebplugin ?
>
> ** Changed in: icedtea-java7 (Ubuntu)
> Status: New => Incomplete
>
> --
> icedtea-java7-plugin strangeness with anis.class
> https://bugs.launchpad.net/bugs/186245
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in Source Package "icedtea-java7" in Ubuntu: Incomplete
>
> Bug description:
> I am running Ubuntu Gutsy 2.6.22-14-generic on an AMD64 machine 4 processors
> Linux version 2.6.22-14-generic (buildd@king) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Dec 18 05:28:27 UTC 2007
> processor : 0
> vendor_id : GenuineIntel
> cpu family : 6
> model : 15
> model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
> stepping : 11
> cpu MHz : 1596.000
> cache size : 4096 KB
> physical id : 0
> siblings : 4
> core id : 0
> cpu cores : 4
> fpu : yes
> fpu_exception : yes
> cpuid level : 10
> wp : yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
> bogomips : 4803.24
> clflush size : 64
> cache_alignment : 64
> address sizes : 36 bits physical, 48 bits virtual
> power management:
>
> Here is the output from 'java -version'
> jim@charlton7:/var/log$ java -version
> java version "1.7.0"
> IcedTea Runtime Environment (build 1.7.0-b22)
> IcedTea 64-Bit Server VM (build 1.7.0-b22, mixed mode)
>
> I am running Mozilla/Firefox Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11
>
> When I go to http://www.goes.noaa.gov/GSSLOOPS/wcir.html only the first image displays, even though the java applet seems to be running OK.
> Here is the relevant section of the source code
> ******
> <APPLET codebase="http://www.goes.noaa.gov/applet" archive="aniscode.jar" code="AniS.class" WIDTH=700 HEIGHT=580>
>
> <PARAM NAME="controls" VALUE="startstop, looprock, step, speed, toggle, zoom, firstlast, refresh">
> <PARAM NAME="auto_refresh" VALUE="30">
> <PARAM NAME="rate" VALUE="80">
> <...

Read more...

Revision history for this message
Matti Lindell (mlind) wrote :

Make sure you have the latest icedtea-gcjwebplugin (1.0-0ubuntu5) installed. openjdk-6-jre-headless (which is installed as a dependency for icedtea-gcjwebplugin) conflicts the old gcjwebplugin and this package should be automatically removed. If you still have any versions of gcjwebplugin installed, remove those manually.

Make sure your browser is not running and then execute the following command using terminal:
sudo update-java-alternatives --plugin --set java-6-openjdk

This sets the icedtea-gcjwebplugin as a default java plugin. Verify that it's the only java plugin displayed in firefox's about:plugins page.

For me the applet in http://www.goes.noaa.gov/GSSLOOPS/wcir.html looked the same with icedtea-gcjwebplugin and sun-java6-plugin.

Revision history for this message
jim_charlton (charltn) wrote :
Download full text (5.9 KiB)

matti:

Sorry to be so slow in responding. I may be over my head on this thing.

I have installed Hardy Heron and I have installed icedtea-gcjwebplugin
(1.0-0ubuntu5). I removed gcjwebplugin-4.2. I run
update-java-alternatives --plugin --set java-6-openjdk
(as root) and it responds
No alternatives for firefox-3.0-javaplugin.so.
No alternatives for firefox-javaplugin.so.
No alternatives for iceape-javaplugin.so.
No alternatives for iceweasel-javaplugin.so.
No alternatives for midbrowser-javaplugin.so.
No alternatives for mozilla-javaplugin.so.
No alternatives for xulrunner-javaplugin.so.
No alternatives for firefox-javaplugin.so.
No alternatives for iceape-javaplugin.so.
No alternatives for iceweasel-javaplugin.so.
No alternatives for midbrowser-javaplugin.so.
No alternatives for mozilla-javaplugin.so.
No alternatives for xulrunner-javaplugin.so.

The applet from http://www.goes.noaa.gov/GSSLOOPS/wcir.html still does
not execute properly (no animation as the files do not load as I
described before).

jim...

On Fri, 2008-04-18 at 10:17 +0000, Matti Lindell wrote:
> Make sure you have the latest icedtea-gcjwebplugin (1.0-0ubuntu5)
> installed. openjdk-6-jre-headless (which is installed as a dependency
> for icedtea-gcjwebplugin) conflicts the old gcjwebplugin and this
> package should be automatically removed. If you still have any versions
> of gcjwebplugin installed, remove those manually.
>
> Make sure your browser is not running and then execute the following command using terminal:
> sudo update-java-alternatives --plugin --set java-6-openjdk
>
> This sets the icedtea-gcjwebplugin as a default java plugin. Verify that
> it's the only java plugin displayed in firefox's about:plugins page.
>
> For me the applet in http://www.goes.noaa.gov/GSSLOOPS/wcir.html looked
> the same with icedtea-gcjwebplugin and sun-java6-plugin.
>
> --
> icedtea-java7-plugin strangeness with anis.class
> https://bugs.launchpad.net/bugs/186245
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in Source Package "icedtea-java7" in Ubuntu: Incomplete
>
> Bug description:
> I am running Ubuntu Gutsy 2.6.22-14-generic on an AMD64 machine 4 processors
> Linux version 2.6.22-14-generic (buildd@king) (gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Dec 18 05:28:27 UTC 2007
> processor : 0
> vendor_id : GenuineIntel
> cpu family : 6
> model : 15
> model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
> stepping : 11
> cpu MHz : 1596.000
> cache size : 4096 KB
> physical id : 0
> siblings : 4
> core id : 0
> cpu cores : 4
> fpu : yes
> fpu_exception : yes
> cpuid level : 10
> wp : yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
> bogomips : 4803.24
> clflush size : 64
> cache_alignment : 64
> address sizes : 36 bits physical, 48 bits virtual
> power management:
>
> Here is the output from ...

Read more...

Revision history for this message
Jayson Rowe (jayson.rowe) wrote :

Since it's been a very long time since any additional info was added to this bug, I'm just checking to see if this is still an issue, and find out what additional work should be done on this bug.

Revision history for this message
Ralph Janke (txwikinger) wrote :

Thank you for taking the time to report this bug and helping to make Ubuntu better. You reported this bug a while ago and there hasn't been any activity in it recently. We were wondering if this is still an issue for you. Can you try with the latest Ubuntu release? Thanks in advance.

Revision history for this message
jim_charlton (charltn) wrote : Re: [Bug 186245] Re: icedtea-java7-plugin strangeness with anis.class
Download full text (4.7 KiB)

Hi Ralph:

I am traveling for a few days and cannot check my Ubuntu machine but I am
almost positive that I checked this recently and the most recent version of
the OS (and Iced Tea) worked with no problem. So you can mark this bug as
being fixed.

Thanks for following up. Jim Charlton

On Thu, Oct 22, 2009 at 6:43 PM, Ralph Janke <email address hidden> wrote:

> Thank you for taking the time to report this bug and helping to make
> Ubuntu better. You reported this bug a while ago and there hasn't been
> any activity in it recently. We were wondering if this is still an issue
> for you. Can you try with the latest Ubuntu release? Thanks in advance.
>
> --
> icedtea-java7-plugin strangeness with anis.class
> https://bugs.launchpad.net/bugs/186245
> You received this bug notification because you are a direct subscriber
> of the bug.
>
> Status in “icedtea-java7” package in Ubuntu: Incomplete
>
> Bug description:
> I am running Ubuntu Gutsy 2.6.22-14-generic on an AMD64 machine 4
> processors
> Linux version 2.6.22-14-generic (buildd@king) (gcc version 4.1.3 20070929
> (prerelease) (Ubuntu 4.1.2-16ubuntu2)) #1 SMP Tue Dec 18 05:28:27 UTC 2007
> processor : 0
> vendor_id : GenuineIntel
> cpu family : 6
> model : 15
> model name : Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz
> stepping : 11
> cpu MHz : 1596.000
> cache size : 4096 KB
> physical id : 0
> siblings : 4
> core id : 0
> cpu cores : 4
> fpu : yes
> fpu_exception : yes
> cpuid level : 10
> wp : yes
> flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca
> cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm
> constant_tsc pni monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr lahf_lm
> bogomips : 4803.24
> clflush size : 64
> cache_alignment : 64
> address sizes : 36 bits physical, 48 bits virtual
> power management:
>
> Here is the output from 'java -version'
> jim@charlton7:/var/log$ java -version
> java version "1.7.0"
> IcedTea Runtime Environment (build 1.7.0-b22)
> IcedTea 64-Bit Server VM (build 1.7.0-b22, mixed mode)
>
> I am running Mozilla/Firefox Mozilla/5.0 (X11; U; Linux x86_64; en-US;
> rv:1.8.1.11) Gecko/20071204 Ubuntu/7.10 (gutsy) Firefox/2.0.0.11
>
> When I go to http://www.goes.noaa.gov/GSSLOOPS/wcir.html only the first
> image displays, even though the java applet seems to be running OK.
> Here is the relevant section of the source code
> ******
> <APPLET codebase="http://www.goes.noaa.gov/applet" archive="aniscode.jar"
> code="AniS.class" WIDTH=700 HEIGHT=580>
>
> <PARAM NAME="controls" VALUE="startstop, looprock, step, speed, toggle,
> zoom, firstlast, refresh">
> <PARAM NAME="auto_refresh" VALUE="30">
> <PARAM NAME="rate" VALUE="80">
> <PARAM NAME="pause_percent" VALUE="800">
> <PARAM name="no_enh" value="true">
> <PARAM name="use_IP" value="true">
> <PARAM NAME="filenames" VALUE="
> http://www.goes.noaa.gov/GSSLOOPS/wcir/1.jpg,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/2.jpg
> ,
> http://www.goes.noaa.gov/GSSLOOPS/wcir/3.jpg
> ,
> ...

Read more...

Revision history for this message
Launchpad Janitor (janitor) wrote :

[Expired for icedtea-java7 (Ubuntu) because there has been no activity for 60 days.]

Changed in icedtea-java7 (Ubuntu):
status: Incomplete → Expired
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.