Resource Configuration Files  - LSX-00320: missing required elements in al

Hi,
I have completed the following steps to configure resource:
1. Create Directory ELEVENG_XML.
2. Create Folder
DECLARE
res BOOLEAN;
BEGIN
res:=DBMS_XDB.createFolder('/cm/');
END;
3. Create Resource for a file app_rc.xml'.
DECLARE
XMLdoc XMLType;
BEGIN
XMLdoc:=(XMLTYPE(bfilename('ELEVENG_XML','app_rc.xml'),NLS_CHARSET_ID('AL32UTF8')));
IF(DBMS_XDB.CREATERESOURCE('/cm/app_rc.xml', XMLdoc))
THEN
DBMS_OUTPUT.PUT_LINE('Resource is created');
ELSE
DBMS_OUTPUT.PUT_LINE('Cannot create resource');
END IF;
COMMIT;
END;
Error is :
ORA-31154: invalid XML document
ORA-19202: Error occurred in XML processing
LSX-00320: missing required elements in <all>
ORA-06512: at "XDB.DBMS_XDB", line 192
ORA-06512: at line 5
My xml file app_rc.xml is
<ResConfig xmlns="http://xmlns.oracle.com/xdb/XDBResConfig.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.oracle.com/xdb/XDBResConfig.xsd
http://xmlns.oracle.com/xdb/XDBResConfig.xsd">
<defaultChildConfig>
<configuration>
<pre-condition>
<existsNode>
<XPath>/Resource[ContentType="xml"]</XPath>
</existsNode>
</pre-condition>
<path>/cm/app_rc.xml</path>
<!--<resolvedpath/>-->
<!--<oid/>-->
</configuration>
</defaultChildConfig>
</ResConfig>
As per the the schema only XPATH is needed for <existsNode>, but still throws the error LSX-00320: missing required elements in <all>.
How can we solve this? Is there any error in the ResConfig xml file?
Regards
Raji

Validate your app_rc.xml file against the XMLSchema XDBResConfig.xsd
Your xml file is missing
  <!-- resource configuration element  -->
  <complexType name = "ResConfig">
    <all>
      <element name="defaultChildConfig" type="rescfg:defaultConfig" minOccurs="0"  maxOccurs="1"/>
      <element name="defaultChildACL" type="rescfg:defaultACL" minOccurs="0" maxOccurs="1"/>
      <element name="event-listeners" type = "rescfg:event-listeners" minOccurs="0" maxOccurs="1"/>
      <element name="XLinkConfig" type="rescfg:xlink-config" minOccurs="0" maxOccurs="1"/>
      <element name="XIncludeConfig" type="rescfg:xinclude-config" minOccurs="0" maxOccurs="1"/>
      <element name="SectionConfig" type="rescfg:section-config" minOccurs="0" maxOccurs="1"/>
      <element name="ContentFormat" type="rescfg:content-format" minOccurs="0" maxOccurs="1"/>
      <!-- application data -->
      <element name="applicationData" minOccurs="0" maxOccurs="1" >
         <complexType>
           <sequence>
             <any namespace="##other" maxOccurs="unbounded" processContents="lax"/>
           </sequence>
         </complexType>
     </element>
    </all>The important XML Schemata can be found in the last sections in the Oracle XMLDB Developers Guide for your version of the database
Edited by: Marco Gralike on Jan 6, 2009 10:35 PM

Similar Messages

  • I am getting the following error: Unable to authenticate the package: B_SPACE_NUTRITION.itmsp                     ERROR ITMS-9000: "OPS/ibooks.ncx(5): element "content" not allowed yet; missing required element "navLabel"" at Book (MZItmspBookPackage)

    I am getting the following error when attempting to deliver my iBooks Author book package via iTunes Producer: "
    Unable to authenticate the package: B_SPACE_NUTRITION.itmsp
                        ERROR ITMS-9000: "OPS/ibooks.ncx(5): element "content" not allowed yet; missing required element "navLabel"" at Book (MZItmspBookPackage)"
    I understand that there's something wrong with the TOC file (.ncx), but I have tried everything and nothing seems to work. Every section of the TOC is labeled, so not sure why the navLabel issue is happenening.
    Any help is GREATLY appreciated! Thank you.

    Similar issues looks like. Are you using a template other than those in iBooks Author? That's what I did, and that was definitely part of the issue.
    After digging through .ibooks code for hours and still not seeing the problem, I decided to reach out to one of the Apple epub conversion affiliates in iTunes Connect. They said they could repair the file without a problem, started working on it, only to come back a week later and say they couldn't work on .ibooks or .iba files yet.
    So, in complete frustration, I decided to transfer my content page by page from the blank template I downloaded from a vendor online to one of the "textbook" templates in IBA. This was a long process as I had to unlock and clear out the formatting of the template. But, once that was done and content was transferred over, all was good. I submitted/delivered the same content and preview book within the new template and it went right through the first time (all metadata was exactly the same as well).
    Now, the iBookstore approval waiting process begins!
    Good luck!

  • ORA-31127: RCList cannot contain noncommitted resource configuration

    Dear all,
    When I execute dbms_xdb.deleteresource, meet the error: RCList cannot contain noncommitted resource configuration.
    From the online manual, I notice that "Before performing any operation that uses a resource configuration file, you must perform a COMMIT operation. Until you do that, an ORA-22881 "dangling REF" error will be raised whenever you use the configuration file".
    Maybe this occured serveral days ago, that I issued a uncommited appendResourceConfig command. Now, how can I delete this folder from xdb repository. Somebody help me please, thanks.
    my oracle server version: Release 11.1.0.6.0
    Edited by: user1201051 on 2009-6-3 下午6:29
    Edited by: user1201051 on 2009-6-3 下午6:30

    more info about this question.
    when Ii issue below:
    select value(p).getClobVal() from xdb.xdb$resource p where equals_path(value(p),'/mypath')=1;
    I cannot found any rclist info, and when I lookup the XDBResource.xsd schema file, I found this line:
    <element xdb:propNumber="754" name="RCList" type="xdb:RCListType" xdb:memType="258" xdb:system="false" xdb:mutable="false" xdb:SQLName="RCLIST" xdb:SQLType="XDB$RCLIST_T" xdb:SQLSchema="XDB" xdb:JavaType="XMLType" xdb:global="true" xdb:hidden="true" xdb:baseProp="true" nillable="false" abstract="false" xdb:SQLInline="true" xdb:JavaInline="false" xdb:MemInline="false" xdb:maintainDOM="false" xdb:defaultTable="00" xdb:defaultTableSchema="XDB" xdb:JavaClassname="oracle.xdb.RCListBean" xdb:beanClassname="oracle.xdb.RCListBean" xdb:numCols="1" minOccurs="0" maxOccurs="1"/>
    which show xdb:hidden="true", Does this means that we could not query the rclist info, or maybe some other way to get this info?
    thanks for advance.
    Edited by: winger du on 2009-6-5 上午2:43

  • When i add a background image to form and it gives me such kind of issues so i have deleted the resource file in the solution explorer and then when i reopened my projectt it again gives errors of missing root element of InvalidResx.file amd of XMl.

    I have already go to properties then resources and try to remove resource option but it was't working.so help me by giving another technique to solve this issue.

    I have already go to properties then resources and try to remove resource option but it was't working.so help me by giving another technique to solve this issue.
    Hello,
    It will be more specific if you could share the screenshot of that error with us.
    In addition, if this issue is mainly related to the BackGroundimage property, you could consider using the following suggestion.
    We could click our project to expand the nodes and click "InitializeComponent()" to navigate to its desiginer code.
    Then check whether there is a line which has " Me.BackgroundImage =", remove that line and then remove the resource file with the following step.
    Project property->Resources->Switch "Files" or "Images" to see where you have setted for that image file, find it and remove it.
    Then save all your changes to see whether it's OK.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Required attribute version missing from element xsl:stylesheet

    Tools:
    Jdeveloper : 10.1.3.3
    Error:
    Every time I add transform process activity and try to create mappings I am not able to save them.
    In source view I see this error "Required attribute version missing from element xsl:stylesheet".
    I cannot continue and do not understand how to proceed.
    Any ideas ?

    We have the same problem here from time to time. This has to be some kind of bug in JDeveloper. There is nothing wrong with our xsl files! But for some reason JDeveloper complains about the version attribute of xsl:stylesheet which in all the cases I've seen IS THERE!
    Sometimes restarting JDeveloper helps - sometimes not. I even ended up reinstalling JDeveloper a few times.
    I hoped this would be fixed in 10.1.3.3 (we use 10.1.3.2) but sadly it's not it seems.

  • How do I install Elements for Windows 7 PC with 64 bit? Get error message - file archive part missing

    We purchased Elements 12 and Premiere Elements 12 on September 7, 2014 and have tried a variety of things including searching through FAQs on the Adobe site, etc. etc. and cannot get our downloads to work. We are avid computer users and have never had problems downloading software before.
    From our account under "orders" - I have tried clicking on the Akamai download manager and the Alternate Download Method on for each application with the same results.
    We have a Windows 7 PC with a 64 bit operating system and Internet Explorer 11.
    On all attempts we get an Adobe screen with 2 links – 1 for a file ending in .7z and a 2nd file ending in .exe.
    I click on the first file and confirm the download completes at 100% (not paused, etc.) and is in the downloads folder for my user name on the PC.
    I click on the 2nd link for .exe and I receive the error message below – 2nd screen shot – “file archive is missing” all folders/files must be in same folder.
    So I see it’s a winzip file (as a winzip pop up folder had come up also) so I download the free version and unzip the files in the same downloads folder under my user name to try that.
    I click on .exe file link again and same message. I tried copying the files directly to the downloads folder (as they all unzipped into a subfolder called PSE 12 and tried clicking on .exe again but get the same message.
    For Premiere I tried the same and got same results on the 64 bit version download.
    I do not know how to access the software we purchased.
    Any help or advice is appreciated.
    Also - if anyone knows how I can contact Adobe for a full refund so I can just buy the boxed software instead - that would be helpful as well as that is not easy to find online either.
    Thanks!
    Ariel

    I get an error message saying that the quicktime installer will only work on 32 bit
    The QuickTime player works on 64-bit systems. (It's a 32-bit application, but it should run fine using the standard 32-bit-on-64-bit Windows-on-Windows emulation.)
    What's the precise text of your installation error message, dc? (There one or two different ones I can think of that might mention 32-bit)

  • Error -32810 occurred at The FieldPoint server initialization failed. Possible causes: 1. Missing or corrupt configuration file; 2. Failed to create callbacks. : FP Open.vi

    I have two cFP-2120 RT controller. They both have NI-Serial RT2.5.6, DataSocket for LV RT4.2, NI-VISA 3.6, FP Drivers 5.1.0, FP VI Manager 3.1.0 LV RT 7.1.1 installed. But one same vi can run on one controller but not another.
    the error message got when it runs on another controller is "Error -32810 occurred at  The FieldPoint server initialization failed. Possible causes: 1. Missing or corrupt configuration file; 2. Failed to create callbacks. : FP Open.vi"
    I wonder by what it is caused?
    Thanks

    Hi Matthew,
    As mentioned previously, this KnowledgeBase article may be of some help. Also, if your code is being run on an embedded controller and then a network controller (not embedded), you will need to run the program differently. On the embedded controller, you should deploy your VI in a Project Explorer or programmatically (as described here.) However, you do not need to deploy the program to a network controller, but simply run the VI.
    I would also suggest creating a new .IAK file. Do you still see the same error? Also, double-check that the software installed on the controller matches the software installed on the host PC. If you have any file paths associated with one FieldPoint controller, ensure that you are changing them to match the second controller.
    Please keep us posted on your troubleshooting steps. Have a great day!
    Amanda Howard
    Americas Services and Support Recruiting Manager
    National Instruments

  • Error: missing ] after element list Source File: javascript:%20[object%20XULElement] Line: 1, Column: 9 Source Code: [object XULElement]

    Can you help me out in letting me know what this means and how I can fix this? I found it in my tools menu under error console. It was listed as a warning, but then there was a option to highlight and evaluate the original warning message that was listed as
    Warning: Expected color but found 'null'. Error in parsing value for 'background-color'. Declaration dropped.
    Source File: http://www.msn.com/
    When I cut and pasted message in the code evaluate box and pressed enter the warring message became an error then stated:
    Error: missing ; before statement
    Source File: javascript:%20Warning:%20Expected%20color%20but%20found%20'null'.%20%20Error%20in%20parsing%20value%20for%20'background-color'.%20%20Declaration%20dropped.%20Source%20File:%20http://www.msn.com/%20Line:%200
    Line: 1, Column: 10
    Source Code:
    Warning: Expected color but found 'null'. Error in parsing value for 'background-color'. Declaration dropped. Source File: http://www.msn.com/ Line: 0
    I am writing to ask for guidance on what to do and how to fix this.
    I current have Firefox as my default browser. I have IE 9 and Windows 7 home ed on my HP lap top that has AOL preloaded into it as the mail provider. I am a beginner user and when I got the computer my cousin set up Mozilla and Firefox as a search browser and I like it.
    I also have norton security

    I think, the problem is with the order (in configuration file) of path to search headers:
         /opt/oracle/product/10g/10.2.0/precomp/admin/pcscfg.cfg
              sys_include=(/usr/include,/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/include)
              include
              include=(/usr/include)
              include=(/opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/include)
    In the filesys:
         ./usr/include/sys:
         -r--r--r-- 1 bin bin 17786 Aug 13 2007 types.h
         ./opt/freeware/lib/gcc/powerpc-ibm-aix6.1.0.0/4.2.0/include/sys:
         -rw-r--r-- 1 root system 18288 Mar 22 2008 types.h
         mode_t came from:
         #include <sys/types.h>
    sys/types.h:
         * POSIX Extensions
         typedef unsigned int uint_t;
         typedef unsigned long ulong_t;
         * POSIX and XOPEN Declarations
         #if defined(_LP64) || defined(_I32LPx)
         typedef uint_t mode_t; /* file attribute type */
         #else
         typedef ulong_t mode_t; /* (historical version) */
         #endif

  • Why do I keep seeing Missing required field: Publication when I try to publish a file in iBooks format?

    I have produced a book in iBooks format and filled in everything asked for including but I can't slide the file into the window area and I get a message, Missing required field: Publication. I don't understand what I need to do to complete the transaction. I hope someone can understand and tell me what to do. Thank you.

    Thank you. You're dealing with an old woman doing her best here.   Sorry, I was somewhat distracted when I posed the question having been wrestling with it all afternoon. Yes, I am using iTunes Producer and have filled in all the information requested including cover art. The file is saved in iBooks format.
    I click on Files at top left, which I assume to be the thing to do, and get a a new page showing red circle with a number 1 in it. Clicking on that produces this :
    "Drag and drop the full book that will be used on the iBooks store. Books can be in the EPUB or iBooks format. Submitting a new book version will replace the existing version on the iBooks store.
    Missing required field: Publication. "
    I have tried to drag and drop the file into the box on the left but it won't allow me to. Clearly something is missing but I don't know what. I am just baffled as to what is wanted.

  • Password file may be missing or configured incorrectly.

    Hi All
    Platform:Windows Server 2003
    DB: 10.2.0.5.0/Single instance
    While creating the em repository I get the following:
    2010-aug-23 14:18:05 oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DWDEV\emca_2010-08-23_02-17-46-PM.log.
    2010-aug-23 14:18:06 oracle.sysman.emcp.EMConfig perform
    ALLVARLIG: Password file may be missing or configured incorrectly.
    Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DWDEV\emca_2010-08-23_02-17-46-PM.log for more details.
    Could not complete the configuration. Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\emca\DWDEV\emca_2010-08-23_02-17-46
    -PM.log for more details.
    Its clear what the problem is, I have tried to recreate the password file but I still get the same error.
    my steps
    1. shutdown the instance
    2. orapwd file=orapwDWDEV password=mypassword entries=10
    3. startup
    One thing I wonder is the name of the passwordfile, I saw in one post that the name should be orapw<sid>, I noticed that he old name
    was PWD<SID>. What controls the name (apart from the sid) ?
    Any ideas how to handle this is appreciated.
    Thanks
    Magnus

    It seems that I have misspelled the name.
    It works now.
    Stiil interested what makes the filename, the pwfile is named PWD<SID>.ora.
    Can I name it what I like ?
    /Magnus

  • "Adobe InDesign is missing required files. Please reinstall."

    Hi EveryOne !
    "Adobe InDesign is missing required files. Please reinstall. Missing files: \Program Files\Common FIles\Adobe\TypeSupport\...\CP1252.TXT" This is the message I keep receiving on CS5.5 of InDesign.
    I am running InDesign CS5.5 North American, English, with updates on my WinXP SP3 machine. Local copy, no network server. Yes, I might possibly need a newer machine, or a newer desk, or to reinstall WinXP to fix this one problem, but everything other than InDesign CS5.5 still runs great and I feel no compelling reason to make system-wide changes or upgrade until Win8 has been thoroughly tested and new hardware is released and tried and true for that OS.
    So, last year, I received the same message and reinstalling didn't work either. So, I pried everything Adobe off of my computer and reinstalled Adobe PageMaker 7.x. But now I am compelled by my co-workers to use ID, which I have grown to love. I have no desire or $ to upgrade to ID6 but must make use of the ID 5.5. I don't want to uninstall PageMaker as we still use it for legacy projects and it has been a faithful companion to me since it was called Aldus Pagemaker.
    My question: what is causing these messages and why does re-installation not help ? If there is a system problem, why is only CS5.5 affected and not my PageMaker and Quark ? I have searched the web and found only related posts (with no responses relevant to me) for users of Apple products.
    Thank you in advance for any information that you may be able to provide.
    Rafi9327

    See http://forums.adobe.com/message/1318206
    and the new and improved clean tool: CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3

  • Missing required systems fonts or cmap files

    Good morning,
    We have a serious problem with Adobe Suite (including InDesign 6).
    When we launch In Desing we have an error message :"Missing required systems fonts or cmap files".
    Can you help us ?
    PS : We use windows 7 X64 with Adobe In design6.

    This thread might help: http://forums.adobe.com/thread/328866?start=0&tstart=0
    But it could also be an installation problem or a permissions problem. Does you user account have full access to the lacation where those files should be stored?

  • Missing Required System Fonts or CMap Files

    Somehow an entire "Adobe" folder got moved to my trash accidentally. I'm now getting an error when I try to open Adobe InDesign CS5 saying "missing required system fonts or CMap files" and it shuts down on me. I'm ASSUMING it's because that folder is in the trash. However, I don't know WHERE it should go. Attached is a screen shot of that folder and it's contents. Should it be in Application Support? Adobe InDesign? I have tried to uninstall InDesign and reinstall, but I click Uninstall and it says the associated shortcut cannot be located. Grrrrr....
    Thanks for any help.

    There's an Adobe Tech Note about that:
    Error "...missing required system fonts or CMAP files..." when you start InDesign or InCopy (CS2 on Windows) - Support K…

  • BP &C upgrade to version 7 failing, server configuration file missing.

    Anyone,
    When I run the version 7 Startup.exe, the only options are to Prepare or Other.  I think the server configuration file is missing.  Is there a way to create/recreate one without using the insight export feature (that appset is not installed or enabled).
    Thanks in advance.

    Your flame is not at all helpful. After digging into the problem for a couple hours I was able to discover EXACTLY what had happened.
    Thank you
    For everyone else, here is what the upgrade has done:
    Under the "iTunes\iTunes Music" folder there used to be a "Downloads" folder that was deleted by the 7.0 upgrade.
    It looks like this folder was used for the recovery of failed downloads, but the previous versions of iTunes were not managing this folder very well. There were several folders containing just 1 media file. Most of the media files were 0 bytes long, except for the 2 files that I had lost during the upgrade. Apparently, iTunes was using these 2 files. The upgrade to version 7.0 caused this folder to be deleted; thus the links were broken. Anyone else who had a failed download, in particular a video download, may have the same issue.

  • Getting an error message trying to open a file, "Missing required parameter 'from' for method "open'. What do I do?

    Getting an error message trying to open a file, "Missing required parameter 'from' for method "open'. I've tried opening in CC and CS5. What do I do? Can the file be salvaged?

    Try opening as a copy, and/or copying the file to a new location and try opening that.

Maybe you are looking for

  • Multiple issues with Mavericks update and Mail

    I have a MacBook Pro mid 2009 2,53 GHz 13-inch. It has 4GB of RAM and a Hitachi 500GB 5400 rpm disk with about 200GB of free space. After working on 10.6.8 for a long time I have upgraded to 10.9.2. I formatted the internal disk, made a clean install

  • Printing Problems with the special character &

    Hi All, When our users are printing POS character & is printing as junk i.e where ever there is a & print prieview shows & along with some other characters <(>&<)> . Host Spool Acess Method is F:F: Printing on  Front end computer HostPrinter is __Def

  • Missing Text Message history

    I updated my iphone 4 to iOS 6 and now all of my text message history is gone. What happened?

  • How do I resize a pic? I don't want to crop it, just make it smaller.

    How do I resize a pic? I don't want to crop it, just make it smaller.

  • Submitting form to multiple recipients

    Is it possible to have a form, that when completed by a staff member, is emailed individually to the entire board of directors (for grant approval). This is NOT a question of distributing a form, but of having the form automatically emailed to a list