HTML entity codes in XML do not display in IE browsers

I have an XML file generated via PHP/MySQL that contains HTML entities like " ² ". I'm using DW CS3 to create a Spry (1.6.1) dataset from the XML file and filling a Spry table.
If I open the table page in any IE browser (6, 7 or 8) the table is filled and displays OK but these characters are just missing, however, I can open this same page with the same Spry dataset in Firefox, Safari, Opera, Chrome, etc. and all characters are displayed correctly, it's just IE that refuses to play.
I've tried changing DTDs and UTF8 page encoding, nothing seems to make a difference.
Any suggestions greatly appreciated  [ I can feel wrist slitting time approaching ... ] 

Hi Phil, it works!
Many thanks for your suggestions, they certainly helped solve the problem. I had previously tried wrapping in CDATA but I just got the entity codes displayed as text and sort of gave up looking there.  
The solution is to use CDATA to wrap the relevant content AND to format the column type to "html" with set "ColumnType".
I also found that Entity declarations can be removed from the XML, so I shouldn't have to worry about any entity codes I might encounter in source data.
The site I'm working on will eventually be multilingual with supplied database content, so I can't control the source data and all site features must work equally well in all languages.
I've updated the sample file with some Russian source data and set both character columns to "html", it works just fine! It shouldn't matter which method gets used to insert any special characters.
http://www.tech-nique.co.uk/development/spry_data/spry-data-table.php
many thanks for all responses, much appreciated!
[ every day's a school day ~;o) ]

Similar Messages

  • Entering HTML Entity Codes

    I haven't been able to find a way to insert HTML entity codes (specifically, to use em dashes, but other needs arise) through the interface. HTML snippets are intended for something entirely different. Apart from opening published output in an editor to insert the entity codes, is there a simple way that I've missed finding?

    If you want to change the characterset then presumably you can only do that post publishing.
    http://www.markboulton.co.uk/journal/comments/fivesimple_steps_to_typesetting_on_the_webdashes/
    This article may be of use, particularly
    +"In Unicode, the em dash is U+2014 (decimal 8212). In HTML, the numeric forms are — and —. The HTML entity is —."+

  • Xml file not displaying.

    Hello all,
    Pls i am trying to work on an example that displays some pics in form of slide show. Everything worked fine till i got to a point of displaying the content of an xml file. I tried all i could but things did not work out. someone pls help, i am frustrated. Below re my codes.
    test.xml
    <?xml version="1.0"?>
    <wedshow>
    <audio source="devpics/mus.mp3 />
    <photo duration="10" source="devpics/test.jpg" />
    <photo duration="20" source="devpics/tes.jpg" />
    <photo duration="20" source="devpics/testA.jpg" />
    </wedshow>
    WedShowPlayer2.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:MyComp="*" layout="absolute" initialize="init();">
    <mx:Script>
    <![CDATA[
    import mx.rpc.events.ResultEvent;
    private function init():void {
    service.send();
    ]]>
    </mx:Script>
    <mx:HTTPService id="service" url="component/test.xml" resultFormat="e4x" result="show.loadShow(
    XML(event.result) ); show.playShow();" />
    <MyComp:WedShow id="show" width="100%" height="100%" horizontalCenter="0"/>
    </mx:Application>
    WedShow.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" horizontalScrollPolicy="off" verticalScrollPolicy="off">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import flash.display.Loader;
    [Bindable]
    private var _xml:XML;
    private var photos:ArrayCollection = new ArrayCollection();
    private var sound:Sound;
    private var iLoaded:uint = 1;
    private var isLoaded:Boolean = false;
    private var timer:Timer = new Timer(1000,0);
    private var photoIndex:int = 0;
    private var nextPhotoTime:int = 1;
    public function playShow():void {
    if(isLoaded) {
    play.visible = false;
    timer = new Timer(1000,0);
    timer.addEventListener( TimerEvent.TIMER, onTime );
    timer.start();
    if(sound!=null) {sound.play();}
    } else { loadShow( _xml ); }
    private function onTime( event:TimerEvent ):void {
    if( event.currentTarget.currentCount == nextPhotoTime ) {
    if( photos.length > photoIndex ) {
    image.load(Loader(photos[photoIndex]).content);
    // using e4x to access the photo duration attribute
    nextPhotoTime += int(_xml.photo[photoIndex].@duration);
    photoIndex++;
    } else {
    stopShow();
    public function stopShow():void {
    timer.stop();
    timer.reset();
    image.source="";
    SoundMixer.stopAll();
    photoIndex = 0;
    nextPhotoTime = 1;
    play.visible = true;
    public function loadShow( xml:XML ):void {
    _xml = xml;
    photos = new ArrayCollection();
    iLoaded = 1;
    isLoaded = false;
    photoIndex = 0;
    nextPhotoTime = 1;
    progress.visible = true;
    play.visible = false;
    for each(var photoNode:XML in _xml.photo) {
    var photo:Loader = new Loader();
    photo.load(new URLRequest(photoNode.@source));
    photo.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,
    onProgress);
    photo.contentLoaderInfo.addEventListener(Event.COMPLETE,
    onComplete);
    photos.addItem(photo);
    progress.label="Loading Image " + iLoaded +" of " + photos.length + ".";
    private function onProgress( event:ProgressEvent ):void {
    var loaded:Number = 0;
    var total:Number = 0;
    if(iLoaded<photos.length) {
    for each(var item:Loader in photos) {
    loaded += item.contentLoaderInfo.bytesLoaded;
    total += item.contentLoaderInfo.bytesTotal;
    } else {
    loaded = event.bytesLoaded;
    total = event.bytesTotal;
    progress.setProgress(loaded,total);
    private function onComplete( event:Event ):void {
    if(iLoaded<photos.length) {
    iLoaded++;
    progress.label="Loading Image " + iLoaded + "of" +
    photos.length;
    } else if (sound==null && _xml.audio[0].@source!="") {
    sound = new Sound();
    sound.addEventListener(ProgressEvent.PROGRESS, onProgress);
    sound.addEventListener(Event.COMPLETE, onComplete);
    sound.load(new URLRequest(_xml.audio[0].@source));
    progress.label="Loading Audio";
    } else {
    progress.visible = false;
    play.visible = true;
    isLoaded = true;
    ]]>
    </mx:Script>
    <mx:LinkButton id="play" label="Play" horizontalCenter="0" verticalCenter="0" visible="false" color="0xFFFFFF" />
    <mx:ProgressBar id="progress" mode="manual" width="60%" horizontalCenter="0" verticalCenter="0" color="0xFFFFFF" />
    <mx:Image id="image" horizontalCenter="0" verticalCenter="0"/>
    </mx:Canvas>
    anyone pls help
    thanks in anticipation
    [email protected]

    hey try out this link it may help you
    http://www.judahfrangipane.com/blog/2007/01/01/error-2044-unhandled-ioerrorevent-texterror -2038-file-io-error/
    thanks & regards
    gajanan
    [email protected]

  • XML attribute not displayed by stylesheet

    HI Gentlemen,
    I set up a very simple case where some of the input data is in attributes. It works fine for the element content--firstname, however it does not display the attribute requested. What can be wrong? Please help!
    Thanks, regards
    Miklos
    The XML instance (people.xml):
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="c:\XSL\people.xsl"?>
    <people>
    <person born="1912" died="1948">
    <name>
    <firstname>Alan</firstname>
    </name>
    </person>
    </people>
    The corresponding stylesheet (people.xsl):
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="person">
    <person born="{born}" />
    </xsl:template>
    </xsl:stylesheet>

    Are you opening "people.xml" directly in a web browser?
    If so, I think you need to transform to HTML for a proper display.
    For example :
    people.xml
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="file://c:/XSL/people.xsl"?>
    <people>
    <person born="1912" died="1948">
    <name>
    <firstname>Alan</firstname>
    </name>
    </person>
    </people>
    people.xsl
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="person">
      <html>
       <body>
        <p><xsl:text>First name = </xsl:text><xsl:value-of select="name/firstname"/></p>
        <p><xsl:text>Born = </xsl:text><xsl:value-of select="@born"/></p>
        <p><xsl:text>Died = </xsl:text><xsl:value-of select="@died"/></p>
       </body>
      </html>
    </xsl:template>
    </xsl:stylesheet>Otherwise, you could use any XSLT processor to perform the transformation.

  • KM Repository images,and XML Forms not displaying.

    Hello All,
    I am currently running NW04 SPS14 Portal with KM & Collaboration.
    However, the icons in the Content Management>> Explorer>> Documents repository are not displaying. Instead a little while box, with a red x sign appears in place of the images.
    When I launch the XML Forms builder, the application doesnt load.
    Also, the content developed using XML forms are no longer displaying, instead I get an error message "<b>Resource cannot be displayed with XML Resource Renderer</b>"
    I will appreciate any suggestion that will help to resolve this problem.
    Thank you.
    Regards,
    Collins.

    Hi Collins
    Have u got any solution to your problem .  Could you please share the solution to this problem
    Thanks
    Prasad

  • Xml images not displaying

    I'm having an issue displaying images from an xml file. It's
    a portfolio site, so basically it displays text and an image. All
    the text is working just fine, but for some reason the image (and
    the whole app) won't display when the image code is added.
    Here's my code:
    <mx:XML id=" portfolioXML"
    source="portfolio.xml" />
    <mx:XMLListCollection id="interActXMLList"
    source="{ portfolioXML.interactive.label}" />
    <mx:List id="interActList"
    dataProvider="{interActXMLList}"
    width="253" height="103" />
    <mx:Number
    id="selectedWorkIndex">{interActList.selectedIndex}</mx:Number>
    <mx:Text
    id="titleInput"
    text="{ portfolioXML.interactive[selectedWorkIndex].title}"
    width="446" />
    <mx:Text
    id="description"
    text="{
    portfolioXML.interactive[selectedWorkIndex].shortDesc}"
    height="101" width="446" />
    <!-- this causes the whole thing to crash
    <mx:Image
    source="{
    portfolioXML.interactive[selectedWorkIndex].image}" />
    -->
    xml looks like this:
    <portfolio>
    <interactive>
    <label>The Item</label>
    <title>The Item Title</title>
    <shortDesc>The item is totally
    awesome.</shortDesc>
    <image>
    http://www.example.com/images/interactive/item.png</image>
    </interactive>
    </portfolio>
    The url is correct (it works when I hard code it). Anyone
    know why the images aren't working??

    "cdub" <[email protected]> wrote in message
    news:ggsput$816$[email protected]..
    > I'm having an issue displaying images from an xml file.
    It's a portfolio
    > site,
    > so basically it displays text and an image. All the text
    is working just
    > fine,
    > but for some reason the image (and the whole app) won't
    display when the
    > image
    > code is added.
    >
    > Here's my code:
    >
    > <mx:XML id=" portfolioXML"
    > source="portfolio.xml" />
    >
    > <mx:XMLListCollection id="interActXMLList"
    > source="{ portfolioXML.interactive.label}" />
    >
    > <mx:List id="interActList"
    > dataProvider="{interActXMLList}"
    > width="253" height="103" />
    >
    > <mx:Number
    id="selectedWorkIndex">{interActList.selectedIndex}</mx:Number>
    >
    > <mx:Text
    > id="titleInput"
    > text="{
    portfolioXML.interactive[selectedWorkIndex].title}"
    > width="446" />
    >
    > <mx:Text
    > id="description"
    > text="{
    portfolioXML.interactive[selectedWorkIndex].shortDesc}"
    > height="101" width="446" />
    > <!-- this causes the whole thing to crash
    > <mx:Image
    > source="{
    portfolioXML.interactive[selectedWorkIndex].image}" />
    > -->
    What happens if you use a text object to show the image path
    above? Does
    that still crash the app?
    Also, try replacing the colon (:) in the XML with its url
    encoded version
    (&#58;)
    HTH;
    Amy

  • Xml forn not displaying

    hi all,
       I have created xml form in one server and import that xml form in another server. the xml form is coming in the etc folder(/etc/xmlforms). but I am not able to create new form. ie. (New/Forms/) . the xml form is not displaying. ( i dont want to generate xml form . when i generate the xml form it is displaying in the New/Forms section )  how to display the xml form in the New/Forms  section without generating it.
    Regards,
    Shanthakumar.

    hey try out this link it may help you
    http://www.judahfrangipane.com/blog/2007/01/01/error-2044-unhandled-ioerrorevent-texterror -2038-file-io-error/
    thanks & regards
    gajanan
    [email protected]

  • XML Dataset not displaying on any browser

    I searched the last six or so pages for a simular issue and came up empty handed so please forgive me if I'm bringing up an old or repeated problem. I assume the issue I'm facing is the result of some small (or large) mistep on my end but have yet to figure it out.
    When I created the xml data set from my local server i pulled the data from my database online using the php code for xml provided at adobe labs. You can see the example here: http://kannabooh.ty7.net/includes/xml_create.php. Everything was great and the data loaded in the preview. I created a Master Details Layout using the wizard but when I tested the page or uploaded to the site no data would appear. I've tried multiple browsers, versions and also reloading the data in multiple layout types with no luck.
    Any help would be greatly appreciated you can see the example here: http://kannabooh.ty7.net/schedule.php.

    So just so I understand you do see the template tags. Do you also see the data that is brought in from the file http://kannabooh.ty7.net/includes/xml_create.php because I see the tags but then when the page is completly loaded they disapear and are not replaced with the data I want loaded. Thats my main concern and I worry that its something I'm doing wrong because none of the browsers I'm using show that data. I see the field names that should be populated, their just not being populated. I hope that clears up my concerns.
    Currently Im testing on both Windows XP and 7 on my test server I'm using PHP5. Hope that helps.
     Tyger Burch
    Founder,
    Ty7 Web Services, LLC. (www.ty7.net)
    Digital Grime Hip Hop Social Network (www.digitalgrime.com)

  • Some images not displaying in some browsers

    Hi,
    I'm creating a newsletter in Dreamweaver using the design view.
    The finished thing works perfectly in Internet Explorer but when I view it in Firefox or Safari certain images are not displaying. There's no red cross or sign at all of why they're missing. They do however show as attachments at the bottom of the email.
    The code appears to be fine and all the images were uploaded in the same way, so can't think why some won't appear while others will. The only thing the missing images have in common is that they're all left aligned so the text wraps around them.
    I've been trying to fix this for ages and tearing my hair out. Any help greatly appreciated!!
    Thanks.

    Um, I can't seem to find it on the server, which can't be a good sign ) - :
    Have no idea why it's not appearing where it should but if I can get a link to work I'll send it to you.
    Thanks for your help

  • Navigation & Photo Page not displaying within some browsers

    Hello,
    I am using iWeb '08 and am having great difficulties trying to get my site cross browser compatible. The site is working perfectly on the Mac in Firefox 2 & Safari but not Firefox 3. It is also not displaying correctly in Firefox 2.0.0.13 and IE7 on my WinXP machine. Unfortunately the error is not just a cosmetic issue. The Main Navigation is not displaying on any page and only shows a bullet point where it is meant to be. The other error occurs in the Photo Template and the photos are not displaying. I am using a "Version 1 template" and did a test with a "version 2" template that provided the same errors.
    Has anyone else had these problems???
    The site is located at:
    http://web.mac.com/maxkit/Kai/
    Photo Page:
    http://web.mac.com/maxkit/Kai/CurrentPictures/Pages/Snowy_AprilDay.html
    The test site is located at:
    http://web.mac.com/maxkit/Site/
    Thanks
    Max

    You have applied a height of "auto"to your menubar container, which gives it no height at all in some browsers. If you have a clue what height you would like to display for your menubar, give it, instead of:
        <div style="height: auto;" id="p7PMM_1" class="p7PMMh04">
    Better yet, leave it in the CSS file, where you will find it when you go looking for it. You already assign a height there:
    .p7PMMh04 {
        width: auto;
        height: 20px;
        margin: 0 auto;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        background-image: url(http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
        background-repeat: repeat-x;
        background-color: #000;
        text-align: left;
        line-height: normal;
    Because your inline style of height:auto; has more proximity (is closer) to the element being styled, it overrides the style in the stylesheet and applies the height: auto; instead of allowing the height: 20px;
    Beth

  • Background nav image not displaying in some browsers...

    Hi,
       I'm in the process of building a website template - still ironing out some bugs, but just discovered that the bacground image in my navigation bar isn't displaying on some browsers (including some versions of IE). It works in IE8 where my primary testing takes place (on both my local drive and from the temporary "live" server, but in most other browsers, doesn't show up...
    below is a link to my test page:
    http://home.roadrunner.com/~jgigandet/trinity/
    and here is the css with the applicable code in red:
    /*Menu Outer Wrapper*/
    .p7PMMh04 {
    width: auto;
    height: 20px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: bold;
    background-image: url(img/new_bk.gif);
    background-repeat: repeat-x;
    background-color: #000;
    text-align: left;
    line-height: normal;
    /*Hide Sub-Menu in Design View
    Compensate for LI padding on Sliding Doors themes*/
    .p7PMMh04 ul div {
    display: none;
    TOP LEVEL MENU
    .p7PMMh04 ul {
    margin: 0;
    padding: 0;
    .p7PMMh04 li {
    list-style-type: none;
    float: left;
    width: 120px;
    /* Hide from IE5 Mac \*/
    .p7PMMh04 li {
    width: auto;
    /*Top Level Links*/
    .p7PMMh04 a {
    display: block;
    text-decoration: none;
    padding: 2px 14px 3px 14px !important;
    color: #ffc42a !important;
    /*border-right: 1px solid #8184e6;  */
    text-align: left;
    /*Link hover when no drop down is present */
    .p7PMMh04 a:hover {
    color: #df8f04 !important;
    /*background-color: #DFDFDF;*/
    Syntax for special classes programatically assigned to first and last links and also LIs
    See user guide for more information
    .p7PMMh04 ul a.pmmfirst {
    border-left: 1px solid #df8f04;
    .p7PMMh04 ul ul a.pmmfirst {
    border-left: 0;
    .p7PMMh04 ul a.pmmlast {
    .p7PMMh04 ul li.pmmfirst {
    .p7PMMh04 ul li.pmmlast {
    /*First Sub Level*/
    .p7PMMh04 ul ul {
    z-index: 10000;
    background-color: #333;
    width: 150px;
    background-image: url(img/pmm_carbon_subs.jpg);
    background-repeat: repeat-x;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    .p7PMMh04 ul ul li {
    float: none;
    background-color: #000;
    background-image: none;
    .p7PMMh04 ul ul a {
    padding: 4px 12px !important;
    color: #ffc42a !important;
    border-right: 0;
    text-align: left;
    overflow: hidden;
    /* rollover on 1st level rollovers  */
    .p7PMMh04 ul ul a:hover {
    background-color: #333; !important; 
    color: #df8f04 !important;
    /*Third Level (Flyouts in horizontal menu)*/
    .p7PMMh04 ul ul ul {
    border-top: 1px solid #df8f04;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: 1px solid #df8f04;
    SPECIAL IMAGE-BASED RULES
    .p7PMMh04 img {
    border: 0;
    .p7PMMh04 .p7PMM_img {
    padding: 0px;
    border: 0;
    background-image: none;
    background-color: transparent;
    TRIGGERS and CUURENT MARK RULES
    The Closed state relates to trigger items when their child menus are not showing
    The Open state relates to trigger items when their child menus are showing
    Selectors appended with _left Automatically change arrow position and orientation
    if sub levels are set to fly out to the left
    /*Sub Level*/
    .p7PMMh04 ul a.trig_closed, .p7PMMh04 ul a.trig_closed_left {
    background-image: url(img/pmm_south_medium.png);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul a.trig_closed_up {
    background-image: url(img/pmm_north_medium.gif);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul a.trig_open, .p7PMMh04 ul a.trig_open_up {
    color: #000 !important;
    background-color: #DFDFDF !important;   /* This is background color of main dropdown rollover */
    .p7PMMh04 ul ul a.trig_closed {
    background-image: url(img/pmm_east_dark.png);
    background-repeat: no-repeat;
    background-position: right center;
    .p7PMMh04 ul ul a.trig_closed_left {
    background-image: url(img/pmm_west_dark.gif);
    background-repeat: no-repeat;
    background-position: left center;
    .p7PMMh04 ul ul a.trig_open {
    color: #FFF !important;
    background-color: #424242 !important;
    /*The Current Marker (You are here) links*/
    .p7PMMh04 .current_mark {
    font-weight: bold;
    color: #60c3d1 !important;
    .p7PMMh04 ul ul .current_mark {
    color: #FFF !important;
    Utility Rule used for Clearing floats in Horizontal Menus
    .p7pmmclearfloat {
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
    Thanks in advance for any advice,
    Jesse

    You have applied a height of "auto"to your menubar container, which gives it no height at all in some browsers. If you have a clue what height you would like to display for your menubar, give it, instead of:
        <div style="height: auto;" id="p7PMM_1" class="p7PMMh04">
    Better yet, leave it in the CSS file, where you will find it when you go looking for it. You already assign a height there:
    .p7PMMh04 {
        width: auto;
        height: 20px;
        margin: 0 auto;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        font-weight: bold;
        background-image: url(http://home.roadrunner.com/~jgigandet/trinity/img/new_bk.gif);
        background-repeat: repeat-x;
        background-color: #000;
        text-align: left;
        line-height: normal;
    Because your inline style of height:auto; has more proximity (is closer) to the element being styled, it overrides the style in the stylesheet and applies the height: auto; instead of allowing the height: 20px;
    Beth

  • Bold text does not display in internet browsers

    I am working on editing a website for a client that I did not originally create so I am having trouble trying to figure out what the previous designer did.
    I need to make certain text within paragraphs bold, which I normally do by inserting <b> </b> tags. However when I do this in my coding, it does not display as bold in any of my internet browsers ... IE, Firefox, Chrome, etc.
    Can someone please help me with this or suggest what I may have to change in my coding?
    Thanks,

    The reason it is happening is because the <strong> element is the child of an <em>, the <em> is in turn the child of a <p> tag and all of them are set to inherit the font attributes from thier parent tags. The first parent in the chain with a font setting is the <div> tag with the "left_column" class.
    The "left_column" class tells all of those child tags to set their text as 14px, black, Arial due to the font:inherit.
    The reset is meant to allow you to create css styles for all future tags without any default style being applied by the browser (as Rik suggests, creating the actual " strong {font-weight:bold;}" in your css would also do the trick). Since you don't specify any attributes for those tags other than "inherit your font styling from your parent", they take their attributes from the first parent element with an attribute.

  • 7520 EWS NOT DISPLAYING ON MULTIPLE BROWSERS

    We're trying to configure a static IP for our brand new 7520, to resolve firewall issues. We've carefully followed instructions, and the EWS will not display for our current printer IP. I see other people are experiencing the exact same difficulty. We get nothing but a blank EWS page on both Firefox and IE for Windows XP and our Verizon hotspot wireless router.
    Come on, HP.

    ALSO... although the printer is printing, it raises a printer error dialog before it prints. If you wait a few moments, the document will print. Nonetheless, you can hardly have faith in its software if it's producing spurious and annoying error messages at every turn.

  • WVC80N Video Stream not displaying on iOS6 browsers

    I updated an iPhone and iPad to iOS6 yesterday.  Now my Linksys WVC80N video streams will not display on both Safari and Chrome browsers.   On Safari if I go to the Camera "Home" page then use the browser Back button to the View Video page then I can get a still from the camera.  Any ideas on how to fix this issue?

    maz67 wrote:
    My cameras are at a 2nd home so I can't update firmware until I get there again. I just checked remotely and it he camera I checked is version 1.0.00 build 2008. Has anyone out there tried updating firmware to see if this is a fix for this problem? 
    I just checked the release note of this firmware 1.0.01. Perhaps, you can try another browser for isolation before updating the router. That might be a browser problem (maybe not supported yet).
    Product:          WVC80N v1
    Classification:   Firmware Release History
    Firmware Date:    Oct 30, 2009
    Last Firmware Version: 1.0.01 build 00
    Firmware 1.0.01 (build 00)
    - Fixed the issue that network drives does not listed in alphabetic order.
    - Fixed the issue that wireless security key is masked while typing in.
    - Correct TZO web URL to http://www.tzo.com.
    - Fixed the issue that WPS LED does not function when LED is set to disabled

  • JSTL unicode xml does not display after x:parse call

    I am trying to display an xml file on the web using JSTL xml tags. The file is encoded in utf-8 containing ancient Greek characters (x1f92, etc.). The file displays properly from a servlet + xslt (http://163.1.169.41/testapp), but I want to use JSTL.
    The JSTL produces intricate spaghetti on the screen (e.g. ��������������� ). I have seen this before --it would seem that unicode is indeed being directed at the screen but is not being interpreted properly. (Not strings of question marks mind you; the unicode seems to be there in this case).
    The code producing the spaghetti is below. I am just dumping in on the screen for now and will use xpath calls later for more precise extraction.
    Does the JSTL want character entities for the x arse call? I would not think so: parsing a utf-8 file would be a very common operation. How can I get the xml unicode file to display properly using the JSTL below?
    [headers]
    <%@ page contentType="text/html; charset=utf-8"pageEncoding="utf-8" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <c:import var="papyrus" url="blabula.xml" />
    <x:parse var="doc" xml="${papyrus}" />
    <x:out select="$doc" />
    ....

    Is it the parse or the import tag that is at fault?
    Try just printing the results of the <c:import> and see what it produces.
    you might try <c:import var="papyrus" url="blabula.xml" charEncoding="utf-8" />

Maybe you are looking for

  • How to use structure in ABAP program

    I developing a report in smartforms but i want some fields to be display on the report but unable to find the relvent table as the field is show in structure.i can not find the actual table . is there any specfic way to find the table .or is there an

  • Download Adobe Flash Player - doesn't happen

    Tried to dowload Adobe Flash Player - followed instructions, even to deactivating virus protection.  Screen showed 'finish' clicked on it but programe not downloaded - checked programme list; not there.  HELP!!!

  • How to catch the access to a folder

    Dear friends I want to write a program in such a way that,if any body tries to access my folder say E:\\chandu i should get an indication to my hidden program. thanks in advance.

  • Output Format for Currency

    Hi There, I have set defaults as '1,000.00' for currency output in the own data but in the output of report it is showing like '1.000,00'. PS: there is no formating statement in the program as well. Any advice friends, how can I make it in required f

  • Address quality

    is this tool integrated with the data quality tools or do most people use third party - looks like we need some address cleansing