Entries with oracle's IP in log.xml file.

This is about a couple of log entries I found in /dcm/logs/emd_logs/log.xml file.
while I have some Idea about the message itself what I don't understand is why the <HOST_NWADDR> points to 148.87.12.57
Can anyone shed some light on this.
Does R2 connect to oracle in some way each time it is brought up, 'cause the IP 148.87.12.58 is the IP of the PortalStudio and I figured its neighbour belongs to oracle too.
Do I need to keep the box connected to Internet all the time for it to work.
Could someone at oracle tell me what my box is trying to do by connecting to 148.87.12.57.
Please find the entries below.
Thanx
Vinodh R.
These are the entries I found
i)
<MESSAGE>
<HEADER>
<TSTZ_ORIGINATING>2002-07-08T03:56:36.721-04:00</TSTZ_ORIGINATING>
<COMPONENT_ID>OC4J</COMPONENT_ID>
<MSG_TYPE TYPE="ERROR"></MSG_TYPE>
<MSG_GROUP>n/a</MSG_GROUP>
<MSG_LEVEL>1</MSG_LEVEL>
<HOST_ID>myportal</HOST_ID>
<HOST_NWADDR>148.87.12.57</HOST_NWADDR>
<MODULE_ID>iAS_dcm/oracle/defaultLogger/ExceptionLogger</MODULE_ID>
<PROCESS_ID>null-Thread[ApplicationServerThread,5,applicationServerThreadGroup]</PROCESS_ID>
<USER_ID>root</USER_ID>
</HEADER>
<PAYLOAD>
<MSG_TEXT>[ RM ] Exception in repository API new SchemaManager()</MSG_TEXT>
<SUPPL_DETAIL><![CDATA[oracle.ias.repository.schema.SchemaException: Password could not be retrieved
     at oracle.ias.repository.IASSchema.init(IASSchema.java:152)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
     at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
]]></SUPPL_DETAIL>
</PAYLOAD>
</MESSAGE>
ii)
<MESSAGE>
<HEADER>
<TSTZ_ORIGINATING>2002-07-08T06:41:27.339-04:00</TSTZ_ORIGINATING>
<COMPONENT_ID>OC4J</COMPONENT_ID>
<MSG_TYPE TYPE="ERROR"></MSG_TYPE>
<MSG_GROUP>n/a</MSG_GROUP>
<MSG_LEVEL>1</MSG_LEVEL>
<HOST_ID>myportal</HOST_ID>
<HOST_NWADDR>148.87.12.57</HOST_NWADDR>
<MODULE_ID>iAS_dcm/oracle/defaultLogger/ExceptionLogger</MODULE_ID>
<PROCESS_ID>null-Thread[ApplicationServerThread,5,applicationServerThreadGroup]</PROCESS_ID>
<USER_ID>oracle</USER_ID>
</HEADER>
<PAYLOAD>
<MSG_TEXT>[ RM ] Exception in repository API getDBConnect()</MSG_TEXT>
<SUPPL_DETAIL><![CDATA[oracle.ias.repository.schema.SchemaException: Unable to connect to Directory Server:javax.naming.CommunicationException: oracleportal.peesh.com:389 [Root exception is java.net.ConnectException: Connection refused]
     at oracle.ias.repository.directory.DirectoryReader.connect(DirectoryReader.java:104)
     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
     at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
]]></SUPPL_DETAIL>
</PAYLOAD>
</MESSAGE>

The <url-pattern> tells the application server which requests are to be handled by the FacesServlet. If the requested URL matches, then the FacesServlet handles the request.
This parameter is not specific to JSF.

Similar Messages

  • How to create xml file from Oracle and sending the same xml file to an url

    How to create xml file from Oracle and sending the same xml file to an url

    SQL/XML (XMLElement, XMLForest, XMLAgg, etc) and UTL_HTTP.
    Whether that works for you with the version of Oracle you have, your requirements, and needs is another story. A little detail goes a long way.

  • Pls Help me with steps to add data from xml file to SAP B1 through B1iSN.

    Pls Help me with steps to add data from xml file to SAP B1 through B1iSN. I  am getting stuck in xsl transformation. not able to understand where the mapping code needs to be added.
    Pls explain me the steps for adding data from xml to B1 quotation step by step.
    thanks and regards
    Priya

    Hi,
    Have you checked this: https://sap.na.pgiconnect.com/p45508295/?launcher=false&fcsContent=true&pbMode=normal ?
    Thanks,
    Gordon

  • ADF Logger - logging.xml file

    Hi,
    We are building an ADF Application and created our logger, which is a wrapper around the ADFLogger. As expected logging etc works just fine for the ADF applications deployed in weblogic. However there are parts of the application which could be a standalone (pure java) based components deployed independently, which are leveraging this wrapper logger too. For these applications we added the ADF dependent libraries needed for the ADFLogger. Still these apps are not able to log anything, and I think the main reason being it is not able to get a handle to the logging.xml fine which defines the ODL handler. All other runtime parameters like
    "-Djbo.debugoutput=adflogger -Djbo.adflogger.level=FINEST" are passed.
    There is no error etc, however the logs are not coming.
    Is there a way where we can specify the logging.xml to the ADFLogger, so that it doesn't looks for the default location under - '+/<domain>/config/fmwconfig/servers/DefaultServer+'?
    In general also (for pure ADF based applications), is there a way we can define the path of our logging.xml file, instead of using the default one?
    Would appreciate any help.
    Thanks
    Sachin

    Hi,
    While I appreciate your response, however the question I have is - 'can we have our own logging.xml?' If yes how do we pass the information of our logging.xml to ADFLogger, instead of using the default logging.xml.
    I know we can have our own logger handler defined within the logging.xml, but that is not what we are looking for. The ask is to have the option of having the path of logging.xml defined for ADFLogger.
    Thanks
    Sachin

  • Can someone help me with a problem of parsing an XML file?

    Hello,
    I'm having some problems parsing an xml file. I get a SAXNotSupportedException when setting a property value.
    Here is the piece of code where I have the problem:
    SAXParserFactory spf = SAXParserFactory.newInstance();
    spf.setNamespaceAware(true);
    SAXParser saxParser = spf.newSAXParser();
    XMLReader xmlReader = saxParser.getXMLReader();
    DefaultHandler defHandler = new DefaultHandler();
    xmlReader.setProperty("http://xml.org/sax/properties/lexical-handler", defHandler);
    and the log is:
    Problem with the parser org.xml.sax.SAXNotSupportedException: PAR012 For propertyID "http://xml.org/sax/properties/lexical-handler", the value "org.xml.sax.helpers.DefaultHandler@4ff4f74a" cannot be cast to LexicalHandler.
    http://xml.org/sax/properties/lexical-handler org.xml.sax.helpers.DefaultHandler@4ff4f74a LexicalHandler
    I've been working on this problem but I can't find the error.
    Does anyone have an idea of what to do to solve it?
    Thanx in advance,
    M@G

    before deciding which XML technology to use, you should see if your application fit in the category below:
    use SAX:
    1. The XML file is rather large (30 or 40+ MB)
    2. I don't need the xml document in memory. I will parse the document and store the data in my own object.
    use DOM or JDOM
    1. The XML file is relatively small (less than 30 MB) or I can increase the runtime memory for larger xml file.
    2. I will need to walk up and down the xml document tree severals time.
    3. My application is in Java and it's not going to be rewritten in C++, etc (use JDOM)
    NOTE:
    JDOM is rather easier to use (for Java developer), but it's not an www.org.com standardlized xml parser.
    personally, i like JDOM for traversing the DOM.

  • Problems with and tags while reading the xml file

    Hi
    I am using the xml files in my project. The project uses Tomcat, JMS. The project is divided into some components which communicate with each oher thru JMS. The component for which I am responsible gets a dcoument object from the JMS which is a processed xml of the following format (the processing is done by the DBMS_XMLGEN package of oracle)
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
    <filename>157_1000000001</filename>
    <querydata>
    <tabdata>
    <tabinfo>Tab-id3</tabinfo>
    <queryset>
    <query name="Fax">
    select a.ARLN_NAME,d.TICKETED_ORIGIN,d.TICKETED_DESTINATION, d.ENDORSEMENTS,to_char(d.DATE_OF_ISSUE,'DDMONYY') as DATE_OF_ISSUE ,d.EXCHANGE_DOC_TYPE,
                   d.PASSENGER_NAME,d.ORIG_ISS_AIRLINE,d.ORIG_DOC_NO,d.ORIG_PLACE_OF_ISSUE,
                   to_char(d.ORIG_DATE_OF_ISSUE,'DDMONYY'),d.ORIG_ISSUE_AGENT,d.CUR_OF_SALE,d.GROSS_FARE,d.EQUIV_CUR_OF_SALE,d.EQUIV_FARE,
                   d.PANDA_DEAL_CODE,d.ISI,d.reporting_date
                   from airline_master a,ticket_main d,ticket_conj e where d.doc_no = e.doc_no and d.iss_airline = e.iss_airline
                   and e.conj_doc_no = (select DOC_NO from TICKET_CONJ where CONJ_DOC_NO = 1000000001 and ISS_AIRLINE = 157)
                   and e.ISS_AIRLINE = 157 and d.iss_airline = a.ARLN_NUM_CODE
    </query>
    </queryset>
    </tabdata>
    </querydata>
    the function on my side is like this
    private void processMessage(ObjectMessage objmessage)
         Document XMLreqObject = (Document) objmessage.getObject();
         Element root = XMLreqObject.getRootElement();                
         String resultFilename = root.getChildText("filename");
         Element tabSet = root.getChild("querydata");//doesnt work
         ArrayList tabSetlist = new ArrayList(tabSet.getChildren ("tabdata"));//doesnt work
    The code commented with "doesnt work", is not working. What must be the problem ?
    Thanks in Advance
    Martin

    Okay. Your original example XML didn't include < or > which was rather confusing if that particular feature was supposed to be the cause of the problem. Also calling them "tags" was rather confusing since "tags" is the term for the things that come at the beginning and of an element, like this:<data>...</data>Anyway, I assume your theory is that documents that don't have < in a text element process correctly and documents that do have < in a text element get "stuck" in the parser? Well, from your original description the process appears to be:
    1. Create XML
    2. Parse it into a Document
    3. Send the Document via JMS
    4. Receive the Document via JMS
    5. Process it.
    And it's step 4 that is "stuck"? That would be my guess based on the code you posted.

  • Oracle table data to create xml file.

    HI all,
    i want to create a xml file from table data.
    i want to data in below format.
    Tag
    - <root>
    - <ReportValues>
      <Value name="Client" value=" Correspondence.manco" />
    <Value name="Communication" value="correspondence.deliverby" />
      <Value name="Correspondence_Type" value=" correspondence.corrname" />
      <Value name="FROM" value="This email address will be based on the email address for the servicing segment the entity is linked to" />
      <Value name="REPLYTO" value=" This email address will be based on the email address for the servicing segment the entity is linked to " />
      <Value name="MessageId" value=" correspondence.seqno " />
      <Value name="RECIPIENT" value=" correspondence.deliveryaddress " />
      <Value name="Frommasquerade" value="correspondence.Manco" />
      <Value name="Replytomasquerade" value="correspondence.Manco" />
    is there any inbuilt function in oracle to do this functionality?
    any help appriciated.

    select xmlelement(name "ReportValues",
    xmlagg(xmlelement(name "Value",
    xmlattributes(name as "name",value as "value"))))
    from tab

  • Keeping contact with controlling applet while u/l XML file via servlet

    Hello everybody,
    if I am thinking too complicated, please send me other suggestions. Here's the situation:
    I already have a working applet for a metadata application, that is sending the contents of the client's textfields to a remote database via servlet communication. Now I want to implement the following:
    -The users have some attribute data in form of an XML file
    -I want them to upload this file to the server (I already have that functionality using the fileUpload libraries of Apache Commons) by calling the servlet from a pop-up html page (is there any other possibility to do the communication, i.e. getting files from the file system?)
    -the XML file should be parsed on the server and the content should be sent back to the calling applet for previewing reasons.
    -when the user gives his/her O.K. the data should be transferred to the database.
    Now there are some obstacles to overcome: When I upload the XML file to the server, I loose "contact" with the applet, i.e. the file is not connected with the applet code in any way. This is not a problem, when there is only one user at the time, but with many users loading up their data at the same time, things could get tricky.
    What I thought was to copy the XML file to a temp directory with a unique name, the name of which would be transferred back to the applet by another servlet that is called when the (upload)pop-up window closes. The name of the temp directory could be the ID of the applet thread (is there such an ID, if yes, how can it be retrieved?)
    Any suggestions (or just shaking heads concerning my complicated construction ;-) )
    Cheers and many thanks in advance
    Jan

    You may be able to read a file from the file system with the applet, but it may require you to sign the applet. If you can, then use an HttpURLConnection to the servlet and send the file that way.
    On the server side, you could create a session object (wether you actually need a session or not), and use the session's id as the key id for the directory name for the uploaded file. Session IDs are unique per client, and if the client handles cookies, then the same session will be used from one request to the next.
      session = request.getSession();
      String sessionID = session.getId();The response from the servlet would be a link to the server-side file. If you are using the Applet to send the request, you could get the response and automatically view the new file. Otherwise, you could send a page to the popup window saying: "Click This Link To See Your File" type of thing.

  • Help closing log xml file

    I've tried different ways of closing a logging file and all of them omit the </log> closing tag of the element. I can then go back and add the tag to view it in an xml parser but it annoying.
    I would have thought that the close() method of the handler instance would do it, but it didnt. Any thoughts?

    Without seeing your code (the relevant parts) it is very hard to identify the problem. Are you sure you flush/close the output stream after generating the XML file?
    Yair.

  • Trouble with multiline text box reading from xml file

    Hi,
    I have a text area, set to multiline.  For some reason, when my text imported from xml shows up in the box, it starts several lines down into the box.  So for example, my Text box is positioned with the top at the midpoint of my stage, but the text starts about 3/4 down the page, about half way down the text box.  Can someone please tell me why this is happening and what I can do to fix it?
    I noticed that when I put my cursor in the box and move it up and down, the rest of the text 'scrolls' into the frame, but otherwise it's cut off.  please help!
    Thanks,
    Stan

    Could you show your XML?

  • Screen Sharing suddenly fails with "Communication Error" in console log. File sharing works fine. Thoughts?

    I have been using Lion provided Screen Sharing for months without incident.  Suddenly (I do not believe there was an intervening o/s update), it will not connect.  I get a "Connection Error" dialog after a minute or two.  The console log shows the same thing w/o any useful info.  I can share files with the target mac fine and run time machine without error.  Any ideas on what's up?
    Thanks

    Check the host property configured in KM URL generator service.
    Navigate to
    System Administration -> System Configuration -> Knowledge Management -> Content Management -> Global Services -> (switch to advanced mode) ->URL generator Service -> Host
    You should use the fully qualified host name and port.
    Regards,
    Prasanna Krishnamurthy

  • Problem with Oracle 9i disk1 and 2 zip files

    I am able to download disks 1, 2, 3 but only disk 3 unzips without any problems. I've tried unzipping it with winzip and jar. I need the database so I can study for the oracle certs. I am downloading with a cable modem on a windows 2000 box. Any help would be appreciated. Is there a way to order a cd or something?

    Mathew I had the same problem. I've installed successfully when i unzipped Disk 2 and Disk 3 files again. You should unzip disk 2 and 3 files repeatedly because they weren't saved on your hard disk. you thought you saved them on your disk but you should check again on your disk. If not found, you should try to unzip again. Hope this helps.
    Bo

  • Issue with preference values defined in composite xml file

    We are on 11g PS2. I have defined dynamic preference value for Email List in my SOA composite and that is used by the bpel process in composite.
    <property name="preference.ErrorEmailTo">[email protected]</property>
    <property name="preference.AuditEmailTo">[email protected],[email protected]</property>
    We changed the Email list from System MBeans and it was getting reflected properly until we restart the system. When we restarted the system, the modified values were lost and they were replaced by the original values. This has happened on our production environment yesterday. Plese help.

    Thats a none thing, refer the below post to solve it.
    Oracle SOA 11g- bpel.preference
    Thanks,
    Vijay

  • Has Oracle any facility to import XML files into DB?

    Thanks in advance

    Yes it is possible. But never tried.
    Could you please go here.
    http://www.stanford.edu/dept/itss/docs/oracle/10g/appdev.101/b10790/xdb25loa.htm
    aijaz

  • Audio popping between clips with timeline imported from final cut xml file

    So i imported a final cut timeline that was synced with pluraleyes into adobe and between all the cuts there is an audible popping noise. I've tried using audio cross fade but it seems to make it worse. How can I fix this??

    If anyone else has this problem - you fix it by making sure you pan the audio to the center, not left or right.

Maybe you are looking for