Namespace-URI is wrong in the metadata.xml??

Dear Captivate-Community,
I am running into troubles importing SCORM packages from Captivate 6 into our LMS.
Our LMS  (Viversa 7.1 from VIWIS) interprets SCORM 1.2 very strict.
It seems that the namespace-URI is wrong in the metadata.xml!
wrong is...
Line 4:   xmlns:pkgprop="http://www.scorm.com/ScormEnginePackageProperties"
correct is:
Line 4:   xmlns:pkgprop="http://www.scorm.com/xsd/ScormEnginePackageProperties"
Has anyone else the same experience? I don´t want to change each exported file by hand...
Thx
:-) michael

Hi Michael,
yes, currently I actually have the same problem, also using the LMS Viversa. The solution from RodWard was very helpful. I change the template in Line 67 and add the "xsd/". Now it works!
Regards
Katharina

Similar Messages

  • Unable to find the Metadata XML file.

    I am trying to apply the to Bundle Patch. In this process i am trying to upload the patch 13550561 into EM.
    Its shows a column to upload the "Metadata XML file".
    Please let me know which file need to upload in “Metadata XML file". I could not find any in the patch zip with that name.
    Thanks,
    support_dba

    Hi,
    This Metadata XML file needs to be downloaded during the patch download.
    When the "File download" pop up appears, at the bottom of the popup you will find a link "Download Patch Metadata".
    Click on that link, will download the Metadata XML file.
    Hope this clarifies your question.
    Best Regards,
    Venkat

  • It would be ace to be able to export the metadata xml.

    Hello... not a question as such but more of a feature request.
    I've just spent 3 hours compiling a whole edition's worth of metadata in Folio Producer (which works way better than the sidecar XML generator).
    And now I need to create an iPhone edition using exactly the same information.
    It would be great to be able to export the XML file, and then import the XML file into the iPhone edition.
    Any ideas?
    Cheers
    David Hicks

    Export/import of metadata is a common request. It's on the DPS team's roadmap. You can file feature requests here: http://www.adobe.com/go/wish

  • XML namespace to be changed in the outgoing xml message

    HI
    in my scenario I am sending data to a web service .
    The xml namespace that is being sent in t he data is the namespace under which the the object is created.
    while sending the data to the webservice i do not want the ns0: to be attached to the message type and the xml namespace to go as the xml namespace of the vendor.
    Thanks
    Nikhil

    Hi,
    As everyone said you need to remove the namespace in the Message Type screen. If it is a imported XSD you need to remove the attribute targetNamespace.
    After doing this do the mapping once again by selecting the modified message type.
    The above should work... if you are not able to solve it still you can use the following XSLT in the interface mapping after the massage mapping. This is will remove the namespaces and ns0: etc.
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:output method="xml" indent="no"/>
      <xsl:template match="/|comment()|processing-instruction()">
        <xsl:copy>
          <xsl:apply-templates/>
        </xsl:copy>
      </xsl:template>
      <xsl:template match="*">
        <xsl:element name="{local-name()}">
          <xsl:apply-templates select="@*|node()"/>
        </xsl:element>
      </xsl:template>
      <xsl:template match="@*">
        <xsl:attribute name="{local-name()}">
          <xsl:value-of select="."/>
        </xsl:attribute>
      </xsl:template>
    </xsl:stylesheet>

  • FlashBuilder Burrito - metadata code completion (metadata.xml)

    Hello,
    I’ve already posted my question on the Flex Coders Yahoo Group, but I think Adobe Forums>Flash Builder>Using Flash Builder http://forums.adobe.com/ http://forums.adobe.com/ is more appropriate for this kind of questions. So, here is my problem:
    There is an actionscript framework called Robotlegs ( http://www.robotlegs.org/ ), which uses automated, metadata based Dependency Injection.
    The code for an injection could look like this:
    [Inject]
    public var myDependency:Depedency; //unnamed injection
    or this:
    [Inject(name="myNamedDependency")]
    public var myNamedDependency:NamedDepedency; //named injection
    The new, great features in FlashBuilder Burrito allow us to create code templates.
    I can add a new pattern like this:
    [Inject]
    public var ${ myDependency }:${ Depedency };
    "Flash Builder also supports metadata tags from third party SWCs if they have the required metadata.xml file embedded in them." (
    http://www.adobe.com/devnet/flex/articles/coding_enhancements_burrito.html#articlecontentA dobe_numberedheader_0 )
    Under \Adobe Flash Builder Burrito\sdks\4.5.0\frameworks there is a metadata.xml file.
    Following that example, I think that I could do something like this:
    <?xml version="1.0" encoding="utf-8"?>
    <annotations version="1.0">
    <metadata name="Inject" description=”the uber cool robotlegs Injection”>
    <context name="class" />
    <context name="variable" />
    <context name="method" />
    </metadata>
    </annotations>
    for a Field Injection, a Method Injection and a Constructor Injection in Robotlegs.
    Question
    How exactly should the metadata.xml file look like in order to get 
    [Inject(name="myNamedDependency")]
    public var myNamedDependency:NamedDepedency;
    in your code, meaning the [Inject] metadata tag and a template for the variable?
    I’d really appreciate your help.
    Cheers,
    Ondina

    There is some output however the tag appears different
    Instead of appearing as this
    <title>GENERIC TITLE</title>
    <title>GENERIC TITLE</title>
    It appears as
    <title xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2" xmlns:ezicp="http://sampleURL/xsd/ezicp_rootv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">GENERIC TITLE</title>
    <title xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2" xmlns:ezicp="http://sampleURL/xsd/ezicp_rootv1p0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">GENERIC TITLE</title>
    Not sure where I am going wrong. I used the same code as above with the code you have written below.
    Many thanks

  • Get Metadata XML per HTTP

    Hi all,
    I got the following code which retrieves the metadata.xml file from the local hard disk working, but now I need to load the file with a HTTP request. Is that possible and if so how?
    Here is the code for the local file import:
    SELECT image FROM mytable WHERE id = 1 FOR UPDATE' INTO image;
    meta := XMLTYPE(BFILENAME(dir_name, file_name), NLS_CHARSET_ID('WE8MSWIN1252'));
    image.putMetadata(meta);
    Thank you for your feedback.

    You can use the UTL_HTTP package to access content stored outside the database.
    You could also use create an ORDDoc object, set the source information to HTTP and the URL and then call import. This will import the XML into the clob of the ORDDoc. You can then use the getContent() method to retrieve the lob locator and use that to construct an XMLType.

  • ORA-19202: Error occurred in XML processingLSX-00023: unknown namespace URI

    Hi there
    I am trying to register an XSD document as an XML schema on the database. I am using Oracle 9i release 9.2.0.5.0 and using the dbms_xmlschema.registerSchema method in PL/SQL.
    I am getting the following error when trying to register:
    ORA-19202: Error occurred in XML processing LSX-00023: unknown namespace URI
    The problem seems to be caused by a local simpleType declared outside of the root element. If I remove the simpleType from the xsd, I can register it successfully as a schema on the database. However, we need the simpleType there as it defines valid values for one of the elements in the xsd.
    The xsd follows the structure:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema targetNamespace="http://www.oracle.com/VFLOC.xsd"
    xmlns:vfloc="http://www.oracle.com/VFLOC.xsd"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xdb="http://xmlns.oracle.com/xdb">
         <xsd:element name="VisionDataExchange">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element name="Credentials">
    ...... etc. etc.
                   </xsd:element>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
         <!-- Data Types Must complete data type values from database -->
         <xsd:simpleType name="TrueFalseType">
              <xsd:restriction base="xsd:string">
                   <xsd:enumeration value="1"/>
                   <xsd:enumeration value="0"/>
                   <xsd:enumeration value="True"/>
                   <xsd:enumeration value="False"/>
              </xsd:restriction>
              <!-- 1 and 0 are preferred -->
         </xsd:simpleType>
    </xsd:schema>
    Does anyone know how I can register a schema with a targetNamespace and the local simpleType below?
    Any help would be much appreciated.
    Thanks!
    Sonya

    Hi
    I wanted to know
    1)Hw to register a schema
    2) Associate xml files with the schema
    3) hw to do read the xml files
    If you could provide a small exampl, shall appreciate
    Thanks for your help in advance
    Sushil

  • How can I convert the metadata tags on my mp4s to xml files so that they can be read in Windows Media Center?

    I have a library with almost 3000 movies and TV shows that I have fully tagged. However, I have decided to start using Windows Media Center and it does its metadata tagging through XML files.  I wanted to know if anyone could tell me if there was a way to extract the metadata from those mp4s and convert them to a format that WMC could read?  Thanks!!!!

    iTunes can make XML playlists so it might be all you need, I made a simple one file playlist and exported it from iTunes. The result is shown below. In principle I could delete the playlist and the entry from the library, as long as I don't delete the file, then later reimport the XML playlist file. I haven't tested this particular scenario, but I assume that iTunes will read all the properties as listed unless it can read some kind of tag from the file itself in which case the current value of the tag would take precedence.
    What I don't know is what media center would make of this file, or what its files look like, however assuming they have a similar structure that can be decoded then it should be possible to read data from the iTunes library and write out a text file that will make sense to media centre.
    Video Test.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Major Version</key><integer>1</integer>
    <key>Minor Version</key><integer>1</integer>
    <key>Date</key><date>2013-09-26T23:30:26Z</date>
    <key>Application Version</key><string>11.1</string>
    <key>Features</key><integer>5</integer>
    <key>Show Content Ratings</key><true/>
    <key>Music Folder</key><string>file://localhost/E:/iTunes/iTunes%20Media/</string>
    <key>Library Persistent ID</key><string>CCF046191585EA85</string>
    <key>Tracks</key>
    <dict>
    <key>155170</key>
    <dict>
    <key>Track ID</key><integer>155170</integer>
    <key>Name</key><string>Abbott &#38; Costello: "Two Tens For A Five" &#38; "Who's On First"</string>
    <key>Artist</key><string>Abbott &#38; Costello</string>
    <key>Album Artist</key><string>Abbott &#38; Costello</string>
    <key>Album</key><string>Abbott &#38; Costello: "Two Tens For A Five" &#38; "Who's On First"</string>
    <key>Genre</key><string>Comedy Clip</string>
    <key>Kind</key><string>MPEG-4 video file</string>
    <key>Size</key><integer>110483524</integer>
    <key>Total Time</key><integer>532096</integer>
    <key>Year</key><integer>1950</integer>
    <key>Date Modified</key><date>2013-06-19T17:35:18Z</date>
    <key>Date Added</key><date>2012-12-01T17:30:57Z</date>
    <key>Bit Rate</key><integer>156</integer>
    <key>Comments</key><string>www.dvdvideosoft.com</string>
    <key>Artwork Count</key><integer>1</integer>
    <key>Persistent ID</key><string>5AF2C490D1E065CD</string>
    <key>Track Type</key><string>File</string>
    <key>Has Video</key><true/>
    <key>HD</key><false/>
    <key>Video Width</key><integer>1136</integer>
    <key>Video Height</key><integer>640</integer>
    <key>Location</key><string>file://localhost/E:/iTunes/iTunes%20Media/Home%20Vide os/Abbott%20&#38;%20Costello_%20_Two%20Tens%20for%20a%20Five_%20&#38;%20_Who's%2 0on%20First_.mp4</string>
    <key>File Folder Count</key><integer>3</integer>
    <key>Library Folder Count</key><integer>1</integer>
    </dict>
    </dict>
    <key>Playlists</key>
    <array>
    <dict>
    <key>Name</key><string>Video Test</string>
    <key>Playlist ID</key><integer>1930541</integer>
    <key>Playlist Persistent ID</key><string>30BF2769C94F7F29</string>
    <key>All Items</key><true/>
    <key>Playlist Items</key>
    <array>
    <dict>
    <key>Track ID</key><integer>155170</integer>
    </dict>
    </array>
    </dict>
    </array>
    </dict>
    </plist>
    Such files are easier to interpret if opened with Notepad++.
    tt2

  • How to get the metadata (in xml format) of all the fileds in SQl query ?

    Good day ,
    I am using the dbms_xmlgen.getXMLfunction to get the result of any query in xml format.
    With this XML I also want the metadata information about all the fields used in the query (passed to getXML function). Is it possible and how can I achieve this.
    I tried to Google it but couldn't find any solution , it's easy to do it in java where I can get the resultset meta data from the resultset but I have to do it in Oracle function since I want the result in xml format and want to use the oracle XML API.
    You may think why I need metadata , the reason is the application will later use this information to sort the data contained in these fields according to their data type provided to.
    Regards
    Sajjad Ahmed Paracha

    Hi,
    Please always say which version of Oracle you're using (SELECT * FROM v$version).
    With this XML I also want the metadata information about all the fields used in the query (passed to getXML function). Is it possible and how can I achieve this.It is possible but with a bit of effort.
    I would use DBMS_SQL utility to parse the query, extract each column's description and then build a METADATA element with the required information.
    Here's an example (11g) :
    DECLARE
      v_query      varchar2(30) := 'select * from scott.emp';
      v_cur        integer;
      v_desc_tab   dbms_sql.desc_tab;
      v_col_cnt    number;
      v_col_lst    varchar2(4000);
      v_xml_query  varchar2(32767);
      xml_metadata_coll xmlsequencetype := xmlsequencetype();
      xml_metadata      xmltype;
      res          clob;
    BEGIN
      v_cur := dbms_sql.open_cursor;
      dbms_sql.parse(v_cur, v_query, dbms_sql.native);
      dbms_sql.describe_columns(v_cur, v_col_cnt, v_desc_tab);
      dbms_sql.close_cursor(v_cur);
      for i in 1 .. v_col_cnt loop
        if i > 1 then
          v_col_lst := v_col_lst || ', ';
        end if;
        v_col_lst := v_col_lst || v_desc_tab(i).col_name;
        xml_metadata_coll.extend;
        select xmlelement("COLUMN"
               , xmlattributes(v_desc_tab(i).col_name as "name")
               , xmlforest(
                   case v_desc_tab(i).col_type
                     when 1   then 'VARCHAR2'
                     when 2   then 'NUMBER'
                     when 12  then 'DATE'
                     when 180 then 'TIMESTAMP'
                     else 'UNKNOWN'
                   end as "DATATYPE"
                 , v_desc_tab(i).col_max_len as "MAX_LENGTH"
                 , v_desc_tab(i).col_precision as "PRECISION"
                 , v_desc_tab(i).col_scale as "SCALE"
        into xml_metadata_coll(i)
        from dual;
      end loop;
      v_xml_query :=
    'SELECT XMLSerialize(document
             XMLElement("ROOT"
             , :1
             , XMLElement("ROWSET"
               , XMLAgg(
                   XMLElement("ROW", XMLForest(' || v_col_lst || '))
             ) as clob indent
    FROM ( ' || v_query || ')';
      select xmlelement("METADATA", xmlagg(column_value))
      into xml_metadata
      from table(xml_metadata_coll)
      execute immediate v_xml_query into res using xml_metadata;
      dbms_output.put_line(res);
    END;
    /Ouput :
    <ROOT>
      <METADATA>
        <COLUMN name="EMPNO">
          <DATATYPE>NUMBER</DATATYPE>
          <MAX_LENGTH>22</MAX_LENGTH>
          <PRECISION>4</PRECISION>
          <SCALE>0</SCALE>
        </COLUMN>
        <COLUMN name="ENAME">
          <DATATYPE>VARCHAR2</DATATYPE>
          <MAX_LENGTH>10</MAX_LENGTH>
          <PRECISION>0</PRECISION>
          <SCALE>0</SCALE>
        </COLUMN>
        <COLUMN name="JOB">
          <DATATYPE>VARCHAR2</DATATYPE>
          <MAX_LENGTH>9</MAX_LENGTH>
          <PRECISION>0</PRECISION>
          <SCALE>0</SCALE>
        </COLUMN>
        <COLUMN name="MGR">
          <DATATYPE>NUMBER</DATATYPE>
          <MAX_LENGTH>22</MAX_LENGTH>
          <PRECISION>4</PRECISION>
          <SCALE>0</SCALE>
        </COLUMN>
        <COLUMN name="HIREDATE">
          <DATATYPE>DATE</DATATYPE>
          <MAX_LENGTH>7</MAX_LENGTH>
          <PRECISION>0</PRECISION>
          <SCALE>0</SCALE>
        </COLUMN>
        <COLUMN name="SAL">
          <DATATYPE>NUMBER</DATATYPE>
          <MAX_LENGTH>22</MAX_LENGTH>
          <PRECISION>7</PRECISION>
          <SCALE>2</SCALE>
        </COLUMN>
        <COLUMN name="COMM">
          <DATATYPE>NUMBER</DATATYPE>
          <MAX_LENGTH>22</MAX_LENGTH>
          <PRECISION>7</PRECISION>
          <SCALE>2</SCALE>
        </COLUMN>
        <COLUMN name="DEPTNO">
          <DATATYPE>NUMBER</DATATYPE>
          <MAX_LENGTH>22</MAX_LENGTH>
          <PRECISION>2</PRECISION>
          <SCALE>0</SCALE>
        </COLUMN>
      </METADATA>
      <ROWSET>
        <ROW>
          <EMPNO>7369</EMPNO>
          <ENAME>SMITH</ENAME>
          <JOB>CLERK</JOB>
          <MGR>7902</MGR>
          <HIREDATE>1980-12-17</HIREDATE>
          <SAL>800</SAL>
          <DEPTNO>20</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7499</EMPNO>
          <ENAME>ALLEN</ENAME>
          <JOB>SALESMAN</JOB>
          <MGR>7698</MGR>
          <HIREDATE>1981-02-20</HIREDATE>
          <SAL>1600</SAL>
          <COMM>300</COMM>
          <DEPTNO>30</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7521</EMPNO>
          <ENAME>WARD</ENAME>
          <JOB>SALESMAN</JOB>
          <MGR>7698</MGR>
          <HIREDATE>1981-02-22</HIREDATE>
          <SAL>1250</SAL>
          <COMM>500</COMM>
          <DEPTNO>30</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7566</EMPNO>
          <ENAME>JONES</ENAME>
          <JOB>MANAGER</JOB>
          <MGR>7839</MGR>
          <HIREDATE>1981-04-02</HIREDATE>
          <SAL>2975</SAL>
          <DEPTNO>20</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7654</EMPNO>
          <ENAME>MARTIN</ENAME>
          <JOB>SALESMAN</JOB>
          <MGR>7698</MGR>
          <HIREDATE>1981-09-28</HIREDATE>
          <SAL>1250</SAL>
          <COMM>1400</COMM>
          <DEPTNO>30</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7698</EMPNO>
          <ENAME>BLAKE</ENAME>
          <JOB>MANAGER</JOB>
          <MGR>7839</MGR>
          <HIREDATE>1981-05-01</HIREDATE>
          <SAL>2850</SAL>
          <DEPTNO>30</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7782</EMPNO>
          <ENAME>CLARK</ENAME>
          <JOB>MANAGER</JOB>
          <MGR>7839</MGR>
          <HIREDATE>1981-06-09</HIREDATE>
          <SAL>2450</SAL>
          <DEPTNO>10</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7839</EMPNO>
          <ENAME>KING</ENAME>
          <JOB>PRESIDENT</JOB>
          <HIREDATE>1981-11-17</HIREDATE>
          <SAL>5000</SAL>
          <DEPTNO>10</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7844</EMPNO>
          <ENAME>TURNER</ENAME>
          <JOB>SALESMAN</JOB>
          <MGR>7698</MGR>
          <HIREDATE>1981-09-08</HIREDATE>
          <SAL>1500</SAL>
          <COMM>0</COMM>
          <DEPTNO>30</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7900</EMPNO>
          <ENAME>JAMES</ENAME>
          <JOB>CLERK</JOB>
          <MGR>7698</MGR>
          <HIREDATE>1981-12-03</HIREDATE>
          <SAL>950</SAL>
          <DEPTNO>30</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7902</EMPNO>
          <ENAME>FORD</ENAME>
          <JOB>ANALYST</JOB>
          <MGR>7566</MGR>
          <HIREDATE>1981-12-03</HIREDATE>
          <SAL>3000</SAL>
          <DEPTNO>20</DEPTNO>
        </ROW>
        <ROW>
          <EMPNO>7934</EMPNO>
          <ENAME>MILLER</ENAME>
          <JOB>CLERK</JOB>
          <MGR>7782</MGR>
          <HIREDATE>1982-01-23</HIREDATE>
          <SAL>1300</SAL>
          <DEPTNO>10</DEPTNO>
        </ROW>
      </ROWSET>
    </ROOT>A couple of comments :
    <li> I handle only four datatypes here (VARCHAR2, NUMBER, DATE, TIMESTAMP). Of course you can add more.
    The list of Oracle Type Number is available here : http://docs.oracle.com/cd/E11882_01/server.112/e26088/sql_elements001.htm#i54330
    Starting with 11g (not sure which release), DBMS_SQL package also declares these numbers through named constants.
    <li> I don't use DBMS_XMLGEN in this example. Instead I rebuild the query using SQL/XML functions and the list of columns that's just been described.

  • XML Fetch Error. The XML file assigned in the configuration.xml is either wrong or corrupted.

    1.Some web pages give "XML Fetch Error. The XML file assigned in the configuration.xml is either wrong or corrupted".
    2.Youtube gives, after pressing start button, message"An error occurred. Please try again later.
    Opening same youtube page with IE, there is no problems.
    3.Scrolling on Mozilla firefox pages works only with sidebar not with mouse wheel.
    Other user accounts on this computer doesn't have these problems.
    BR, Juha

    This can be caused by a recent Flash 11.3 update.
    See:
    *https://support.mozilla.org/kb/flash-113-doesnt-load-video-firefox

  • How to remove namespace link from the output XML

    i have to remove 'xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions"' (namespace) from the output xml file which is generated from the BIP. I need my output XML file without that namespace link, this namespace link is coming for each element.
    Anybody know how to do that please help.
    output xml file
    <?xml version="1.0" encoding="UTF-8" ?>
    <Reports version="2.00">
    <deliveryNote xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions">
    <subjectId />
    </deliveryNote>
    <deliveredReports xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions">
    <referDate>[Delivery note->H4]</referDate>
    </deliveredReports>
    <simpleReports xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions">
    <numberOfReports>2</numberOfReports>
    <nReport>
    <reportName>Xyz</reportName>
    <reportVersion>1.0</reportVersion>
    <observations>
    <numberOfObservations>15</numberOfObservations>
    <columnObservation>
    <y>9</y>
    <rO>
    <x>14</x>
    <o>11</o>
    <o>21</o>
    <o>121</o>
    </rO>
    </columnObservation>
    </observations>
    </nReport>
    </simpleReports>
    </Reports>
    my xslt file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xdoxslt="http://www.oracle.com/XSL/Transform/java/oracle.apps.xdo.template.rtf.XSLTFunctions" >
    <xsl:output method="xml" encoding="UTF-8"/>
    <xsl:template match="/">
         <xsl:element name="Reports">
              <xsl:attribute name="version">2.00</xsl:attribute>
                   <deliveryNote>
                        <subjectId></subjectId>
                        </deliveryNote>
                   <deliveredReports>
                        <referDate>[Delivery note->H4]</referDate>
                   </deliveredReports>
                   <simpleReports>
                        <numberOfReports>2</numberOfReports>
                        <nReport>
                                  <reportName>Xyz</reportName>
                                  <reportVersion>1.0</reportVersion>
                                       <observations>
                                       <numberOfObservations>15</numberOfObservations>
                                       <columnObservation>
                                            <y>9</y>
                                            <rO>
                                                 <x>14</x>
                                                      <xsl:for-each select="TEST_XML/LIST_R1/R1">
                                                           <o><xsl:value-of select="xdoxslt:lpad(COL1,10,' ')"/></o>
                                                      </xsl:for-each>
                                            </rO>
                                       </columnObservation>
                                       </observations>
                             </nReport>
                        </simpleReports>
              </xsl:element>
    </xsl:template>
    </xsl:stylesheet>

    Please post the same in BI Publisher forum
    BI Publisher
    Thanks,
    Vino

  • [svn:fx-trunk] 12985: Add metadata. xml for the SWC themes so that if Builder imports them they have nice names , etc.

    Revision: 12985
    Revision: 12985
    Author:   [email protected]
    Date:     2009-12-15 23:20:44 -0800 (Tue, 15 Dec 2009)
    Log Message:
    Add metadata.xml for the SWC themes so that if Builder imports them they have nice names, etc.  These need to be updated by the Builder team if we end up changing how sourceLocation works, etc.  Also would be good if we added metadata.xml for the CSS versions.
    Modified Paths:
        flex/sdk/trunk/samples/themes/arcade/build.xml
        flex/sdk/trunk/samples/themes/cobalt/build.xml
        flex/sdk/trunk/samples/themes/graphite/build.xml
        flex/sdk/trunk/samples/themes/zen/build.xml
    Added Paths:
        flex/sdk/trunk/samples/themes/arcade/src/metadata.xml
        flex/sdk/trunk/samples/themes/cobalt/src/metadata.xml
        flex/sdk/trunk/samples/themes/graphite/src/metadata.xml
        flex/sdk/trunk/samples/themes/zen/src/metadata.xml

    Note the last paragraph in the original post which explains how Flickr handles resolution changes without breaking the rectangles. Perhaps a more straightforward approach would be to store both the rectangle coordinates for each rectangle AND the image's width and height at the time the rectangles were created. Then if the image is scaled, the rectangles can be scaled accordingly. For example, if a rectangle is at x=100,y=200,w=50,h=70, the "original dimensions" are 1000x2000, and the image's current dimensions are 500x1000, then an application could assume the image has been scaled down by (500/1000=) 0.50, and so the x,y,w,h of each rectangle could also be multiplied by 0.50 (x=50,y=100,w=25,h=35). I'd recommend storing floating-point values so that multiple scalings don't make the rectangles "creep".
    Of course, it is possible that really the image was cropped rather than scaled, but fairly unlikely you would happen to crop it the same percent in both directions. Even if an image is cropped, someone could manually repair the rectangles by sliding and scaling them until the fit back on the faces (unless most of the faces were cropped off).
    A rectangle-aware application could scale and translate the rectangles during a crop or scaling operation, but other applications could still survive scaling if they at least preserve the XMP tags as-is.

  • [svn:osmf:] 14357: Moved constants for namespace ( also added a version number to the namespace) and the metadata key to the MASTPluginInfo class so these constants can be used from player code .

    Revision: 14357
    Revision: 14357
    Author:   [email protected]
    Date:     2010-02-23 09:41:57 -0800 (Tue, 23 Feb 2010)
    Log Message:
    Moved constants for namespace (also added a version number to the namespace) and the metadata key to the MASTPluginInfo class so these constants can be used from player code.
    Modified Paths:
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/MASTPluginInfo.as
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/media/MASTProxyElement.as

    Revision: 14357
    Revision: 14357
    Author:   [email protected]
    Date:     2010-02-23 09:41:57 -0800 (Tue, 23 Feb 2010)
    Log Message:
    Moved constants for namespace (also added a version number to the namespace) and the metadata key to the MASTPluginInfo class so these constants can be used from player code.
    Modified Paths:
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/MASTPluginInfo.as
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/media/MASTProxyElement.as

  • "unknown namespace URI" during schema registration

    I have an XML containing other XMLs, grouping them together. The contained XMLs namespaces are different.
    Anybody knows a way to register such an xml? (Except including the schemas into each other. I don't have the oppurtunity to change the xmls.)
    Here is the example:
    First the xml instance:
    <?xml version="1.0" encoding="UTF-8"?>
    <variables xmlns="http://www.wildom.com/neaddfel/2612">
    <folder_form_2613>
    <variables xmlns="http://www.wildom.com/neaddfel/2613">
    <form.id>4520</form.id>
    <form.type>folderform</form.type>
    <form.type_id>2613</form.type_id>
    <form.type_name>teszteset</form.type_name>
    <form.xslt>null</form.xslt>
    <t_comment/>
    <t_input>2222222222222222222222</t_input>
    </variables>
    </folder_form_2613>
    <folder_form_2614>
    <variables xmlns="http://www.wildom.com/neaddfel/2614">
    <form.id>4520</form.id>
    <form.type>folderform</form.type>
    <form.type_id>2613</form.type_id>
    <form.type_name>teszteset</form.type_name>
    <form.xslt>null</form.xslt>
    <t_comment/>
    <t_input>2222222222222222222222</t_input>
    </variables>
    </folder_form_2614>
    <folder.company_address_city>Bp.</folder.company_address_city>
    <folder.company_address_id>TuzeŠr utca 42.</folder.company_address_id>
    <folder.company_address_zip>1122</folder.company_address_zip>
    <folder.company_id>522</folder.company_id>
    <folder.company_name>Breona kft.</folder.company_name>
    <folder.hir_id>null</folder.hir_id>
    <folder.id>4521</folder.id>
    <folder.type_id>2612</folder.type_id>
    <folder.type_name>FSDTGSH</folder.type_name>
    <folder.userid>602</folder.userid>
    <folder.username>[email protected]</folder.username>
    <folder.xslt>FSDTGSH</folder.xslt>
    </variables>
    Now the xsds:
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.wildom.com/neaddfel/2613" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="variables" type="ns:variablesType" xmlns:ns="http://www.wildom.com/neaddfel/2613"/>
    <xs:complexType name="variablesType">
    <xs:sequence>
    <xs:element type="xs:string" name="form.id"/>
    <xs:element type="xs:string" name="form.type"/>
    <xs:element type="xs:string" name="form.type_id"/>
    <xs:element type="xs:string" name="form.type_name"/>
    <xs:element type="xs:string" name="form.xslt"/>
    <xs:element type="xs:string" name="t_comment"/>
    <xs:element type="xs:string" name="t_input"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.wildom.com/neaddfel/2614" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="variables" type="ns:variablesType" xmlns:ns="http://www.wildom.com/neaddfel/2614"/>
    <xs:complexType name="variablesType">
    <xs:sequence>
    <xs:element type="xs:string" name="form.id"/>
    <xs:element type="xs:string" name="form.type"/>
    <xs:element type="xs:string" name="form.type_id"/>
    <xs:element type="xs:string" name="form.type_name"/>
    <xs:element type="xs:string" name="form.xslt"/>
    <xs:element type="xs:string" name="t_comment"/>
    <xs:element type="xs:string" name="t_input"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="http://www.wildom.com/neaddfel/2612" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="variables" type="ns:variablesType" xmlns:ns="http://www.wildom.com/neaddfel/2612"/>
    <xs:complexType name="folder_form_2614Type">
    <xs:sequence>
    <xs:element ref="ns:variables" xmlns:ns="http://www.wildom.com/neaddfel/2614"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="variablesType">
    <xs:sequence>
    <xs:element type="ns:folder_form_2613Type" name="folder_form_2613" xmlns:ns="http://www.wildom.com/neaddfel/2612"/>
    <xs:element type="ns:folder_form_2614Type" name="folder_form_2614" xmlns:ns="http://www.wildom.com/neaddfel/2612"/>
    <xs:element type="xs:string" name="folder.company_address_city"/>
    <xs:element type="xs:string" name="folder.company_address_id"/>
    <xs:element type="xs:string" name="folder.company_address_zip"/>
    <xs:element type="xs:string" name="folder.company_id"/>
    <xs:element type="xs:string" name="folder.company_name"/>
    <xs:element type="xs:string" name="folder.hir_id"/>
    <xs:element type="xs:string" name="folder.id"/>
    <xs:element type="xs:string" name="folder.type_id"/>
    <xs:element type="xs:string" name="folder.type_name"/>
    <xs:element type="xs:string" name="folder.userid"/>
    <xs:element type="xs:string" name="folder.username"/>
    <xs:element type="xs:string" name="folder.xslt"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="folder_form_2613Type">
    <xs:sequence>
    <xs:element ref="ns:variables" xmlns:ns="http://www.wildom.com/neaddfel/2613"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    As you can see, the last xsd only refers to the "variables" element in the first two.
    When I register this xsd with:
    DBMS_XMLSCHEMA.RegisterSchema(schemaurl=>'http://www.wildom.com/neaddfel/2612',schemadoc=>acctschema,local=>false,gentypes=>true,genbean=>FALSE,gentables=>true,force=>false,owner=>'neaddfel_xml');
    I've got the error:
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00023: unknown namespace URI "http://www.wildom.com/neaddfel/2614"
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 3
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 14
    ORA-06512: at line 35
    Is there any way to tell to XDB to use the first two xsd? I would like to store the contained xmls in the tables generated by the registration of the first two xsds.
    I think I need a registerschema syntax that accepts multiple source xsd schemaurls...
    Like in some validation APIs where one can define multiple xsds to validate the xml against...
    Any idea?
    TIA: gviczai

    Normally when you get an error like " "unknown namespace URI" during schema registration " you encountered one of the following issues:
    - The namespace is not registered in the XMLDB repository
    - The namespace is registered, but can not be found on the referred location
    - The namespace is registered, but you don't have the needed privileges to call it
    - You refer to an URI outside the database, which is not allowed (URI's must be registered in the repository)

  • Am I Installing the Metadata UI Package Correctly?

    I downloaded the XMP Metadata UI SDK CC 2014 and per the instructions in the pdf, "To see the results of these definitions in an Adobe application, install the Metadata UI Extension package
    in one of the user-specific or general shared resource folders:" I copied (although the instructions say install) these files:
    loc folder
    schema folder
    view folder
    manifest.xml
    to both of these locations:
    WINDOWS: [user]\AppData\Roaming\Adobe\XMP\Metadata Extensions
    C:\Program Files (x86)\Common Files\Adobe\XMP\Metadata Extensions
    Then launched Photoshop, chose File -> File Info
    And I see nothing new in the File Info panel.
    What am I missing?
    Thanks,

    Thanks for the reply Jörg,
    I have now place theses files:
    loc folder
    schema folder
    view folder
    manifest.xml
    in a sub-directory called padam as you mentioned, so the full path is:
    WINDOWS: [user]\AppData\Roaming\Adobe\XMP\Metadata Extensions\padam\...
    I have not made any changes to the files in the loc, schema, view folders, or to the manifest.xml I downloaded from the Adobe website.
    I still see nothing when I bring up the FileInfo panel in Photoshop.
    Are there other changes I would need to make in order to see the sample extension show up in Photoshop?
    For example, would I need to somehow change the locFilePrefix in the manifest.xml file?
    <extension xmlns="http://ns.adobe.com/metadata/extension/1.0/"
       name="com.adobe.sample.extension"
       version="1.0"
       locFilePrefix="sample">
    </extension>
    Also, in the sampleSchema.xml, would I have to change any of these items in bold:
    <xmp_schema prefix='sampleSchema' namespace='http://my.sampleSchema.namespace/' label='Sample Schema for Demonstration' description='This example demonstrates how a new schema can be created'>
    <xmp_property name='Boolean' category='external' type='boolean' label="$$$/sampleSchema/Property/BooleanInputLabel=Boolean Field1"  description='$$$/sampleSchema/Property/BooleanInputDescription=Defining Boolean data type'/>
    Are there other things I'll have to change in the view folder to get the sample to work?
    I guess when I downloaded the SDK and saw "Sample Extension", I was expecting it to work with no interaction on my part just to see the sample. Obviously, I knew I'd have to alter everything to make my own Custom extension.
    Thanks for any help you can provide, I really appreciate it!
    - Bill

Maybe you are looking for

  • Help, Firefox keeps crashing. Firefox version 20.0, how do I fix this?

    Hi, I had Firefox version 19.0, and it occurred an error which caused Firefox to crash. I followed the troubleshot steps, and started it up on Safe mode, and I got a message saying "The connection has timed out". I browsed the forums for a while for

  • I can't see my photos! They appear as dotted lines in a square shape.

    when i click on my library or any of the subfolders, most of my photos aren't showing up. i know the image is still there, but i can't see it. instead of a thumbnail pix, there is just a white dotted line in the shape of a square where the pix should

  • Cannot download reader - missing plugin

    HI! I can no longer seem to download adobe reader http://get.adobe.com/reader/ when I click on the link "Download Now" I get "install missing plugin" at the top of my page. if I click on the install missing plugin button the search finder cannot find

  • Lost calendar 2 years in a row

    For the second year, I have lost all my calendar events. I have upgraded the OS twice. I have reset the iPad by holding the two buttons. Not sure if either of those things erased it. Very frustrating. Had important dates for events at work.

  • Mavericks Save As function gone!!

    This is the first time I've written in one of these but I'm so frustrated by Mavericks!  I updated and everything that I knew before has changed and has slowed my whole work load down.  First off.......where the **** is the "Save As" funciton now for