getSVGDocument repeatedly throwing "0x80020003 - JavaScript runtime error: Member not found"

0

The UK Office for National Statistics provide access to the data from the UK 2011 national census. One access method they provide is through a SOAP API and they give examples of how to consume their API on the page NeSS Data Exchange V2.0. I am having trouble getting one example working. It’s under NDE v2.0 Excel Client in the ZIP NDE Hub Client REST v2.0 (Zip) 37 Mb, a "hub demo Excel-based application which allows the user to build up a repository of saved data, and view it via an SVG thematic map".

The map <DIV> SVG data is added to the page by these lines (in 'Sources/ThematicMap.htm')

document.writeln('<DIV id=mapPanel style="position:absolute;left:26%;top:7%; height=63%; width=50%;">')
document.writeln('<EMBED height=100% width=100% name=svgMap src="../Boundaries/' + svgFile + '" type=image/svg-xml>')
document.writeln('</DIV>');

(N.B. Their original code is ..\\Boundaries\\ but I changed it to ../Boundaries/. Both lead to the same error.)

Putting a breakpoint on that middle line reveals that the svgFile variable is set to "la_12UB.svg" and that file is present in the 'Boundaries' directory. Here is how 'Boundaries/la_12UB.svg' starts.

<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/css" href="external.css" ?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000303 Stylable//EN" "http://www.w3.org/TR/2000/03/WD-SVG-20000303/DTD/svg-20000303-stylable.dtd">
<svg xml:space="preserve"  preserveAspectRatio="xMinYMin meet" id="MainSVG" width="395" height="420" viewBox="0 0 900 650"> 
  <g class="mapEdge" opacity="0.2">
      <rect x="0" y="0" width="100%" height="100%"/>            
  </g>
  <svg xml:space="preserve" preserveAspectRatio="xMinYMin meet" id="Map" onload="init(evt)" width="100%" height="100%" viewBox="541512 -262080 7829 10000">
      <g class="mapBackground" transform="translate(1000,500) scale(1, -1)">
          <path id="00JA" d="M 533246,308907 534698,301468 539690,302984 540167,303513 539729,302866 534716,301443 527492,299370 527194,299301 522976,298284 523340,298070 522788,297938 522896,297322 522287,296297 522752,296256 523134,295665 522992,295319 522142,295666 521979,295371 521209,295267 520981,294831 520598,295324 519801,295441 519692,294834 520037,294424 519608,293815 519307,293871 519182,293126 517207,292629 517375,292088 516523,291182 516301,291471 515933,291255 515710,292076 514043,294384 513155,295603 513611,295848 513756,296170 513511,296320 512826,296386 512500,296931 512035,297564 510765,297353 510349,297748 509529,297818 509347,298690 508718,299559 507903,299503 507472,299058 506810,299452 503855,298555 503186,298398 503176,298820 502294,299230 501879,299841 502341,300260 502671,301563 502968,301637 503035,302936 503435,302942 503614,303338 503418,304478 502550,305148 502370,304967 501950,305791 502644,306453 503260,306347 503212,306752 503764,306896 504753,306844 504914,307391 507122,306620 507966,306784 508919,307439 510829,308187 511058,308184 512364,308996 512669,309872 514367,309757 516476,308975 517551,307531 517895,307411 520168,309004 520976,309160 521409,309326 522343,307609 523190,308534 525850,307595 525946,307970 528419,309965 529405,309387 530284,310000 530904,310008 531006,310370 531399,310254 532300,309733 533178,309331 533246,308907 z"/>

I.e. it appears to be correctly formed and full of SVG data.

'Sources/ThematicMap.htm' also contains the line

<BODY onload="initialise()">

that calls initialise in 'Includes/Startup.js'. initialise is where the exception is thrown. When the code reaches the line

svgMapDoc = document.svgMap.getSVGDocument();

the error 0x80020003 - JavaScript runtime error: Member not found is raised. Setting a breakpoint I can see that document.svgMap is not null nor undefined, though it does appear to be full of default values rather than the wealth of path data I’d expect (but I’m not sure where to look for that).

The question How to check if an embedded SVG document is loaded in an html page? may be relevant. I cannot use Erik Dahlström's answer since I already rely on onload as he suggests. I have tried Mocky's answer thus

function checkSVGMapReady() {
    try {
        svgMapDoc = document.svgMap.getSVGDocument();
    } catch (e) { }
    if (svgMapDoc === undefined) {
        setTimeout("checkSVGMapReady()", 300);
    } else {
        svgMapReady();
    }
}

But each time through the iterative call the same error is caught.

(N.B. I think the examples were tested for IE6, IE7, Firefox 2, at least that is what the readme file in another of their examples states, while I am using IE10. I have tried Chrome and Firefox too, and while I do not see the same error message I do not see the SVG data rendered either.)

Does anyone have any idea why the call to getSVGDocument is throwing 0x80020003 - JavaScript runtime error: Member not found and how to fix it?

javascript
svg
asked on Stack Overflow May 15, 2013 by dumbledad • edited May 23, 2017 by Community

1 Answer

2

There seem to be a number of issues here.

type=image/svg-xml is invalid. You must use type=image/svg+xml.

Then I think you should try doing this...

  if (document.svgMap && document.svgMap.contentDocument)
    svgMapDoc = document.svgMap.contentDocument;
  else try {
    svgMapDoc = document.svgMap.getSVGDocument();
  }
  catch(exception) {
    alert('Neither the HTMLObjectElement nor the GetSVGDocument interface are implemented');
  }

Finally the code to initialise the svgMapDoc is called from the onload event of the body, but it should be the onload of the embed that triggers it which would look somehing like this...

document.writeln('<EMBED height=100% width=100% onload="initialise()" name=svgMap src="../Boundaries/' + svgFile + '" type=image/svg+xml>')
answered on Stack Overflow May 15, 2013 by Robert Longson • edited Sep 12, 2016 by isherwood

User contributions licensed under CC BY-SA 3.0