Page 1 of 1

[Solved] IE reports in Java Console Error in XML file - Firefox is fine

Posted: Tue Feb 26, 2008 4:34 am
by NiGHtOwL
Hi guys,
I made a 360° Panorama and play it with Pureplayer of Panotools (Immervision).

The code I put in cmsmadesimple: 

Code: Select all

<applet archive="pano/PurePlayer.jar" code="PurePlayer" height="320" width="480"> 			
<param name="panorama" value="pano/arnspan.ivp"></param>
I open cmsmadesimple page in Firefox and the IVP file will get properly loaded and plays.

I open the same in Internet Explorer 7, the player loads and stops.

In the Java console there's to see:
Can't download pano/arnspan.ivp
XML error in pano/arnspan.ivp file.

When I put the same code as shown in a html file, then Internet Explorer is just fine and plays as wished.
The problem only exists only in cmsmadesimple. Really strange.  :-\

I am running CMS Made Simple 1.1.2 "Savaii"

Any ideas pls? I do need to get this running. If it runs on a plane html file, it should run in cmsmadesimple too.

Thx in advance and pls apologize my poor english.

Re: IE reports in Java Console Error in XML file - Firefox is fine (Immervision

Posted: Tue Feb 26, 2008 1:32 pm
by NiGHtOwL
Solved!

Code: Select all

<applet archive="pano/PurePlayer.jar" code="PurePlayer" height="320" width="480"> 			
<param name="panorama" value="http://myURL/cmssimple/pano/arnspan.ivp"></param>
IE needs here the full URL because Internet Explorer doesn't know the base ref. But that only within simple cms.

Simple as that but strange ;)