The transaction-config and the  Phantom XML File

I'm upgrading from 10.1.2 to 10.1.3, and there are some configuration changes that I can't find documentation for. My configuration is semi-complex, so I started by just using our current configuration files, and moved on from there.
I get the following error on startup.
06/04/26 11:10:32 Error initializing server: Unknown deployment tag in /u01/home/weblogic/lrs/server/application-deployments/orion-application.xml: <transaction-config>
06/04/26 11:10:32 Fatal error: server exiting
OK. That seems pretty easy on the surface. I need to pull the <transaction-config> element out of that file, right?
So here's my problem.
$ ls -l /u01/home/weblogic/lrs/server/application-deployments/orion-application.xml
ls: /u01/home/weblogic/lrs/server/application-deployments/orion-application.xml: No such file or directory
How is OC4J able to determine I have a bad configuration element in a file that doesn't exist? Where is this coming from?
Clues for the clueless?
Thanks!
-Jerome

Avi:
What I see in the factory-default j2ee/config/j2ee-logging.xml of my oc4j 10.1.3 standalone is the following. If you take a look at it, you would believe what I suggested above is enough.
<?xml version="1.0" encoding="iso-8859-1"?>
<logging_configuration>
  <log_handlers>
    <log_handler name='console-handler' class='java.util.logging.ConsoleHandler' formatter='oracle.core.ojdl.logging.SimpleFormatter'/>
    <log_handler name='oc4j-handler' class='oracle.core.ojdl.logging.ODLHandlerFactory'>
      <property name='path' value='../log/oc4j'/>
      <property name='maxFileSize' value='10485760'/>
      <property name='maxLogSize' value='104857600'/>
      <property name='encoding' value='UTF-8'/>
    </log_handler>
  </log_handlers>
  <loggers>
    <!-- Default Logger, useParentHandlers should be set to false because
         the root Logger (named the empty string "") will log to console -->
    <logger name='oracle' level='NOTIFICATION:1' useParentHandlers='false'>
        <handler name='oc4j-handler'/>
        <handler name='console-handler'/>
    </logger>
  </loggers>
</logging_configuration>.
Actually, 'NOTIFICATION:32' also means 'FINEST' in the case of non-odl logging, which is called text logging in the related oracle documention.

Similar Messages

  • Trying to change the cache size of FF3.6 from 75meg to a larger size, it only applies on a per session basis. i check the about:config and the changes have applied but when i restart FF it has reset itself to 75 :(

    as per the question, tried to up the cache from 75meg to 300meg but it resets after i restart firefox, have tried to change to various cache sizes but to no avail.
    -=EDIT=-
    it must be something to do with the profile, as when i set up a new profile in the manager, the cache size problem no longer appears. but now, how to repair my profile

    ok, nothing in that text file helped but the original file that it was based on pointed me in the direction that it might be an extension. The only extensions i have are NoScript and FasterFox Lite version....
    I have now traced the fault to lie with FasterFox... if you are not familiar with fasterfox it speeds up internet connections in firefox... several of the options are presets... but when i selected custom it gave me the option of a cache setting, which was set to 75megs.
    I have now changed that cache setting in fasterfox to 300 Megs and it is now persistant in firefox on restart.
    hopefully this information will be helpful to other people in the future that suffer the same problem.
    Thanks for your help TonyE, its greatly appreciated

  • How to read the data from Excel file and Store in XML file using java

    Hi All,
    I got a problem with Excel file.
    My problem is how to read the data from Excel file and Store in XML file using java excel api.
    For getting the data from Excel file what are all the steps i need to follow to get the correct result.
    Any body can send me the code (with java code ,Excel sheet) to this mail id : [email protected]
    Thanks & Regards,
    Sreenu,
    [email protected],
    india,

    If you want someone to do your work, please have the courtesy to provide payment.
    http://www.rentacoder.com

  • When downloading is complete, I can not see, run, nor access the file; it only appears in the "Downloads" window (and not the specified folder) and the only options permitted are to delete it, or to go to the download web site; what's blocking it?

    My PC's OS is 'MS Windows Vista Home Premium'. As my initil question states: When downloading, after the download completes, I can not see, run, nor access the file in it's designated folder. The download only appears in the "Downloads" window and the only "Right Click" options permitted are to "Remove From List", "Select All", & "Copy Download Link" I also can not double click to run it. What's blocking it?
    I have a similar problem when accessing .zip files that are attachments to my emails. Here, however, I can place the file in a designated folder, however, the .zip file and it's compressed content files are file-typed as "FireFox Document" and I get permissions errors when running an unzip tool.
    Why are my download files being quarantined ??? Is there a security setting option I need to change???
    To get around this, I'm using IE to download and install these files, but switching back & forth between FireFox & IE is a real pain.

    It's your anti-virus not working correctly while scanning. You can turn off the option to scan in Firefox's '''about:config''' by filtering for '''browser.download.manager.scanWhenDone''' and double-clicking that line to change the value to '''false'''

  • What is the simplest  way to get a xml-file from 10g R2 -database ?

    Hi,
    I'm new in xml, there are so many tools to work with xml:
    what is the simplest way to get a xml-file from 10g R2 -database ?
    I have : 10g R2 and a xsd.file to describe the xml-structure
    thank you
    Norbert

    There is no automatic way to generate XML documents from an arbitary set of relational tables using the information contained in an XML Schema. Typically the easiest way to generate XML from relational data is to use the SQL/XML operators (XMLElement, XMLAGG, XMLAttribtues, XMLForest). There are many examples of using these operators in the forums You can validate the generated XML against the XML Schema by registering the XML Schema with XML DB and then using the XMLType.SchemaValidate() method

  • How to update/change the value of elements in an xml file?

    Hi Everyone,
    Could any one of u tell me how to update the value of elements in an XML file, using java? The reason is i want to use an XML file as a data source (i.e. more or less like a database), without using any RDBMS, for simple applications such as to read a record and update the record. By the way, my XML file will have only one record, such as the current weather information, with fields such as temperature, humdity etc. for 1 city only.
    Thanks in advance.

    Here is a solution how to check a particular value or element name in an xml and update the changes e to an xml.
    Sample.xml
    <URLConstructor>
    <application name="cp_outage">
    <resource>hello</resource>
    <value>val</value>
    </application>
    <application name="cp_outage">
    <resource>hello</resource>
    <value>val</value>
    </application>
    </URLConstructor>
    XMLWriter.java
    package com;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import org.jdom.Document;
    import org.jdom.Element;
    import org.jdom.JDOMException;
    import org.jdom.input.DOMBuilder;
    import org.jdom.output.XMLOutputter;
    // used for printing
    import org.apache.xml.serialize.XMLSerializer;
    import org.jdom.output.XMLOutputter;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.List;
    class XMLWriter{
    public void update(File fileName)
    try {
              DOMBuilder domBuilder=new DOMBuilder();
              Document doc=domBuilder.build(fileName);
              Element element=doc.getRootElement();
              getChildren(element);
              writeToXML(doc,fileName);
              getChildren(element);
    } catch (Exception e) {
    e.printStackTrace();
         * @param doc
         private void writeToXML(Document document,File filePath)
                   XMLOutputter xmloutputter = new XMLOutputter();
                        try
                             FileOutputStream fileOutputStream = new FileOutputStream(filePath);
                             xmloutputter.output(document, fileOutputStream);
                             fileOutputStream.close();
                        catch (FileNotFoundException e)
                             e.printStackTrace();
                        catch (IOException e)
                             e.printStackTrace();
         public void getChildren(Element element)
                        if(!element.hasChildren())
                             return;
                        List childrenList = element.getChildren();
                        Iterator itr=childrenList.iterator();
                        while(itr.hasNext())
                             Element childElement=(Element) itr.next();
                             if(childElement.hasChildren())
                                       getChildren(childElement);
    //                                   System.out.println("Name "+childElement.getName());
    //                                   System.out.println("Value "+childElement.getText());
                                       if(childElement.getText().equals("hello") || (childElement.getName().equals("resource")))
                                            updateInfo(childElement,"New_Resource","AddedText");
         * @param childElement
         * @param string
         * @param string2
         private void updateInfo(Element element, String elementName, String value)
              element.setName(elementName);
              element.setText(value);          
    static public void main(String[] args)
    XMLWriter xmlWriter=new XMLWriter();
    xmlWriter.update(new File("c:/sample.xml"));
    After execution the file will be changed to
    <URLConstructor>
    <application name="cp_outage">
    <New_Resource>AddedText</New_Resource>
    <value>val</value>
    </application>
    <application name="cp_outage">
    <New_Resource>AddedText</New_Resource>
    <value>val</value>
    </application>
    </URLConstructor>
    Regards,
    Maheswar

  • Convert the Database records to a standard XML file format?

    Hai,
    i want to convert the Database records to a standard XML file
    format which includes the schema name, table name, field name
    and field value. i am using Oracle 8.1.7. Is there any option
    please help me
    Thanks in advance.

    You could put the files somewhere and I can export them as QuickTime. Or you could find anyone you know who has Director. Or do the 30 day trial download
    Another approach would be to play the DCR in a browser window, and do a screen recording. But that’s unlikely to give the perfect frame rate that you would get by exporting from Director.

  • Firefox will open 4 or 5 tabs fine, but then will not load any further websites after those first 4 or 5, or allow you to refresh one of those first tabs -- including about:config and the addon page

    Firefox 5 worked fine. I installed Firefox 7, and when I ran it, tabs would just say "connecting to..." and hang. Restarting did not help. Websites open fine in IE and Chrome. Disabled all firewalls and antivirus, did not help. Uninstalled and reinstalled Firefox 5, everything worked fine again. This was using Vista 64-bit.
    Upgraded to Windows 7, uninstalled Firefox 5, installed Firefox 7, had same problem. Uninstalled Firefox 7 completely (including the profile information, I saved that information in another folder), restarted computer, and installed Firefox 7 using a completely clean profile. Did not install any add-ons, checked to make sure all plug-ins were up-to-date, and updated plugins.
    Now when I start Firefox, I can load 3 or 4 or 5 tabs fine -- after those first few tabs are open, I cannot open or refresh any other tabs -- including about:config and the add-on manager -- I have to restart Firefox. The hangup doesn't appear to be related to what websites I am attempting to open, but it looks like the number is the problem. I have run through all of the FAQ procedures, including changing the max number of network connections to 48, and the problem does not seem to go away.
    As a side note, I had this same problem when I tried to go from version 5 to version 6 as well. Version 5 is the most recent version that worked on my system.

    Can you try Aurora - download it from http://www.mozilla.org/en-US/firefox/channel/
    And let us know how it works.

  • TS2570 On start up of my new iMac it locks on the grey screen with the apple logo and the progress wheel spins. Boot up in safe and this is where it stopped at "BootCacheControl: Unable to open /var/db/bootcache.playlist: 2 no such file or directory. "

    On start up of my new iMac it locks on the grey screen with the apple logo and the progress wheel spins. Boot up in safe and this is where it stopped at "BootCacheControl: Unable to open /var/db/bootcache.playlist: 2 no such file or directory. "

    Reinstalling MacOS does NOT fix the problem for me.  I'm still searching a solution !
    Bernard

  • Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exact

    Why Acrobat x professional is changing the text formatting specifically the font family  and the font size of the text in my pdf on exporting it to Microsoft word file format ?How should i stop Acrobat x professional from doing that so that i get an exactly same word file on exporting it from its pdf counterpart?

    I was testing the preciseness & efficiency of Adobe acrobat x professional's doc conversion capabilities. As i have to take a document editing project in future which is going to need lot of pdf to word and vice versa conversions . What I did was I created a test word document converted into a pdf using a pdf maker in my word 2007 , Acrobat did convert the document from word to pdf keeping everything in the source file intact , However when i tried the other way round and attempted to convert the same pdf to word 2007 file format I lost my formatting ?So the font that I used to create the pdf are the ones taken from word 2007 which i believe is using the fonts that are installed in my computer. Any suggestions on how to preserve the formatting of the document after converting it from pdf to word file format?
    Regards
    Mike

  • I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content

    I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content turned into symbols.  What is going wrong?

    You select the printer properties and set the appropriate page size (I think there is a place to set it in PDF Maker too, but not sure). In the printer, this is equivalent to putting the proper paper in the printer.

  • I can't download the Adobe Edge Reflow. The file's downloading is successfull but the file doesn't go to my Creative Cloud so I can't install the programme. I have already install the Photoshop CC and the Reflow Plug-in for Photoshop. May I ask help? :) T

    I can't download the Adobe Edge Reflow. The file's downloading is successfull but the file doesn't go to my Creative Cloud so I can't install the programme. I have already install the Photoshop CC and the Reflow Plug-in for Photoshop.

    Hello
    1. I am running on Windows 8.1
    2. When running the installer file from https://creative.adobe.com/products/download/reflow I get the following choice
    I click "OK" which doesn't do anything for me (CC is off).
    I turn CC on and run the installer again. I get the following window that within few settings disappears:
    Then - just for half a second it says "Launching Creative Cloud desktop" and then it brings CC to front, and that's all.
    RF still not there.
    3. I spoke ta support agent on the Adobe chat on Friday. He looked into my computer for an hour. Uninstalled After Effects (after failing to update it). For some reason all apps disappeared from the list. They then reappeared after he opened PS.
    This morning After Effects is still showing up in my system and is operational.
    Weird.
    4. At the end the agent suggested maybe Firewall is the problem here. Trying that out now.

  • When I try to open a file with TextEdit, I get the spinning beachball and the file takes almost a minute to open.

    When I try to open a file with TextEdit, I get the spinning beachball and the file takes almost a minute to open. When I just start TextEdit everything is fine. Also when I log on with another account TextEdit works like a charm, even when opening an existing file.
    What I have done so far:
    checked permissions in Disk Utility
    validated all fonts
    deleted all canon printer drivers
    deleted all preferences
    Nothing has helped. Mail shows the same behavior as TextEdit. What else can I do? Any help would be greatly appreciated.

    drwx------  2 admin  staff  -     68 29 Jan 12:16 Library/Caches/com.apple.AddressBook
    drwxr-xr-x  3 admin  staff  -    102 30 Jan 21:36 Library/Caches/com.apple.AddressBookSourceSync
    drwxr-xr-x  4 admin  staff  -    136 29 Jan 11:09 Library/Caches/com.apple.DictionaryServices
    drwxr-xr-x  3 admin  staff  -    102 30 Jan 17:21 Library/Caches/com.apple.DiskUtility
    drwxr-xr-x  3 admin  staff  -    102 29 Jan 11:19 Library/Caches/com.apple.FontBook
    drwxr-xr-x  3 admin  staff  -    102 29 Jan 11:54 Library/Caches/com.apple.KeyboardSetupAssistant
    drwxr-xr-x  3 admin  staff  -    102  2 Feb 07:41 Library/Caches/com.apple.PubSubAgent
    drwxr-xr-x  3 admin  staff  -    102  2 Feb 07:56 Library/Caches/com.apple.QuickLookDaemon
    drwxr-xr-x  5 admin  staff  -    170  2 Feb 07:41 Library/Caches/com.apple.Safari
    drwxr-xr-x  3 admin  staff  -    102 31 Jan 14:45 Library/Caches/com.apple.ScreenSharing
    drwxr-xr-x  3 admin  staff  -    102  2 Feb 03:40 Library/Caches/com.apple.SoftwareUpdate
    drwxr-xr-x  3 admin  staff  -    102 29 Jan 11:34 Library/Caches/com.apple.Terminal
    drwxr-xr-x  3 admin  staff  -    102  1 Feb 18:48 Library/Caches/com.apple.calculator
    drwxr-xr-x  3 admin  staff  -    102 29 Jan 11:10 Library/Caches/com.apple.finder
    drwxr-xr-x  5 admin  staff  -    170  1 Feb 23:41 Library/Caches/com.apple.helpd
    drwx------  3 admin  staff  -    102 29 Jan 11:27 Library/Caches/com.apple.iChat
    drwxr-xr-x  2 admin  staff  -     68 30 Jan 18:21 Library/Caches/com.apple.iLifeMediaBrowser
    drwxr-xr-x  4 admin  staff  -    136 30 Jan 18:21 Library/Caches/com.apple.iMovieApp
    drwxr-xr-x  6 admin  staff  -    204  1 Feb 23:19 Library/Caches/com.apple.iTunes
    drwxr-xr-x  7 admin  staff  -    238 30 Jan 18:22 Library/Caches/com.apple.idvd
    drwxr-xr-x  3 admin  staff  -    102  1 Feb 23:36 Library/Caches/com.apple.imagent
    drwxr-xr-x  3 admin  staff  -    102  1 Feb 18:13 Library/Caches/com.apple.installer
    drwxr-xr-x  3 admin  staff  -    102 29 Jan 14:36 Library/Caches/com.apple.loginwindow
    drwxr-xr-x  5 admin  staff  -    170  1 Feb 23:38 Library/Caches/com.apple.mail
    -rw-r--r--  1 admin  staff  -  17096  1 Feb 23:29 Library/Caches/com.apple.nsservicescache.plist
    -rw-r--r--  1 admin  staff  - 170969  1 Feb 23:30 Library/Caches/com.apple.preferencepanes.cache
    -rw-r--r--  1 admin  staff  - 106496  1 Feb 23:30 Library/Caches/com.apple.preferencepanes.searchindexcache
    drwxr-xr-x  3 admin  staff  -    102 31 Jan 16:03 Library/Caches/com.apple.safaridavclient
    drwxr-xr-x  5 admin  staff  -    170  1 Feb 20:03 Library/Caches/com.apple.storeagent
    drwxr-xr-x  3 admin  staff  -    102  2 Feb 07:38 Library/Caches/com.apple.syncdefaultsd
    drwxr-xr-x  4 admin  staff  -    136 31 Jan 16:03 Library/Caches/com.apple.systempreferences
    drwxr-xr-x  3 admin  staff  -    102 29 Jan 11:15 Library/Caches/com.apple.systemuiserver

  • If i bounce my project the bounced file is not the same as the original. it has about ten seconds at the beginning free and the end is 10 sec cut off. what is the bug?

    if i bounce my project the bounced file is not the same as the original.
    it has about ten seconds at the beginning free and the end is 10 sec cut off.
    what is the bug?
    i start the bouncing with the transport lokator as 1 1 1   1
    and ends where it sould be over.
    but the first 10 seconds are silent then it starts with the beginning of the song and the last 10 seconds are cut off.

    hello,
    this is a screeshot of my problem.
    the first pic as it should be
    second  with my problem
    this happens after some bounces and not regular.
    i dont wont to have this.
    i have two pics i would like sending to you.
    thanx,

  • STAD - get the 'transaction code' and 'program name'

    Hi, I was wondering if someone knows about a bapi with which I can get only the "transaction code" and "program name".
    I need to get those for a specified user, but I don't want to set on a trace, that's why I'd like to use the transaction STAD.
    If anyone can help, thanks in advance
    Grtz,
    Dragovian

    ok, so I go like this
    TYPE-POOLS sapwl .
    DATA:  all_stats        TYPE sapwl_allstats.
      CALL FUNCTION 'SAPWL_READ_STATISTIC_FILES'
       EXPORTING
         read_client                 = '*'
         read_time                   = '200000'
         read_start_date             = sy-datum
         read_start_time             = '000000'
         read_username               = sy-uname
         read_workprocess            = 'FFFF'
         wait_factor                 = 150
        CHANGING
          all_stats                   = all_stats
    how'd I get "start-time" "report-name" "date" "username"?

Maybe you are looking for