MVP? Index error on nested element using System.xml but NOT using msxml???

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: MVP? Index error on nested element using System.xml but NOT using msxml???

    I would love to help you, but without seeing some code, I can't do anything.

    <frown>

    bill

    "KathyB" <KathyBurke40@attbi.com> wrote in message
    news:75e8d381.0306250807.3f72ec95@posting.google.c om...
    > Hi, no one has answered my posts regarding this problem...PLEASE HELP
    > ME.
    >
    > I'm getting an index exception running an xml/xsl transform in .net
    > (using System.xml both code AND an asp:xml control), but it WORKS
    > using IE5.5 and 6 using both msxml 3 and 4, WHY? It hangs when more
    > than 2 levels of nested elements are used <step> as in an outline of
    > steps (1., 1.1, 1.1.1)
    >
    > Is there any way I can get around this? This is KILLING my project and
    > I'm the one who's been pushing the whole xml usage in .net
    > framework!!!
    >
    > TIA, Kathy (desparately crazy, Kathy!)

    William F. Robertson, Jr. Guest

  2. Similar Questions and Discussions

    1. Location element in the Web.config file. Allow System Admin whole directory, allow others specific page
      Hello. I am developing an ASP.net C# application using forms authentication. I have a directory ManageUsers and I want all pages in that...
    2. Nested System.Web.UI.Design.ControlDesigner
      I've created some components that rennder themselves as table rows. They do not show up in the designer if I put them inside a table tag even if I...
    3. Nested mySQL queries create issue with validity of result index?
      Hi all, I am iterating through a result set to generate a second set of queries but no matter what I do I get the error Warning:...
    4. What parses the xml/xsl transform in asp.net? System.xml NOT msxml?
      Hi, I've been reading conflicting posts, etc., could someone please explain to me if msxml is used by asp.net to transform xml using an xsl...
    5. XML TRANSFORM - Serious problem - nested element causes Index error...why oh why???
      Hi, This problem is KILLING my project. I'm transforming an xml doc (step by step instruction documents) in asp.net web form. I've tried using...
  3. #2

    Default Re: MVP? Index error on nested element using System.xml but NOT using msxml???

    I've posted it...but here it is again...THANKS! I, of course, comment
    out line 2 xml-stylesheet when running in .net.

    KathyBurke

    xml***********************
    <?xml version="1.0"?>
    <?xml-stylesheet type="text/xsl" href="KB_test.xsl"?>
    <work_instruction revision="B" doc_control_no="10-MS30-1000-037-B"
    dept="10-ME30">
    <title>EKRA E5 Screen Printer WI</title>
    <safety>
    <numbered_list>
    <listitem><para>Static prevention straps and lab coats must be worn at
    all
    times.</para></listitem>
    <listitem><para>Vinyl disposable gloves must be worn when handling
    solder
    paste and cleaning stencil and squeegee blades.</para></listitem>
    <listitem><para>Cotton gloves <emphasis>must be worn</emphasis> when
    handling bare boards to load
    into the Board Loader machine prior to printing.</para></listitem>
    </numbered_list>
    </safety>
    <tools_materials>
    <numbered_list>
    <listitem><para>Solder Paste - See Product Setup Sheet</para></listitem>
    <listitem><para>Squeegee Blades - See Product Setup
    Sheet</para></listitem>
    <listitem><para>Stencil - See Product Setup Sheet</para></listitem>
    <listitem><para>Stencil Wiper Paper</para></listitem>
    <listitem><para>Spatula</para></listitem>
    <listitem><para>Lint-free Paper Wipes</para></listitem>
    </numbered_list>
    </tools_materials>
    <process_steps>
    <step timer="no"><para>Switching ON the E5 Screen Printer.</para>
    <step timer="no"><para>Rotate the Main Switch located on the left side
    of the machine
    to the ON position. (This will supply power to both the machine and
    operator
    PCs.)</para>
    </step>
    <step timer="no"><para>Allow machine computer and operator computer to
    initialize. (The
    Main Menu appears on the screen. The machine program that was last
    active
    is loaded automatically. The front cover is unlocked.)</para>
    </step>
    <step timer="no"><para>Enter <emphasis>test measurement</emphasis>:
    <measure/></para>
    </step>
    <step timer="no"><para>Use the arrow keys to select the CONTROL menu
    item. Press the
    ENTER key. (The control unit is switched on; the status field changes to
    green).</para>
    </step>
    <step timer="no"><para>Use the arrow key to select the REFERENCE-DRIVE
    menu item. Press
    the ENTER key. (The field flashes green during reference-drive process
    and
    remains green after. All the motors, except the transport width motor,
    perform
    a reference drive).</para><para>THIS IS TO TEST THE SUBSEQUENT PARA
    TEMPLATE.</para>
    </step>
    <step timer="no"><para>Setup.</para>
    <step timer="no"><para>Use the arrow key to select the FILE menu item.
    Press the ENTER
    key. (Pop-Up window with a list of available programs displays).</para>
    <step timer="no"><para>This is to test the third level
    STEP.</para></step>
    </step>
    <step timer="no"><para>Use the up and down arrow keys to select the file
    for the board
    you want to print, then using left and right arrow keys select the LOAD
    field.
    Press the ENTER key. (Screen: NAME OF PROGRAM: LOAD PROGRAMME? YES /
    NO.)</para>
    </step>
    </step>
    </step>
    </process_steps>
    </work_instruction>

    XSL****************(sorry, kind of long...but pretty!)
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>

    <!-- ================================================== ======= -->
    <!-- Standard On-Line Work Instruction Stylesheet 6/12/03 -->
    <!-- ================================================== ======= -->
    <xsl:template match="/">
    <html>
    <head>
    <style type="text/css">
    bgcolor="#FFFFFF"
    h1 {font-family: Verdana;color: blue;font-size:20pt
    font-weight:bold;margin-top:0;margin-bottom:0}
    h2 {font-family: Verdana;color: red;font-size:18pt
    font-weight:bold;margin-top:0;margin-bottom:0}
    h3 {font-family: Verdana;color:
    white;font-size:14pt;font-weight:bold;margin-top:0;margin-bottom:0}
    body {font-family: Verdana;color: black;font-size:12pt}
    p {font-family: Verdana;color: black;font-size:12pt}
    h4 {font-family: Verdana;color:
    white;font-size:12pt;font-weight:bold;text-transform:
    uppercase;margin-top:0;margin-bottom:0}
    h5 {font-family: Verdana;color:
    white;font-size:12pt;font-weight:bold;margin-top:0;margin-bottom:0}
    h6 {font-family: Verdana;color:
    black;font-size:12pt;font-weight:bold;margin-top:0;margin-bottom:0}
    </style>
    <title>Example of XSLT</title>
    </head>
    <body>
    <h1><xsl:value-of select="/work_instruction/title"/></h1>
    <form method="POST">
    <xsl:apply-templates/>
    </form>
    </body>
    </html>
    </xsl:template>

    <xsl:template match="safety">
    <table border="1" width="100%" cellpadding="4">
    <tr bgcolor="red" valign="middle">
    <th colspan="2" align="left">
    <h3>SAFETY</h3>
    </th></tr>
    <xsl:apply-templates select="numbered_list/listitem" mode="safety"
    />
    </table>
    <br />
    </xsl:template>
    <xsl:template match="listitem" mode="safety">
    <tr><td>
    <table border="0">
    <tr>
    <td valign="top"><xsl:number level="multiple" format="1. "
    count="listitem" />&#160;</td>
    <td valign="top"><xsl:apply-templates/></td>
    </tr>
    </table>
    </td></tr>
    </xsl:template>

    <xsl:template match="tools_materials">
    <table border="1" width="100%" cellpadding="4">
    <tr bgcolor="orange" valign="middle">
    <th colspan="3" align="left">
    <h3>TOOLS AND MATERIALS</h3>
    </th></tr>
    <tr><td><b>Tool/Material</b></td><td align="center"><b>Jabil Part
    No.</b></td>
    </tr>
    <xsl:apply-templates select="numbered_list/listitem"
    mode="tools_materials" />
    </table>
    <br />
    </xsl:template>
    <xsl:template match="listitem" mode="tools_materials">
    <tr><td>
    <table border="0">
    <tr>
    <td valign="top"><xsl:number level="multiple" format="1. "
    count="listitem" />&#160;</td>
    <td valign="top"><xsl:apply-templates/></td>
    </tr>
    </table>
    <td valign="top">&#160;</td>
    </td></tr>
    </xsl:template>

    <xsl:template match="process_steps">
    <table border="1" width="100%" cellpadding="4">
    <tr bgcolor="blue" valign="middle">
    <th align="left" colspan="4">
    <h3>PROCESS STEPS</h3>
    </th>
    <tr bgcolor="green" valign="middle">
    <td align="center" valign="top">
    <input type="button" name="Start" value="START"></input></td>
    <td align="left"><font color="white"><b>Click the START button to
    begin the work instruction.</b></font></td></tr>

    <xsl:apply-templates/>
    </tr>
    <tr bgcolor="red" valign="middle">
    <td align="center" valign="top">
    <input type="button" name="Finish" value="FINISH"></input></td>
    <td align="left"><font color="white"><b>Click the FINISH button when
    work instruction is complete.</b></font></td></tr>
    </table>
    </xsl:template>
    <xsl:template match="step">
    <xsl:variable name="space" select="(count(ancestor::step) * 12 + 1) *
    7"/>
    <tr onMouseOver="this.bgColor = '#00FFFF'" onMouseOut ="this.bgColor =
    '#FFFFFF'" >
    <td align="center" valign="top">
    <!-- xsl:apply-templates select="@timer[.='yes']"/ -->
    <xsl:attribute name="Anomaly"></xsl:attribute>
    <input type="button" value="Anomaly"></input>
    </td>
    <td valign="top">
    <table width="100%" border="0" cellpadding="0">
    <tr>
    <td valign="top" width="{$space}">
    <table border="0" cellpadding="0">
    <tr>
    <td valign="top" width="{$space}">&#160;&#160;</td>
    <td valign="top">
    <xsl:number level="multiple" count="step" format="1.1"/>
    <xsl:if test="not(ancestor::step)">
    <xsl:text>.</xsl:text>
    </xsl:if>
    <xsl:text>&#160;&#160;</xsl:text>
    </td>
    </tr>
    </table>
    </td>
    <td>
    <xsl:apply-templates select="*[not(self::step)]"/>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <xsl:apply-templates select="step"/>
    </xsl:template>

    <xsl:template match="@timer">
    <xsl:if test=".='yes'">
    <xsl:attribute name="Start"></xsl:attribute>
    <input type="button" value="Start"></input>
    <xsl:attribute name="Finish"></xsl:attribute>
    <td align="center" valign="top">
    <input type="button" value="Finish"></input></td>
    </xsl:if>
    <td align="center" valign="top">
    <xsl:attribute name="Anomaly"></xsl:attribute>
    <input type="button" value="Anomaly"></input></td>
    </xsl:template>


    <xsl:template match="para">
    <p><xsl:apply-templates/></p>
    </xsl:template>

    <xsl:template match="measure">
    <input type="text" name="@name" value="{.}"/>&#160;&#160;
    <input type="button" value="Verify"/>
    </xsl:template>

    <xsl:template match="unordered_list">
    <table align="left"><br />
    <xsl:apply-templates select="listitem" mode="ul"/></table>
    </xsl:template>
    <xsl:template match="listitem" mode="ul">
    <tr><td valign="top">•</td>
    <td valign="top"><xsl:apply-templates select="."/></td></tr>
    </xsl:template>

    <!-- format and set html tags for subelements -->

    <xsl:template match="warning">
    <table>
    <tr bgcolor="red" valign="middle">
    <td>
    <h4>WARNING: <xsl:value-of select="."/></h4>
    </td><xsl:apply-templates select="warning"/>
    </tr>
    </table>
    </xsl:template>

    <xsl:template match="caution">
    <table>
    <tr bgcolor="blue" valign="middle">
    <td>
    <h5>CAUTION: <xsl:value-of select="."/></h5>
    </td><xsl:apply-templates select="caution"/>
    </tr>
    </table>
    </xsl:template>

    <xsl:template match="note">
    <table>
    <tr bgcolor="yellow" align="middle">
    <td>
    <h6>Note: <xsl:value-of select="."/></h6>
    </td><xsl:apply-templates select="note"/>
    </tr>
    </table>
    </xsl:template>

    <xsl:template match="emphasis">
    <b><xsl:apply-templates/></b>
    </xsl:template>

    <xsl:template match="link">
    <a target="_blank" href="{@url}"><xsl:apply-templates/></a>
    </xsl:template>


    <!-- Remove the Title element from content -->

    <xsl:template match="title"/>

    </xsl:stylesheet>

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Kathy Burke Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139