Wrong .xml file

Need a patch for the filmmaker. I have a corrupt for transitions .xml file... can not find the problem. If I could just reinstall I, but can not find the download.

Need a patch for the filmmaker. I have a corrupt for transitions .xml file... can not find the problem. If I could just reinstall I, but can not find the download.

==================================
You run Windows XP, Movie Maker 2.1?

More details please.

What was the source of the corrupted XML file?

What is the error dialog box?

The following links may be worth a visit:

Perhaps the following will offer
a few ideas:

Movie Maker 2 - lost effects
and the Discussion of Transitions
http://www.windowsmoviemakers.NET/forums/ShowPost.aspx?PostID=25682

What can I do if I move to Windows
XP SP2, and Windows Movie Maker 2.1
is not installed successfully?
http://blogs.msdn.com/deanro/Archive/2005/01/18/355050.aspx

Tags: Windows

Similar Questions

  • The attached VI works when I run it initially to create the XML file, but by pressing once the XML file is created, it is not up-to-date. What I am doing wrong?

    The attached VI works when I run it initially to create the XML file, but when I change the data and run once the XML file is created, it is not updated with new data. What I am doing wrong?

    Thank you.

    It sounds like the logic that has been written in VI

    Internal decision of true / false:

    (file exists: false) write in the file XML, unflatten for display

    (file exists: true) read the XML file, unflatten for display

    At no time when the file exists (true case) is the XML file updated...

  • XML file does not appear if it is a local file and XSLT file is on a server.

    If I have a local XML file with a XSLT file local XML file is displayed as expected. If the two files are on my server again that the XML file is displayed correctly. However if the XML file is local and the XSLT file is on the server (and the XML file points to the file on the server) I get the following error:

    Error loading stylesheet: an unknown error occurred (805303f4)

    Using Firefox on a Mac 41.0.1.

    This problem does not occur on Safari

    No idea where I'm wrong? Research on the web there are suggestions about changing the mime, but'm not 100% sure what to do about it. In

    Thank you

    Brian

    Guigs. Thanks for the information.

    After doing some digging, I found this page:

     http://enable-cors.org/server_apache.html
    

    Following these tips, I added an .htaccess file in the directory on the server that contains my .xslt file, which contains the line:

       Header set Access-Control-Allow-Origin "*"
    

    And that seems to have solved my problem for Firefox!

    Does not seem to solve the problem on Internet Explorer, but suspect it's a problem for another day (and maybe another forum).

  • Extracting XML error. The XML file that is assigned in the configuration.xml is either incorrect or damaged.

    1. some web pages gives "error extracting XML. The XML file that is assigned in the configuration.xml is wrong or corrupt.

    2 Youtube gives, after having pressed the button start, message "an error has occurred. Please try again later.
    Even youtube opening page with IE, there is no problem.

    3. scrolling on Mozilla firefox pages only works with the sidebar not with the mouse wheel.

    Other user accounts on this computer is not these problems.

    BR Juha

    This can be caused by a recent update of Flash 11.3.

    See:

  • Need help with the help of an xml file for changes in the system profile

    I'm looking to accelerate the deployment of new rack-mounted servers by updating their server through xml import profile information and I'm stuck.

    I am able to successfully export the profile as an XML to NFS.

    I'm not having luck changing data to import.

    My first attempt great base is simply by changing the name of drac.

    Here are the contents of the xml file that I am trying to import:

    ");" >
    laboratories-001-dev-a01 - dc1.example .net
    The job fails.

    Any ideas on what I am doing wrong?

    Hi Martin,

    I found my problem.

    In the GUI, you can enter a COMPLETE domain like something.example.com name in DNS Rac name field.

    Who will fail via importing a racadm as apparently a. is not allowed during the updating of the attribute "NIC.1 #DNSRacName".

    Is this a bug of the DRAC?

  • backgroundImage to different resolutions in the config.xml file

    each mobile has within the config.xml file and different screen resolutions, we can change the images according to the resolutions like this

    
    

    but in my case, it always uses "StartUpScreen.png".

    what I am doing wrong?

    why it gets correct resolution image?

    I use the Simulator to blackberry 9700 (screen resolution 480 x 360)

    BlackBerry plugin - 2.5.1.2 Webworks... Version

    BlackBerry Webworks SDK plugin - 1.5.1.2. Version

    Version of the OS - 5.0.0.680

    This post is actually tim it would be great IF we had something like that. Unfortunately we do not have

  • Generation of XML files in oracle procedure

    I have to generate a SQL query as XML files:

    • If the number of records in the query result exceeds 40 000 then the data must be divided into two XML files with different file names.

    Following XML file format:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <EMP_INFO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <EMP>
      <CR_NO>12345678</CR_NO>
      <EMPLOYER_NAME>ABC</EMPLOYER_NAME>
      <ID_NO>12345678</ID_NO>
      <EMPLOYEE_NAME>ABC</EMPLOYEE_NAME>
      </EMP>
      <EMP>
      <CR_NO>12345678</CR_NO>
      <EMPLOYER_NAME>XYZ</EMPLOYER_NAME>
      <ID_NO>12345678</ID_NO>
      <EMPLOYEE_NAME>ABC</EMPLOYEE_NAME>
      </EMP>
    </EMP_INFO>
    
    
    
    • Also, an XML file will contain information from XML file with the number of records in each file:
    <?xml version="1.0" encoding="utf-8"?>
    <Files>
      <File>
        <FileName>ABCD071120130001.xml</FileName>
        <CountOfRecords>499</CountOfRecords>
      </File>
    
    
      <File>
        <FileName>ABCD071120130002.xml</FileName>
        <CountOfRecords>9</CountOfRecords>
      </File>
    
    
    </Files>
    
    
    

    My PL SQL procedure follows, but throws an error:

    CREATE OR REPLACE PROCEDURE P_DATAXML AS
    BEGIN
    
      DECLARE
        XML_PROLOG    CLOB := '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>';
        xml_header    clob;
        xml_trailer   clob;
        tmp_xml       clob;
        tmp_file      clob;
      
        CURSOR C_REC IS  
        SELECT XMLELEMENT("EMP_INFO",
                                XMLELEMENT("CR_NO", "1234" ),
                                XMLELEMENT("EMPLOYER_NAME", "ABC" ),
                                XMLELEMENT("ID_NO", "9876541" ),
                                XMLELEMENT("EMPLOYEE_NAME", "XYZ" )
                 ).GETCLOBVAL() AS DATA_XML
               
          FROM TABLES;
      
      BEGIN
    
        -- create the temporary clob :
        DBMS_LOB.CREATETEMPORARY(TMP_FILE, TRUE);
      
        -- fetch records
        for r in C_REC loop
          DBMS_LOB.append(TMP_FILE, xml_prolog);
          DBMS_LOB.append(TMP_FILE, r.DATA_XML);
        end loop;
    
    
        -- write file to directory :
        dbms_xslprocessor.clob2file(TMP_FILE, 'CDIR', 'test.xml', nls_charset_id('AL32UTF8'));
        dbms_lob.freetemporary(TMP_FILE);
    
      END;
    
    END P_DATAXML;
    
    
    

    After my initial coding, I get the error made his first appearance on "dbms_xslprocessor.clob2file":

    ORA-21560: 3 argument is null, invalid or out of range

    ORA-06512: at "SYS." DBMS_LOB", line 991

    ORA-06512: at "XDB". DBMS_XSLPROCESSOR', line 324

    What could be wrong?

    You were on the right track. Continue to use SQL/XML, in special XML files XMLAGG logical global functions.

    The following should answer your initial needs.

    For this demonstration, I used resources. Table EMPLOYEES and a batch size of 100. It generates three files, 'file0001.xml' (100 records), "file0002.xml" (7 records) and a summary file:

    DECLARE

    file_desc_array xmlsequencetype: = xmlsequencetype();

    CLOB file_desc_xml;

    prolog1 CLOB: = '';

    prolog2 CLOB: = '';

    BEGIN

    for r in)

    Select xmlserialize (document

    XmlElement ('method'

    , xmlattributes ("http://www.w3.org/2001/XMLSchema-instance" under the name "xmlns: xsi" "")

    xmlagg)

    XmlElement ("EMP"

    xmlelement ("ID_NO", e.employee_id)

    , xmlelement ("EMPLOYEE_NAME", select)

    )

    )

    )

    ) as xmldoc

    --< generating="" summary="" record="">

    xmlelement ("file",

    xmlelement ("filename",

    , "file" | TO_CHAR (trunc ((rownum-1)/100) + 1, "fm0999"). ".xml".

    )

    xmlelement ("CountOfRecords", Count

    ) as file_desc

    -->

    , "file" | TO_CHAR (trunc ((rownum-1)/100) + 1, "fm0999"). '.xml' as file name

    of e hr.employees

    Group of trunc ((rownum-1)/100)

    )

    loop

    dbms_xslprocessor.clob2file (prolog1 | r.xmldoc, 'TEST_DIR', r.filename, nls_charset_id ('AL32UTF8'));

    file_desc_array.extend;

    file_desc_array (file_desc_array. (Last): = r.file_desc;

    end loop;

    Select xmlserialize (document

    XmlElement ("Files", xmlagg (column_value))

    )

    in file_desc_xml

    table (file_desc_array);

    dbms_xslprocessor.clob2file (prolog2 | file_desc_xml, 'TEST_DIR', 'summary.xml', nls_charset_id ('AL32UTF8'));

    END;

    /

  • How to download new products from my store in an XML file?

    Hi everyone, I'm back. I've created a store for a client and we have everything works but someone told me that it is easier to download products in an XML file if you have a ton of them. So I tried to understand, but the only thing I can find on the internet, it's that I'm doing it wrong.

    Here's what I do:

    Under "E-commerce" on the left, click on 'Products' and then on this page, I click on "import". I clicked on "Download Import Template" and when I opened it the first thing I noticed, is that it isn't a .xml file. It is a .xls file (don't know if that makes a difference). The second thing I noticed is that he has confused me more than I expected. There are 7 tab on this document and I can find no explanation for the way they set up this document. The 7 tabs just for ease of Adobe he explain to the customer/user? or I have to configure my document in this way until I can download products?

    Because I really didn't know what I was doing, I did it as much as I have and then tried to download. I clicked on "Choose file" in the "File to import" section and select "Auto-Detect" for the file type. I click Next at the bottom of the page and it gave me this message

    «ERROR: [No Name found].» "Mandatory (Processus a échoué sur le dossier d'importation: [2] s'il vous plaît assurer colonnes 1) are present, 2) all products have product Codes defined, which must be unique (if the importation of goods)"

    I have fixed everything that I could and tried everything a hundred times but still get this same error message. If anyone can help I would love you forever, even if you can point me to a place on the web that would help.

    Thank you very much in advance for any help. See you soon.

    Hello. Don't do no XML - it's a spreadsheet, the information needs to go as required in the fields in the right format.

    If the documentation of the BC doesn't make any sense to you is better to create a product in admin. Fill in as many things as possible - maybe the dummy data. That export and you will have a complete example of what to put in the worksheet.

  • XML file reading problems

    Hi all

    I have trouble reading the XML file. I think I did the request of right except the return results are empty and I don't know why?

    Version = database Oracle 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    XML file: E_table_export_CES.xml

    <? XML version = "1.0" encoding = "UTF - 8"? >
    < RESULTS >
    < ROW >
    < COLUMN NAME = "ID" > 12688f8ac8aa6310VgnVCM10000078ccc70a___ < / COLUMN >
    < COLUMN NAME = "BRANCH_NAME" > Brooklyn < / COLUMN >
    < / ROW >
    < / RESULTS >

    CREATE DIRECTORY XMLDIRX AS ' / DBMS/xml ";

    The query I use:

    Select *.
    FROM xmltable ('* / ROW ')
    from XMLTYPE (bfilename ('XMLDIRX', 'E_table_export_CES.xml'), NLS_CHARSET_ID ('UTF8'))
    columns
    'ID' VARCHAR2 (200) path '@ID '.
    , Path of varchar2 (25) "BRANCH_NAME'"@BRANCH_NAME ".
    ) xtbl

    I'm back columns ID and Branch_Name, but the line is empty. Just do not know what I am doing wrong. Any help would be greatly appreciated!

    Hello

    I'll try to move things to see if I can recover the data, but any help would be appreciated.

    Do not try things randomly, it's all logic very :)

    SQL> select x.*
      2  from xmltable(
      3         '/RESULTS/ROW'
      4         passing xmltype(bfilename('TEST_DIR', 'E_table_export_CES.xml'), nls_charset_id('AL32UTF8'))
      5         columns
      6           "ID"          varchar2(200) path 'COLUMN[@NAME="ID"]'
      7         , "BRANCH_NAME" varchar2(25)  path 'COLUMN[@NAME="BRANCH_NAME"]'
      8       ) x ;
    
    ID                                                                               BRANCH_NAME
    -------------------------------------------------------------------------------- -------------------------
    12688f8ac8aa6310VgnVCM10000078ccc70a____                                         Brooklyn
     
    

    The main XQuery retrieves each ROW as a sequence, then each element of this sequence is passed to the COLUMNS clause to be broken as distinct relational columns, depending on the specified path expression.
    [For example, the path "COLUMN[@NAME="ID "]' means: extract the child node of COLUMN (of LINE) whose NAME attribute value is 'ID', and since specify us a scalar data type for the projection, the actual value - in this case, the text() - of the COLUMN element node is returned.

  • Change in the web.xml file is lost after build

    Hello

    I have a problem with the web.xml file. There is a servlet called ordDeliverMedia which, by default, refers to the class oracle.jheadstart.ord.html.OrdPlayMediaServlet in the web.xml file. I have change the default class to the mine, do you say, app.util.MyOrdPlayMediaServlet. Now, when I generate one of the services in the definition of JHs editor request changes to this article are lost and yet once done ordDeliverMedia refers to its default value, i.e., oracle.jheadstart.ord.html.OrdPlayMediaServlet. I wonder that changes to other topics such as the Faces Servlet or resources are not lost. What's wrong?

    In any case, I've migrated from JDev 11.1.1.4 JHs - JHs 11.1.1.3.35 to JDev 11.1.2.3 - 11.1.2.1.28

    See you soon,.
    Will do

    Will do,

    Unfortunately, we only check if the servlet class is not set to the JHeadstart one, we should add a check if the servlet class is set to a custom class and therefore leaves intact.
    We'll put that on the list to fix for the next version, for now, I fear, you must cancel the web.xml file changes before you check it into source code control system.

    Steven Davelaar,
    JHeadstart team.

  • Error loading XML file in the column of XMLTYPE through SQL loader

    Hi gurus,

    I am trying to load the XML file into the column of XMLTYPE through SQL Loader but the errors themselves. Here are the details

    Databases
    SQL*Plus: Release 10.2.0.3.0 - Production on Tue Jul 24 17:17:55 2012
    
    Copyright (c) 1982, 2006, Oracle.  All Rights Reserved.
    
    
    Connected to:
    Oracle Database 10g Release 10.2.0.3.0 - 64bit Production
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Release 10.2.0.3.0 - 64bit Production
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for Linux: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    The table structure
    CREATE TABLE TH_XML
    (
      COL_ID_1   VARCHAR2(100 BYTE),
      IN_FILE_1  XMLTYPE
    )
    XMLTYPE IN_FILE_1 STORE AS CLOB (TABLESPACE SMDAT)
    XML (simple.xml) file
    <?xml version="1.0"?>
     <catalog> 
     <book id="bk101"> 
               <author>Some Author1</author> 
               <title>Some Title1</title> 
               <genre>Computer</genre> 
               <price>44.95</price> 
               <publish_date>2000-10-01</publish_date> 
               <description>creating applications</description> 
       </book> 
       <book id="bk112"> 
               <author>Some Author2</author> 
               <title>Some Title2</title> 
               <genre>Computer</genre> 
               <price>49.95</price> 
               <publish_date>2001-04-16</publish_date> 
               <description>Microsoft Visual Studio 7 is explored in depth</description> 
    </book> 
    </catalog>
    Control file
    LOAD DATA
    INFILE 'c:\simple.xml'
    APPEND
    INTO TABLE TH_XML 
    XMLTYPE(in_file_1)
    (
    col_id_1 filler  CHAR (100),
    in_file_1 LOBFILE(CONSTANT "c:\simple.xml") TERMINATED BY EOF
    )
    LOG file
    SQL*Loader: Release 10.2.0.3.0 - Production on Tue Jul 24 16:42:25 2012
    
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    
    Control File:   c:\my_file.ctl
    Data File:      c:\simple.xml
      Bad File:     c:\simple.bad
      Discard File:  none specified
     
     (Allow all discards)
    
    Number to load: ALL
    Number to skip: 0
    Errors allowed: 50
    Bind array:     64 rows, maximum of 256000 bytes
    Continuation:    none specified
    Path used:      Conventional
    
    Table TH_XML, loaded from every logical record.
    Insert option in effect for this table: APPEND
    
       Column Name                  Position   Len  Term Encl Datatype
    ------------------------------ ---------- ----- ---- ---- ---------------------
    COL_ID_1                            FIRST   100           CHARACTER            
      (FILLER FIELD)
    IN_FILE_1                         DERIVED     *  EOF      CHARACTER            
        Static LOBFILE.  Filename is c:\simple.xml
    
    Record 1: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 2: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 3: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 4: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 5: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 6: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 7: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 8: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 9: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 10: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 11: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 12: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 13: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 14: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 15: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 16: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 17: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 18: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 19: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 20: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 21: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 22: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    Record 23: Rejected - Error on table TH_XML.
    ORA-00904: "SYS_NC_ROWINFO$": invalid identifier
    
    
    Table TH_XML:
      0 Rows successfully loaded.
      23 Rows not loaded due to data errors.
      0 Rows not loaded because all WHEN clauses were failed.
      0 Rows not loaded because all fields were null.
    
    
    Space allocated for bind array:                    256 bytes(64 rows)
    Read   buffer bytes: 1048576
    
    Total logical records skipped:          0
    Total logical records read:            23
    Total logical records rejected:        23
    Total logical records discarded:        0
    
    Run began on Tue Jul 24 16:42:25 2012
    Run ended on Tue Jul 24 16:42:26 2012
    
    Elapsed time was:     00:00:00.23
    CPU time was:         00:00:00.05
    I get error ORA-00904: "SYS_NC_ROWINFO$": invalid identifier in the logfile (mentioned above). Could someone help me know where I am doing wrong?

    Thanks in advance.

    Published by: 876991 on 24 July 2012 14:18

    Hello

    This remove the control file:

    XMLTYPE(in_file_1)
    

    It is used only if the target table is an array of XMLType object.

    For an XMLType column LOBFILE is sufficient, for example:

    LOAD DATA
    INFILE *
    APPEND INTO TABLE TH_XML
    (
     col_id_1  CHAR (100),
     in_file_1 LOBFILE(CONSTANT "c:\simple.xml") TERMINATED BY EOF
    )
    begindata
    MYID1
    

    It tells SQL * Loader data consisting of one record with COL_ID_1 = "MYID1" and content = "c:\simple.xml" IN_FILE_1

    SQL> CREATE TABLE TH_XML
      2  (
      3    COL_ID_1   VARCHAR2(100 BYTE),
      4    IN_FILE_1  XMLTYPE
      5  );
    
    Table created.
    
    SQL> host sqlldr control=test.ctl
    Username:dev
    Password:
    
    SQL*Loader: Release 11.2.0.2.0 - Production on Mer. Juil. 25 01:30:46 2012
    
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    
    Commit point reached - logical record count 1
    
    SQL> set long 5000
    SQL> column col_id_1 format a15
    SQL> select * from th_xml;
    
    COL_ID_1        IN_FILE_1
    --------------- --------------------------------------------------------------------------------
    MYID1           
                     
                     
                               Some Author1
                               Some Title1
                               Computer
                               44.95
                               2000-10-01
                               creating applications
                       
                       
                               Some Author2
                               Some Title2
                               Computer
                               49.95
                               2001-04-16
                               Microsoft Visual Studio 7 is explored in depth
                    
     
    
  • Export release build, not including data XML files in the apk package

    Hi, all.

    I have a flash pro project I packed for AIR according to these steps:

    http://Renaun.com/blog/2011/09/using-Flash-builders-mobile-workflow-with-Flash-professiona l-projects.

    There are two differences:

    1. I am loading XML from right next to the swf files
    2. The Flash Pro project and the project Mobile share a directory that is outside of these two projects (this was the workflow already established in the public Service, given that several sovereign wealth funds share the same XML file).

    When I test this on my phone, it adds the XML files to the apk and everything works great. The problem I have is that the export Release Build does not include XML files, and I don't see anything in the Flash Builder interface that looks like it will allow me to add more files than the swf file and the app.xml.

    android.png

    What Miss me?

    Love - your comments helped me to think about this and get to the essential part that missed me. I've marked it useful, because it has shown the way.

    I'm not a big fan of scoring own "correct" answers, but I'll do this time so that people can easily find the steps.

    The error I thought that the "Debug on the device" was wrong to get an AIR debug version, because the swf file was not a debug swf.

    I did not understand that if I clicked on the button run, it would also be a version out to push to the unit, and that this version would not give the message "waiting to connect to the debugger.

    The entire process that you get when you click on 'Run' is a little weird (I say this to those who have never tried). It will install the application on the device, but does not launch (I think that this is impossible). Flash Builder crashes and then in "Installation application to the device. If you look at the screen, you will see a new download in your notifications bar, and from here you can launch the application.

    To summarize:

    1. To start your swf Flash Pro package for Air using Flash Builder, follow the steps in Renaun (http://renaun.com/blog/2011/09/using-flash-builders-mobile-workflow-with-flash-professiona l-projects /)
    2. Doing this work on Mobile, you have probably installed on your phone in debug version. This uninstall using Astro File Manager (https://play.google.com/store/apps/details?id=com.metago.astro&hl=en)
    3. Instead click the "Debug" button in Flash Builder, click on 'run '. This makes an apk without debugging and pushed back them to your phone (if your Setup allows debugging of the device).

    Additional notes: If you have xml files that are packaged in the apk file and you are using URLLoader (because the app originated as a web application), add "app: /" at the beginning of the URL string you use. Thus, "xml/myFile.xml" becomes "app:/xml/myFile.xml". If you need to keep your original web application logic, add a conditional on Capabilities.playerType == "Desktop. »

    Hope this helps someone else with the same problems

  • Structure of hybrid data - relational &amp; structural using the XML file

    Hello world
    I do not understand this conceptualization of the XMLDB maybe not for what and how it was designed for.

    I have 100 000 (Mutual Funds) XML files I loaded in the DB Table (XMLType column). (Each XML file is 5 KB of data)
    Now, I want to write a SICAV in which I can put 20 different search criteria. (e.g. Type of Fund, Star, ranking etc etc.)
    (I paginated resultset to 100 lines per page)

    Initially approach I took was to write the XML query using the extractValue function. However, when the results of the research in most large result set, time needed to return query results is huge. Especially at page 100, etc..

    As a hybrid approach, when XMLs are loaded into DB, I want to store 20 attributes in separate table and all XML in a separate table.
    and when extractValue queries are written to what ORACLE automatically re-writes of applications to use the flat table when it is made reference to specific attributes otherwise it load the XML table.

    Suggestions box will be greatly appreciated, if not I can always write queries to load a separate table and query it for the purposes of the screen.

    856584 wrote:
    Hello world
    I do not understand this conceptualization of the XMLDB maybe not for what & how it was designed for.

    I was conceived to manage XML, nothing more, nothing less.

    I have 100 000 (Mutual Funds) XML files I loaded in the DB Table (XMLType column). (Each XML file is 5 KB of data)
    Now, I want to write a SICAV in which I can put 20 different search criteria. (e.g. Type of Fund, Star, ranking etc etc.)
    (I paginated resultset to 100 lines per page)

    Which version of the database (all the numbers please)?

    Probably you have chosen the wrong "XMLType" storage model (and therefore no performance)
    Read here:
    http://www.Oracle.com/technetwork/database/features/xmldb/xmlchoosestorage-v1-132078.PDF

    Initially approach I took was to write the XML query using the extractValue function. However, when the results of the research in most large result set, time needed to return query results is huge. Especially at page 100, etc..

    As a hybrid approach, when XMLs are loaded into DB, I want to store 20 attributes in separate table and all XML in a separate table.
    and when extractValue queries are written to what ORACLE automatically re-writes of applications to use the flat table when it is made reference to specific attributes otherwise it load the XML table.

    Suggestions box will be greatly appreciated, if not I can always write queries to load a separate table and query it for the purposes of the screen.

    Read the given URL/pdf first.

  • Problem with Framemaker 9 Dita XML Files in Framemaker 10

    I just upgraded to Framemaker 10. I meet a number of problems when trying to work with my help of Dita XML topics, that were last saved in Framemaker 9.

    1. using the default Dita model

    When I open one of my documents in Framemaker 10, the Dita 1.2 model ditabase.fm is automatically applied. Everything seems fine. But then when I convert the XML using Eclipse (which is essentially the html, so we go from XML to HTML format) using Dita Open Toolkit ant scripts, I see this message:

    [pipeline] [DOTJ013E] [ERROR] failed to parse the referenced file 'html\c_licensing.xml' cause from under exception. Please correct the base on the exception message reference.
    [pipeline] c_licensing.xml 25:Attribute 'xmlns:ditaarch' of the line must be declared for the element type "dita".

    Then, I opened the xml file in a text editor, and I saw this on line 25:

    < dita xmlns:ditaarch = "http://dita.oasis-open.org/architecture/2005/" > ""

    25 line seems to me. Am I missing something?

    2 go to a model of Dita 1.1

    I tried to get around the above problem. In Framemaker, I tried to put another structured as the default application. I closed all files and choose the structured Dita 1.1 application default (it defaults to the Dita 1.1. Composite app.)

    Then I tried to open my file: I got this message inside Framemaker:

    'Failed XML validation. Continue?
    Error to the [path of ACCESS], line 25, tank 72, Message: attribute ' {http://www.w3.org/2000/xmlns/} ditaarch' is not declared for the element "dita"

    Sounds familiar, isn't?

    I went from Dita 1.1 by default. Composite application structured with the Dita 1.1. Application of structured theme. Then I messed the source file and saved. The messages that I got in the FrameMaker log window included one above, plus I had a variety of messages to unknown element, things like:

    Element unknown dita.

    notion of unknown element,

    various attributes are not reported for concept,

    element unknown conbody.

    If I go to the Dita 1.1 mash all these messages diappear except this one:

    Attribute ' {http://www.w3.org/2000/xmlns/} ditaarch' is not declared for the element "dita"


    My conversion scripts of Ant in the Dita Open Toolkit are still unable to process this file. They give the same message as above in (1) and the file is not converted to HTML.


    Can someone help me with this problem? I also posted this question in the Group of users of Dita on Yahoo Groups. If I get an answer in one place, I'll post it in the other.

    Thank you

    Nina P.

    [transferred to dita-users]

    Hi Nina...

    The xmlns:ditaarch attribute must be the "topic" not dita root element. If demand for FM10 structure is the award that it is wrong. You create composite themes (multiple topics in a single file under the root of dita)? If this isn't the case, you can get rid of the total dita element and who can "solve" the problem.

    The first mistake you get (#1) says that the xmlns:ditaarch attribute must be declared (that is, defined in the DTD)... It's not (because it is not supposed to be there (as I know). This is not to say that it must be declared in the DITA file.

    Even for the #2 error... the composite 1.1 app is apparently set up correctly, so it's saying the same thing that the Old Testament said... "you have this attribute in the XML file, but it is not declared in the DTD.

    Your subsequent error on the missing items is because you spent in the "topic" DTD, who does not know the dita element or elements based on concepts.

    If you can unpack your files dita element (because you are just using a topic in each file), which can solve the problem. But you probably need to do is open these files in a text editor and remove the attribute of xmlns:ditaarch of them (he not really needs on the elements of the topic either since it is the default value). Then, I turn to the composite 1.1 as a default app. I'll take a look at the FM10 1.2 default app and see what happens. (I have not seen this problem since I was on DITA-FMx, which has its own structure of apps).

    See you soon,.

    .. .Scott

    Scott Prentice

    Leximation, Inc..

    www.leximation.com

  • How to add URL links in the XML file?

    Hello

    I have a problem with adding the URL links to the power of lightning. I use the XML file to call images, then the corrsponding links. Images are called correctly but when I try to add a link I do not receive the links, but rather to get the anchor HTML text tags. I use escape XML characters to escape HTML tags, but the results are not what I need.

    I use the following code:

    < preview = "miniature large.jpg" thumb = "thumb.jpg" > "
    < title > <! [CDATA [Financial Services]] > < / title >
    < discription > <! [CDATA [& lt; a href = & quot; ]] http://www.google.ca "> Google < / a > " [[ ]] > < / discription >
    < / thumbnails >

    ---------------------------

    Output:

    Images are displayed correctly, but instead get the links, I get following message:

    " < a href =" http://www.Google.ca "> < /a > Google .

    I need to know what I'm doing wrong. I use the proper way to add links or not?

    Thanks for your time.

    Use tags html directly inside CDATA - after all, what CDATA is for.

Maybe you are looking for

  • Cannot send SMS

    I have a Apple Watch watch OS 2.2.2 (13V604) running and one 5 iPhone with iOS 9.3.5 (G 13, 36). Previously, I found that the watch would not send SMS free hands unless I turned on iMessage; These messages would simply disappear, but things seemed to

  • Easiest way to convert the cluster with named variables table?

    I have a table of variables, I essentially unbundle this table of named variables. I believe that the only way to achieve this is to convert the cluster table (not to mention that the deletion of each item one by one)? Is what I've done below the bes

  • Unknown update

    Checkpoint system restore Windows created for windows xp software update - KB952011, but this update is not present in the installed updates or windows update history. I have not installed this update. This checkpoint was created at the same time I i

  • Can I download my Aspire 5943 G on windows 10

    When I downloaded windows 10 I lost my laptop monitor and could not get a screen via the external monitor using the vga port. Y at - it an update driver for the laptop monitor that runs on windows 10 laptop is Aspire 5943 G.

  • Norton 360 diagnosis reported: Microsoft ISATAP Adapter #2 is malfunctioning and windows cannot load the drivers required - code 31.

    Original title: ISATAP adapt #2 does not properly. How can I solve this problem? My Norton 360 diagnostic report detected a hardware device unusable.  The device type is: Microsoft ISATAP Adapter #2 and the device situation mentions that it is workin