XML parser Problem in Oracle 9iAS

Dear All,
I am trying to parse a xml file by using a SAX Parser.
I am getting error "oracle.xml.parser.v2.XMLParseException: Invalid InputSource.'. I have already included 'xerces.jar' in the classpath.
But it is always taking oracle xml parser.
How to change the default XML parser in Oracle 9ias.
This is my report.jsp File
<%@ page import="java.io.*,java.util.*,java.sql.*,javax.sql.*,javax.naming.*,javax.jms.*,iims.util.*,javax.xml.parsers.*,org.xml.sax.*,org.xml.sax.helpers.*, org.w3c.dom.*"%>
<%
generateTree();
%>
<%!
     //This method is to be called during startup. It will generate the template and rule nodes.
     public static void generateTree() throws Exception
          //Proceed with this method if the template and rule trees are not built already.
          //if (nodeTemplate != null && nodeRule != null) return;
          // Validate
          Node nodeRule = parseXml("d:\\ora9ias\\j2ee\\home\\Reports\\IIMSReportsTemplate1.xml");
     }//generateTree
%>
<%!
     //parse the input file and return a node.
     private static Node parseXml(String fileName) throws Exception
          //Parse the input file
          Document objDocument = null;
          DocumentBuilder objDocumentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
          objDocument = objDocumentBuilder.parse(fileName);
          Node nodeRet = objDocument;
          return nodeRet;
     }//parseXml
%>
Report template:
<ROOT>
     <HEADINGS>
          <HEADING1>H1</HEADING1>
          <HEADING2>H2</HEADING2>
          <HEADING3>H3</HEADING3>
          <HEADING4>H4</HEADING4>
          <HEADING5>H5</HEADING5>
          <HEADING6>H6</HEADING6>
     </HEADINGS>
     <ROWSETS>
          <ROWSET>
               <COLHDRS>
               </COLHDRS>
               <ROWS>
               </ROWS>
          </ROWSET>
     </ROWSETS>
     <Footer>
          <PageNo>Generate</PageNo>
          <Date>SystemDate</Date>
     </Footer>
</ROOT>
Stack Trace:
strRuleFileD:\ora9ias\j2ee\home\Reports\IIMSReportsRules.xml
oracle.xml.parser.v2.XMLParseException: Invalid InputSource.
at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:145)
at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:208)
at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:140)
at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:96)
at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:165)
at iims.REPORTS.IIMSGenerateReport.parseXml(IIMSGenerateReport.java:115)
at iims.REPORTS.IIMSGenerateReport.generateTree(IIMSGenerateReport.java:
100)
at iims.REPORTS.IIMSGenerateReport.buildXML(IIMSGenerateReport.java:147)
at PCREPORT_PROCESS.processBody(PCREPORT_PROCESS.java:3248)
at PCREPORT_PROCESS.doPost(PCREPORT_PROCESS.java:100)
at PCREPORT_PROCESS.doGet(PCREPORT_PROCESS.java:92)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
hain.java:59)
at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
stDispatcher.java:523)
at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
vletRequestDispatcher.java:269)
at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
tHandler.java:735)
at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java
:151)
at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
Please advise.
Thanks
Siva Kishor Rao U

Adding Xerces XML parser is not enough to make it work. Since some version of JDK (I think 1.4.X) XML parser is included and for older version it can be setup like a runtime option. And this is probably how ORACLE is using its XML parser. If you want to use different parser, you have to pass runtime option to JVM - for Xalan it looks like this:
-Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl
...this way it becomes default parser factory used by javax interface functions. Look for documentation on xml.apache.org
Myrra

Similar Messages

  • XML parsing problems with Oracle XML parser for PL/SQL

    I am using the Oracle XML parser for PL/SQL to transform XML into HTML usign XSL. The parser gives me sporadic errors trying to parse various XML documents. For the same XML source, the XMLPARSER will parse without errors one day and the next day will give me errors such as "invalid char in text", "Expected ';'.", or even Java null pointer exceptions.
    I have verified that the XML sources are well formed, so I am pretty certain that the problems I am having are bugs in the XMLPARSER.
    Is there going to be a XML parser for PL/SQL version 2 that will fix these bugs? If so, when??? If not, is there anything else I could do to fix these problems?
    Thanks!

    You can use the latest version.

  • WIJ 20002 xml Parser Problem - Rich Client

    Hi,
    I have a problem with the rich client on a new installation:
    Business Objects Enterprise XI 3.1 SP3 on Windows 2008 Standard.
    If I connect with the rich client "import document"is disabled.
    if I try to create a new document from the rich client it returns the error below (I used the rich client on two workstations):
    WIJ 20002
    Version: null
    Analisi dello stack:
    java.lang.RuntimeException: java.lang.RuntimeException: XML parser problem:
    XMLJaxpParser.parse(): Element type "ABOUT_Patentnumbers" must be followed by either attribute specification, ">" or "/>".
    at com.businessobjects.wp.xml.jaxp.XMLJaxpParser.parse (Unknown Source)
    at.com.businessobjects.webi.richclient.XMLviaOccaRC.getServerConfiguration (Unknown Source)
    Have you any solution?

    The fixpack 3.5 client resolves the problem.

  • Can't convert oracle.xml.parser.DTD to oracle.xml.parser.v2.DTD.

    I am getting the following Error while trying
    to compile the SampleMain.java file(Generating an XML document from a given Employee.dtd).
    I have set my classpath to use xmlparser.jar.
    D:\XMls>javac SampleMain.java
    SampleMain.java:65: Can't convert oracle.xml.parser.DTD to oracle.xml.parser.v2.DTD.
    main(java.l
    ang.String[]).
    generator.generate(dtd, doctype_name);

    Would you check the java parser version you are using? If using java parser V2, the normal lib name is xmlparserv2.jar.
    null

  • Problem installing Oracle 9iAS on Win2000

    Hi everybody,
    I have problem installing Oracle 9iAS 1.0.2.2.2.a on Win2000.
    The process instalation stops when the instalation bar shows 100% complete and copying welcome.html . After that, other processes should start, but it does not happen.
    I have installed in an other machine an Oracle 8.1.7 release 3 and I set up parameters as described into documentation. I didn4t applied any patch because I was using release 3 already.
    I have 1GB RAM , 1.5 Gb of virtual memory , 2 processors 1,3 Ghz,
    and 10 Gb on HD target on both servers(Database and Application Server).
    Does anybody have a sugestion ?
    Thanks.

    Kevin, I don't which version of 9iAS you are trying to install, but as far as I can tell no 9i versions of the application server are certified against Windows 2003, only 10g is certified against Windows 2003. So what's probably happening is the installer doesn't recognize Windows 2003 and thinks it's a non-patched version of Windows 2000. You should either install Windows 2000 SP1 (minimum) or install Oracle 10gAS.

  • XML parsing problem

    Hi, my problem is :
    In my Application i want to parse an XML file with DOM parser. The problem is that in my Project "MyProject -> Project Properties -> Libraries and Classpath"
    I have included some 15 libraries which are useful for my Application: ADF Faces Runtime 11, ADF Web Runtime and etc.
    Problems are causing the libraries: BC4J Runtime,ADF Model Runtime, MDS Runtime Dependencies
    because when added my source which is parsing an XML file stops working.The source code is:
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    File file =
    new File("C:\\Documents and Settings\\ilia\\Desktop\\begin.xml");
    Document doc = db.parse(file);
    Element root = doc.getDocumentElement();
    NodeList dots = root.getElementsByTagName("w:t");
    Element firstDot = (Element)dots.item(0);
    String textValue = firstDot.getFirstChild().getNodeValue();
    I use DOM because i need to change some values in the XML file, but its not working neither for reading nor for writing.When debugging I see that it gets the root of the xml but " firstDot.getFirstChild().getNodeValue() " returns null and it breaks with NullPointerException. And that's only when the libraries mentioned above are added to the project. Without them it works just fine !
    I don't know, it's like when added the parser validates my xml against some schema and returns null.
    The xml file is very simple MS Word Document saved as .xml .But I don't think that's the problem.
    Thanks in advance !
    iliya

    Hi all,
    I found the solution to my problem.The right way to parse and change an XML file with DOM parser using the Oracle XML Parser v2 should look like this:
    JXDocumentBuilderFactory factory =
    (JXDocumentBuilderFactory)JXDocumentBuilderFactory.newInstance();
    JXDocumentBuilder documentBuilder =
    (JXDocumentBuilder)factory.newDocumentBuilder();
    File file = new File("c:/Documents and Settings/ilia/Desktop/begin.xml");
    InputStream input =
    new FileInputStream(file);
    XMLDocument xmlDocument = (XMLDocument)(documentBuilder.parse(input));
    System.out.println("Encoding: " + xmlDocument.getEncoding());
    System.out.println("Version: " + xmlDocument.getVersion());
    NodeList namespaceNodeList =
    xmlDocument.getElementsByTagNameNS("http://schemas.microsoft.com/office/word/2003/wordml","t");
    XMLElement namespaceElement17 = (XMLElement)namespaceNodeList.item(17);
    namespaceElement17.getFirstChild().setNodeValue("someString");

  • XML Parser Problem

    am using XML parser for PL/SQL in Oracle9i Enterprise Edition Release 9.0.1.1.1
    When i run the sample xml program, i get error which is as follows. While compiling no errors. But while executing it reports error as given below.
    SQL> execute domsample('c:\xml', 'family.xml', 'errors.txt');
    begin domsample('c:\xml', 'family.xml', 'errors.txt'); end;
    ORA-20100: Error occurred while parsing: No such file or directory
    ORA-06512: at "COMMODITYBACKCONNECT.XMLPARSER", line 22
    ORA-06512: at "COMMODITYBACKCONNECT.XMLPARSER", line 79
    ORA-06512: at "COMMODITYBACKCONNECT.DOMSAMPLE", line 80
    ORA-06512: at line 1
    What need to be done to rectify the above problem.
    when i do the following validation check
    SQL>
    SQL> select substr(dbms_java.longname(object_name),1,30) as class, status
    2 from all_objects
    3 where object_type = 'JAVA CLASS'
    4 and object_name = dbms_java.shortname('oracle/xml/parser/v2/DOMParser')
    5 ;
    CLASS STATUS
    oracle/xml/parser/v2/DOMParser VALID
    oracle/xml/parser/v2/DOMParser VALID
    Please advice to how remove the following error:
    ORA-20100: Error occurred while parsing: No such file or directory

    Found the solution on metalink. There is a file under /$ORACLE_HOME/javavm/install/init_security.sql
    which needs to be run under username where you are installing xml parser.
    This step is not in readme.txt file provided as a part of download from the OTN website.

  • XML-Parser-Problem ? DataBindings.cpx

    Hello,
    Ok -I just will formulate my question somewhat different: It is possible that the XML-Parser has a Problem ? Please see the stuff below.
    I just got a warning:
    Project: D:\ORAJDev101320\jdev\mywork\LoginJSF\ViewController\ViewController.jpr
    D:\ORAJDev101320\jdev\mywork\LoginJSF\ViewController\src\login\DataBindings.cpx
    Warning(11,15): <Line 11, Column 15>: XML-24521: (Fehler) Element nicht abgeschlossen: 'Application'
    for the following xml file when compiling my sampe books (chapter9) code:
    <?xml version="1.0" encoding="UTF-8" ?>
    <Application xmlns="http://xmlns.oracle.com/adfm/application"
    version="10.1.3.40.66" id="DataBindings" SeparateXMLFiles="false"
    Package="login" ClientType="Generic">
    <pageMap>
    <page path="/home.jsp" usageId="homePageDef"/>
    </pageMap>
    <pageDefinitionUsages>
    <page id="homePageDef" path="login.pageDefs.homePageDef"/>
    </pageDefinitionUsages>
    </Application>
    After trying a little bit it turned out that the message disappears when
    the :
    Application xmlns="http://xmlns.oracle.com/adfm/application"
    is rewritten to
    Application xmlns="http://xmlns.oracle.com/adfm/Application"
    (Application with a upper first A)
    I have to point out that previously I did not by hand coding in this file.
    Is this a known issue.?
    And will/could these change do cause other/addition problems somewhere ?
    Andre
    Message was edited by:
    andreml
    null

    How about adding this tag <dataControlUsages/>? My JDev doesn't complain about your content.
    just my 2 cents
    --olaf                                                                                                                                                                                                                                               

  • PL/SQL XML Parser (problem getting text of a node)

    I am trying to get the contents of an ELEMENT (node with a CDATA section) using xmldom.getNodeValue(). However, it seems that there is a MAXIMUM number of characters that I can get back.
    I think I've found a work-around using xmldom.writeToBuffer() which seems to write all of the CDATA contents to a VARCHAR2 variable. Now my problem is that it is using strings like '&#60' and '&#38'. I recognize these strings as being "internal representations of '<' and '&' respectively. I'd not have to replace every occurence of these types of strings with the ASCII equivalent -especially since I don't know all of the possible '&#nn' strings that may crop up.
    Help!

    The use of "//" or "\\" appears to be a bug in JServer. It has
    been filed. You should not specify the path as a shared
    directory as a workaround.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    Andre (guest) wrote:
    : Oracle 8.1.5 database on NT
    : When i try running the example with command:
    : SQL*Plus> exec domsample
    : ('//SERVER_03/ORACLE/xml_tmp','family.xml', 'err.txt');
    : I get the following error:
    : ERROR at line 1:
    : ORA-20100: Error occurred while parsing:
    : //ORACLE/xml_tmp/err.txt
    : ORA-06512: at "OEF1_MGR.XMLPARSER", line 43
    : ORA-06512: at "OEF1_MGR.XMLPARSER", line 120
    : ORA-06512: at "OEF1_MGR.DOMSAMPLE", line 80
    : ORA-06512: at line 1
    : If i use backward-slashes '\' which should be OK for NT i get:
    : ORA-20100: Error occurred while parsing:
    : \\ORACLE\xml_tmp/err.txt
    : I tried using a directory (create directory ...) but this
    : results in the same error.
    : Thus anyone now how it should be done?
    : Thanks
    null

  • XML registration problem In Oracle

    Hi Friends,
    First of all thanks in advance for reading my post. Also, congratulate you all to this modified forum.
    AS redirected from Oracle SQL/PLSQL forum i've to post it here once again. Sorry for the duplicate posting in this forum. :(
    My main objective to publish XML through oracle by using some external dtd. I'm new to this - so don't have any clear idea regarding this. I've prepared one xml file using some dtd. Here are the details -
    OE>>
    OE>>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:03.41
    OE>>And, dtd script is as follows -
    Name of the dtd is StandardInterfaces.xsd
    <!DOCTYPE EmpSchedule_V2 [
    <!ELEMENT EmpSchedule_V2 (period+, EmployeeList+) >
    <!ELEMENT period (start,end) >
    <!ELEMENT start (#PCDATA) >
    <!ELEMENT end   (#PCDATA) >
    <!ELEMENT EmployeeList (emp)+ >
    <!ELEMENT emp (Employee_ID,First,Sal,HireDate) >
    <!ELEMENT Employee_ID (#PCDATA) >
    <!ELEMENT First (#PCDATA) >
    <!ELEMENT Sal (#PCDATA) >
    <!ELEMENT HireDate (#PCDATA) >
    ]>And, the xml is as follows -
    Name of the xml is - emp.xml
    <?xml version="1.0" encoding= "UTF-8" ?>
    <EmpSchedule_V2 xmlns= "http://localhost/satid/StandardInterfaces.xsd" >
    <period>
    <start>2006-03-12Z</start>
    <end>2006-03-15Z</end>
    </period>
    <EmployeeList>
    <emp>
    <Employee_ID>7369</Employee_ID>
    <First>Raja</First>
    <Sal>28000</Sal>
    <HireDate>2006-03-12Z</HireDate>
    </emp>
    </EmployeeList>
    </EmpSchedule_V2>I've configured my IIS Server 7.0 in my pc.
    And, when i'm executing like -
    http://localhost/satid/emp.xmlWhere satid is the virtual directory in the IIS Server - it is showing the xml. The actual path is - E:\public\schemas .
    Now, if i want to register it from oracle oe schema which has all the required privs - is throwing some error message.
    GRANT dba, xdbadmin TO OE;And, now i've tried almost all of the given technique, but unable to proceed any further.
    BEGIN
      DBMS_XMLSCHEMA.registerURI(
                                   'http://localhost/satid/StandardInterfaces.xsd',
                                   '/satid/StandardInterfaces.xsd',
                                   LOCAL=>TRUE,
                                   GENTYPES=>TRUE,
                                   GENBEAN=>FALSE,
                                   GENTABLES=>TRUE
    END;or,
    DECLARE
      v_return  BOOLEAN;
    BEGIN
      v_return := dbms_xdb.createFolder('/satid/');
      COMMIT;
    END;And,
    BEGIN
      DBMS_XMLSchema.registerSchema(
                                     schemaurl=>'http://localhost/satid/StandardInterfaces.xsd',
                                     schemadoc=>sys.UriFactory.getUri('/satid/StandardInterfaces.xsd')
    END; In the given two cases, both the server(IIS Server And OC4J) is running. I've checked it by the following command -
    http://Sat-PC:5560/
    http://localhost/satid/And, the error comes as -
    OE>BEGIN
      2    DBMS_XMLSchema.registerSchema(
      3      schemaurl=>'http://localhost/satid/StandardInterfaces.xsd',
      4      schemadoc=>sys.UriFactory.getUri('/satid/StandardInterfaces.xsd'));
      5  END;
      6  /
    BEGIN
    ERROR at line 1:
    ORA-31001: Invalid resource handle or path name "/satid/StandardInterfaces.xsd"
    ORA-06512: at "SYS.XDBURITYPE", line 4
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 167
    ORA-06512: at line 2
    Elapsed: 00:00:01.03
    OE>
    OE>
    OE>DECLARE
      2    v_return  BOOLEAN;
      3  BEGIN
      4    v_return := dbms_xdb.createFolder('/satid/');
      5    COMMIT;
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:08.42
    OE>
    OE>
    OE>BEGIN
      2    DBMS_XMLSchema.registerSchema(
      3      schemaurl=>'http://localhost/satid/StandardInterfaces.xsd',
      4      schemadoc=>sys.UriFactory.getUri('/satid/StandardInterfaces.xsd'));
      5  END;
      6  /
    BEGIN
    ERROR at line 1:
    ORA-31001: Invalid resource handle or path name "/satid/StandardInterfaces.xsd"
    ORA-06512: at "SYS.XDBURITYPE", line 4
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 167
    ORA-06512: at line 2
    Elapsed: 00:00:00.00
    OE>
    OE>Now, my question is - will i have to configure OC4J? If yes, can anyone point me the exact document. I've tried to find over internet. But, so much content come up with this topic - that makes me more confused.
    In other case, can anyone tell me how to use IIS Server 7.0 in this regard?
    Or, if you have any other suggestion kindly share that with me.
    Thanks for being so patience to read my post. I'll be waiting for your reply.
    Regards.

    Hi Frinds,
    I've tried in this way to register one customised XML schema. But, unable to register.
    OE>>
    OE>>CREATE OR REPLACE PROCEDURE XML_REG
      2  IS
      3    l_temp  clob;
      4    l_text  varchar2(900);
      5  BEGIN
      6    l_temp := httpuritype('http://localhost/satyakid/StandardInterfaces.xsd').getclob;
      7    l_text := substr(l_temp, 1, 900);
      8    dbms_output.put_line(l_text);
      9   
    10    DBMS_XMLSCHEMA.registerSchema('StandardInterfaces.xsd', l_text);
    11  END XML_REG;
    12  /
    Procedure created.
    Elapsed: 00:00:00.23
    OE>>
    OE>>
    OE>>exec XML_REG;
    <!DOCTYPE EmpSchedule_V2 [
    <!ELEMENT EmpSchedule_V2 (period+, EmployeeList+) >
    <!ELEMENT period (start,end) >
    <!ELEMENT start (#PCDATA) >
    <!ELEMENT end   (#PCDATA) >
    <!ELEMENT EmployeeList (emp)+ >
    <!ELEMENT emp (Employee_ID,First,Sal,HireDate) >
    <!ELEMENT Employee_ID (#PCDATA) >
    <!ELEMENT First (#PCDATA) >
    <!ELEMENT Sal (#PCDATA) >
    <!ELEMENT HireDate (#PCDATA) >
    ]>
    BEGIN XML_REG; END;
    ERROR at line 1:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00007: unexpected end-of-file encountered
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 3
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 14
    ORA-06512: at "OE.XML_REG", line 10
    ORA-06512: at line 1
    Elapsed: 00:00:00.22
    OE>>
    OE>>
    OE>>
    OE>>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.84
    OE>>Where am i missing?
    Please advice.
    Regards.

  • Faces-config.xml XML parser problem ???

    I'm taking below error message when I was opening faces-config.xml file with diagram view, what's the exact solution of this problem???
    Message
    BME-99100: An error has been reported from the XML parser
    Cause
    The parse has reported the following error:
    <Line 24, Column 2>: XML-20201: (Fatal Error) Expected name instead of <.
    Action
    Thanks for all...
    Message was edited by:
    user559176

    I looked very well, there was'nt any error on line 24 about "<", I think if the size of faces-confic.xml file increased JDeveloper XML Parser cannot parse with high file size, what're other solutions?

  • PL/SQL XML Parser - problem running example

    Oracle 8.1.5 database on NT
    When i try running the example with command:
    SQL*Plus> exec domsample
    ('//SERVER_03/ORACLE/xml_tmp','family.xml', 'err.txt');
    I get the following error:
    ERROR at line 1:
    ORA-20100: Error occurred while parsing:
    //ORACLE/xml_tmp/err.txt
    ORA-06512: at "OEF1_MGR.XMLPARSER", line 43
    ORA-06512: at "OEF1_MGR.XMLPARSER", line 120
    ORA-06512: at "OEF1_MGR.DOMSAMPLE", line 80
    ORA-06512: at line 1
    If i use backward-slashes '\' which should be OK for NT i get:
    ORA-20100: Error occurred while parsing:
    \\ORACLE\xml_tmp/err.txt
    I tried using a directory (create directory ...) but this
    results in the same error.
    Thus anyone now how it should be done?
    Thanks
    null

    The use of "//" or "\\" appears to be a bug in JServer. It has
    been filed. You should not specify the path as a shared
    directory as a workaround.
    Oracle XML Team
    http://technet.oracle.com
    Oracle Technology Network
    Andre (guest) wrote:
    : Oracle 8.1.5 database on NT
    : When i try running the example with command:
    : SQL*Plus> exec domsample
    : ('//SERVER_03/ORACLE/xml_tmp','family.xml', 'err.txt');
    : I get the following error:
    : ERROR at line 1:
    : ORA-20100: Error occurred while parsing:
    : //ORACLE/xml_tmp/err.txt
    : ORA-06512: at "OEF1_MGR.XMLPARSER", line 43
    : ORA-06512: at "OEF1_MGR.XMLPARSER", line 120
    : ORA-06512: at "OEF1_MGR.DOMSAMPLE", line 80
    : ORA-06512: at line 1
    : If i use backward-slashes '\' which should be OK for NT i get:
    : ORA-20100: Error occurred while parsing:
    : \\ORACLE\xml_tmp/err.txt
    : I tried using a directory (create directory ...) but this
    : results in the same error.
    : Thus anyone now how it should be done?
    : Thanks
    null

  • Installation problems with oracle 9iAS v1.0.2.2.2a

    Dear all, i had been having a problem to install oracle 9iAS v1.0.2.2.2a on Windows 2000 Service Pack 2 edition for the past 5 days.
    I had read through the installation guide and follow steps by steps instructions. but the installer would just stop at 100% "Copying welcome.html or Copying demo.gif". It only leave with a step that it would reach the configuration setup. I am wondering anyone encounter this problem.
    I had tried to install on notebook and desktop with the same platform. On the notebook, i have oracle 9i database release 2 installed on it. Thinking it might be a compatibility problem, i tried installing oracle 9iAS on a desktop with a oracle 9i database client. But i would want the application server and database to run on the same machine. Should I wait for the oracle 9iAS release 2 for NT or anyone have any advise on my problem.
    i would appreicate if anyone can help. thank you.

    Maybe this is a bit of a simple question. But, do you remember how long you waited, when the progress bar indicated 100%? The installation progress status does indicate "100%" for a while, doing some "last minute" stuff, before moving on to the "Configuration Tools" phase.
    Yes, as Ashesh stated, Oracle9iAS 10222a and Oracle9i Database can co-exist on the same machine, as long as they are in separate ORACLE_HOMEs. And, yes, the structure you described (\oracle\database and \oracle\iASHome) does qualify as "separate ORACLE_HOMEs".
    Cheers!

  • CLOSE_WAIT problems with Oracle 9iAS on Solaris

    All,
    We have some simple JSP + Sevlets running on Oracle 9iAS on a Solaris server. After the App Server has been running for a couple of minutes we start to get several TCP connections with a CLOSE_WAIT status - as shown by a netstat output.
    These seem to be a result of a FIN_WAIT_2 and CLOSE_WAIT pairing eg
    Local Remote Swind Send-Q Rwind Recv-Q Status
    SERVER.43009 SERVER.80 49152 0 49152 0 CLOSE_WAIT
    SERVER.80 SERVER.43009 49152 0 49152 0 FIN_WAIT_2
    Over time the FIN_WAIT_2 is removed, leaving the CLOSE_WAITs.
    Has anyone else had this problem?
    Keith

    We're having similar problem. We have lot's of close_wait between Apache and OC4J.
    Swetal

  • Installation problem of Oracle 9iAS rel2 on redhat advanced server 2.1

    Hi,
    I am trying to install Oracle 9ias Rel2 on redhat advanced server 2.1
    Following instructions i downloaded and installed the binutils patch binutils-2.11.90.0.8-13.i386.rpm
    I have set ORACLE_HOME appropriately and created a new user oracle.
    During installtion of 'J2EE and WebCache' , when it starts linking, the installer gives the following error
    Error in invoking target ntcontab.o of makefile /home/oracle/Appserver/network/lib/ins_net_client.mk
    Retry, Ignore,cancel...
    If i press ignore, it gives series of such errors.
    My ORACLE_HOME is /home/oracle/Appserver/
    I am trying to set up the production environment.
    Please help!!!
    thanks
    srinath

    Check out Metalink Note:191567.1
    (http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=191567.1)
    Step 11.
    11. Error in invoking target relink of makefile
    /home/ias/infrastructure/precomp/lib/ins_precomp.mk      
    To fix it:      
    As ias go to $ORACLE_HOME/bin      
    vi genclntsh      
    change line LD_SELF_CONTAINED="-z defs" to LD_SELF_CONTAINED="" (line 147 of 200)      
    save genclntsh file      
    ./genclntsh      
    Created /home/ias/infrastructure/lib/libclntst9.a      
    Click "Retry" at error popup window. Installer will continue.      
    Link successful.

Maybe you are looking for

  • How do I close multiple documents opened in Finder when the files are loading and the Application is not responding?

    I was moving 90 files from one folder to another and instead accidently double clicked all the files I had selected and they all opened at once and now they are all stuck trying to load and the program is not responding. When I put my mouse over the

  • StarOffice update 10

    When installing the new update I receive the following error message: Error 1316A network error C:\windows\installer\staroffice8.msi Can anyone help Thanks

  • TableLayout issues ***Urgent, please help***

    Gurus, First off, singleDefaultColumn layout is not an option. I'm using tableLayout to format my UIX. The problem lies with the fact that I'm using for cellformat to form a 1X4 grid. In order to align the messageTextInput properly, I'm having to sup

  • Can Adobe Muse be run on more than one computer?

    Hi,I love Adobe Muse but it has created an issue between me and my workers in updating the website. So I'm thinking about putting another copy on a Windows VPS, so that my workers can login and make modifications  as needed. Can I do this under a sin

  • Setting Up SAP JVM in Eclipse IDE: JRE name is already in use

    In documentation "Setting Up SAP JVM in Eclipse IDE" (https://help.hana.ondemand.com/help/frameset.htm?7613eaad711e1014839a8273b0e91070.html) a definition for a JRE must be added, although in step before that one a JRE has been created. If one tries