Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You need to set default namespace in your xml, like this:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;Assets xmlns="http://tempuri.org/data.xsd"&gt; &lt;Asset&gt; &lt;FileName&gt;Boomerang - Error codes.xlsx&lt;/FileName&gt; &lt;DisplayName&gt;Boomerang - Error codes&lt;/DisplayName&gt; &lt;Description&gt;This is the Boomerang error codes file&lt;/Description&gt; &lt;Tags&gt; &lt;Tag&gt;Excel&lt;/Tag&gt; &lt;Tag&gt;Boomerang&lt;/Tag&gt; &lt;/Tags&gt; &lt;Categories&gt; &lt;Category&gt;1&lt;/Category&gt; &lt;Category&gt;4&lt;/Category&gt; &lt;/Categories&gt; &lt;/Asset&gt; &lt;Asset&gt; &lt;FileName&gt;Issue Tracker v5.xlsx&lt;/FileName&gt; &lt;Description&gt;This is the issue tracker for Skipstone&lt;/Description&gt; &lt;Tags&gt; &lt;Tag&gt;Excel&lt;/Tag&gt; &lt;Tag&gt;Skipstone&lt;/Tag&gt; &lt;/Tags&gt; &lt;Categories&gt; &lt;Category&gt;1&lt;/Category&gt; &lt;Category&gt;4&lt;/Category&gt; &lt;/Categories&gt; &lt;/Asset&gt; &lt;/Assets&gt; </code></pre> <p>Also, there is a number of other problems:</p> <p>Path attribute is not defined in schema, 'Assetd' element is not defined. maxOccurs="unbounded" need to be set in schema for xs:element name="Asset"</p> <p>In case if you cannot modify xml, you need to remove target schema from xsd:</p> <pre><code>&lt;xs:schema id="data" xmlns:mstns="http://tempuri.org/data.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" &gt; </code></pre> <p>And register schema like this:</p> <pre><code>settings.Schemas.Add(null, "data.xsd"); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload