Oracle's XDK positioning vs. xalan/xerces in OC4J

How is Oracle going to position its XDK versus the XML Parser/XSLT Stylesheet processor (Xerces/Xalan) components in OC4J? Are they interoperable?
<cross posted in XML forum>

Over time, the Xalan/Xerces will be replaces in OC4J by Oracle XML Components via the JAXP 1.1 support which makes XML Parsers and XSLT processors in Java pluggable.
The Oracle SOAP implementation that comes with IAS 1.0.2.2 already has swapped out Xerces with Oracle XML Parser using Oracle XML Parser's JAXP 1.0 support.

Similar Messages

  • Oracle-xsl-mapper-position

    What is the exact use of oracle-xsl-mapper-position in xslt?
    Can you please help with some example.
    Thanks in advance

    oracle-xsl-mapper-position in xslt to find out the position of a node in a loop.
    For e.g.
    <Array>
         <String1></String1>
         <String2></String2>   
    </Array>
    Now if we want the position of each node in Array then we use the position() function.
    Regards,
    Anshul

  • Oracle Fin/Functional Position at Bay Area

    Oracle Fin/Functional Position
    Need profiles with big 5 experience
         Should be a Functional person but knows technical stuff like API, Coding, and Write SQL, Designing documents and talking to end users
         Candidate should have worked on Global Delivery model and have complete process Knowledge
         Good with Education Background (Masters) and If education in India (Well known college)
         System Development Methodologies
         Worked in top companies like Deloitte, Infosys, Wipro / Oracle / KPMG
         Large scale implementation
         Exposure to integration
         Good at designing application
         Should be very Strong with A/R, customization, Run Queries
    contact [email protected] or 510.709.3820

    Report Abuse!
    This is a technical forum, and if you are looking to hire someone, there are many resumes uploaded in the job websites!

  • WLS6 Updating XALAN + XERCES

    Is there an easy way to update the internal versions of XERCES and
    XALAN that Weblogic uses?
    There are a few bugs in XALAN 1.2 that I would rather not have to deal
    with right now.
    I created an XML Registry, but I believe this only applies to the XML
    Parser and not the XSL Processor.
    Any help appreciated.
    Thanks.
    Dylan Parker

    They were renamed because people were doing just what you describe --
    replacing the implementation internal to WLS' XML functions. Because we had
    not build the product with the new versions of the parser, changing the
    implementation would break our product. So, we changed the package names to
    protect them.
    Michael Girdley
    BEA Systems
    Learning WebLogic? http://learnweblogic.com
    "Barry Dunne" <[email protected]> wrote in message
    news:[email protected]...
    I think the questions is really why did BEA change the package names ofthe
    xalan/xerces classes.
    If they had just kept the standard ones everything would have been fine,we
    could just have put the new version ahead of it in the classpath.
    I had the following problem when I migrated a bean that returned xml from
    WL5.1 to WL6.0:
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.apache.xerces.dom.DocumentImpl;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    DocumentImpl doc = (DocumentImpl) db.newDocument();
    Doing this I got a ClassCastException when the last line executes, the
    newDocument() method returns a
    weblogic.apache.xerces.dom.DocumentImpl
    but I want an
    org.apache.xerces.dom.DocumentImpl
    To get around that problem you can tell the Factory which implementationto
    use by adding 3 lines of code to the sample above:
    String oldXMLFactory =
    System.getProperty("javax.xml.parsers.DocumentBuilderFactory");
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    "org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    oldXMLFactory);
    DocumentImpl doc = (DocumentImpl) db.newDocument();
    This will let WebLogic use it's own xml classes internally, and let youuse
    xerces1.3 for your own work.
    I don't know about xalan as I have not used it but I hope that helps.
    Barry.
    "Dylan" <[email protected]> wrote in message
    news:[email protected]...
    Is there an easy way to update the internal versions of XERCES and
    XALAN that Weblogic uses?
    There are a few bugs in XALAN 1.2 that I would rather not have to deal
    with right now.
    I created an XML Registry, but I believe this only applies to the XML
    Parser and not the XSL Processor.
    Any help appreciated.
    Thanks.
    Dylan Parker

  • How can I use a 3rd party XML parser such as xerces with OC4J ?

    Hi all tech experts,
    I am using Oracle Application Server 10g Release 2 (10.1.2) and i have
    installed Portal and Wireless and OracleAS Infrastructure on the same
    computer.
    i tried all the solutions on this thread
    Use of Xerces Parser in out application with Oracle App Server 9.0.4
    but still fighting.
    I have also posted this query on OTN on following thread
    How can I use a 3rd party XML parser such as xerces with OC4J?
    but no reply....
    Please help me on this issue.
    Since OC4J is preconfigured to use the Oracle XML parser which is xmlparserv2.jar.
    i have read the following article which states that
    OC4J is preconfigured to use the Oracle XML parser. The Oracle XML parser is fully JAXP 1.1 compatible and will serve the needs of applications which require JAXP functionality. This approach does not require the download, installation, and configuration of additional XML parsers.
    The Oracle XML parser (xmlparserv2.jar) is configured to load as a system level library of OC4J through it's inclusion as an entry in the Class-Path entry of the oc4j.jar Manifest.mf file. This results in the Oracle XML parser being used for all common deployment and packaging situations. You are not permitted to modify the Manifest.mf file of oc4j.jar.
    It must be noted that configuring OC4J to run with any additional XML parser or JDBC library is not a supported configuration. We do know customers who have managed to successfully replace the system level XML parser and the Oracle JDBC drivers that ship with the product, but we do not support this type of configuration due to the possibility of unexpected system behavior and system errors that might occur from replacing the tested and certified libraries.
    If you absolutely must use an additional XML parser such as xerces, then you have to start OC4J such that the xerces.jar file is loaded at a level above the OC4J system classpath. This can be accomplished using the -Xbootclasspath flag of the JRE.
    i have also run the following command
    java -Xbootclasspath/a:d:\xerces\xerces.jar -jar oc4j.jar
    but no success.
    How could i utilize my jar's like xerces.jar and xalan.jar for parsing instead of OC4J in-built parser ?
    All reply will be highly appreciated.
    Thnx in advance to all.
    Neeraj Sidhaye
    try_catch_finally @ Y !

    Hi Neeraj Sidhaye,
    I am trying to deploy a sample xform application to the Oracle Application Server (10.1.3). However, I encountered the class loader issue that is similar to your stuation. I tried all the three solutions but the application is still use the Oracle xml paser class. I am wondering if you have any insight about this?
    Thanks for your help.
    Xingsheng Qian
    iPass Inc.
    Here is the error message I got.
    Message:
    java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
    Stack Trace:
    org.chiba.xml.xforms.exception.XFormsException: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.dispatch(Unknown Source)
         at org.chiba.xml.xforms.Container.initModels(Unknown Source)
         at org.chiba.xml.xforms.Container.init(Unknown Source)
         at org.chiba.xml.xforms.ChibaBean.init(Unknown Source)
         at org.chiba.adapter.servlet.ServletAdapter.init(ServletAdapter.java:153)
         at org.chiba.adapter.servlet.ChibaServlet.doGet(ChibaServlet.java:303)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassCastException: oracle.xml.parser.v2.XMLElement
         at org.chiba.xml.xforms.Instance.iterateModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.initializeModelItems(Unknown Source)
         at org.chiba.xml.xforms.Bind.init(Unknown Source)
         at org.chiba.xml.xforms.Initializer.initializeBindElements(Unknown Source)
         at org.chiba.xml.xforms.Model.modelConstruct(Unknown Source)
         at org.chiba.xml.xforms.Model.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.performDefault(Unknown Source)
         at org.chiba.xml.xforms.XFormsDocument.dispatchEvent(Unknown Source)
         at org.apache.xerces.dom.NodeImpl.dispatchEvent(Unknown Source)
         ... 18 more

  • Oracle Application Server 10.1.3.3.0 OC4J Restarting

    Oracle ADF application is deployed to the AS from JDeveolper 10.1.3.3.0 and runs fine initially but after continual use the OC4J returns a runtime exception and restarts.
    1. This instance is not associated with an infrastructure but it is on a server with 10.1.2.2.0 Infra and middle tier instances.
    2.The error occurs while using a web app. It all works fine at first, can nav pages, view records from the db just fine. Then after say 15mins the page returns Internal Server Error message at which time I check the Oracle app server ctrl to find the error below. That error is displayed in the actual app server ctrl page.
    After a few minutes I can refresh the web app page and it returns to the home page working fine again until the next exception and restart. Sometimes as a result of this issue the server will not OC4J will not restart and the page will stop working altogether. At this point I cannot ever restart the OC4J. I have to Restart the entire server machine.
    An error has occurred.
    Caught exception calling invoke on oc4j:name=Singleton,type=OpmnConfig
    Exception thrown in RequiredModelMBean while trying to invoke operation invoke
    Object reference no longer valid (disconnected)
    Object reference no longer valid (disconnected)
    Hide Additional Trace Information
    oracle.j2ee.admin.jmx.exception.config.ConfigMBeanException:
    Caught exception calling invoke on oc4j:name=Singleton,type=OpmnConfig
    at oracle.oc4j.admin.management.farm.util.OpmnProxyUtil.invoke(OpmnProxyUtil.java:204)
    at oracle.oc4j.admin.management.farm.util.OpmnProxyUtil.invokeSingle(OpmnProxyUtil.java:129)
    at oracle.oc4j.admin.management.farm.util.OpmnProxyUtil.invokeSingle(OpmnProxyUtil.java:99)
    at oracle.oc4j.admin.management.farm.mbeans.OpmnConfigAgr.getNotificationServerAttrs(OpmnConfigAgr.java:200)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
    at oracle.oc4j.admin.jmx.server.state.LocalizationFilterMBeanServer.invoke(LocalizationFilterMBeanServer.java:579)
    at oracle.oc4j.admin.management.farm.util.OpmnProxyUtil.invoke(OpmnProxyUtil.java:202) ... 50 more
    Caused by: java.io.IOException: Object reference no longer valid (disconnected)
    at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.invoke(RemoteMBeanServer.java:820)
    at oracle.oc4j.admin.management.farm.mbeans.JVMAgr.invoke(JVMAgr.java:1481)
    at sun.reflect.GeneratedMethodAccessor40.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36)
    at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585) at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:239)
    at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071) ... 58
    more Caused by: com.evermind.server.rmi.RMIConnectionException: Object reference no longer valid (disconnected)
    at com.evermind.server.rmi.RemoteInvocationHandler.invoke(RemoteInvocationHandler.java:60)
    at com.evermind.server.rmi.RecoverableRemoteInvocationHandler.invoke(RecoverableRemoteInvocationHandler.java:28)
    at com.evermind.server.ejb.StatefulSessionRemoteInvocationHandler.invoke(StatefulSessionRemoteInvocationHandler.java:38)
    at __Proxy8.invoke(Unknown Source) at oracle.oc4j.admin.jmx.client.MBeanServerEjbRemoteSynchronizer.invoke(MBeanServerEjbRemoteSynchronizer.java:144)
    at oracle.oc4j.admin.jmx.client.RemoteMBeanServer.invoke(RemoteMBeanServer.java:816) ... 68 more

    Greetings,
    First I would recommend turning up your logging level to FINEST to glean more informatin regarding the error that is occurring. Please post these data along with any related Messaging service configuration information. It is possible that two services are attempting to make the same connection and it is causing one or the other to fail. You might also review the information in your opmn config file. Does the 10.1.2.2 instance remain running during the OC4j restart?
    OPMN Configuration:
    10.1.20 How to Specify Ports for State Replication in OPMN
    When you deploy an application utilizing state replication in a managed Oracle Application Server, OPMN dynamically allocates the ports that are used to propagate state across the cluster. You can restrict this allocation to a range of ports for an application that has peer-to-peer replication enabled. Specifying ports for state replication might be necessary in an installation with a firewall or network that uses a well-defined port range.
    To specify a range of ports for peer-to-peer state replication
    Add a <port> element to an OC4J instance configuration in the opmn.xml file.
    Specify the name of an application that has peer-to-peer replication enabled as the value of the id attribute of the <port> element.
    Specify a range of ports in the range attribute of the <port> element.
    For example, for deployment of an application named rac-web that is set up for peer-to-peer replication, the line labeled <port id=rac-web .../> in the following OC4J instance configuration tells OPMN to use ports 15213 to 15214 for state replication:
    <port id="default-web-site" range="80-100" protocol="http"/>
    <port id="rmi" range="12401-12500"/>
    <port id="rmis" range="12701-12800"/>
    <port id="jms" range="12601-12700"/>
    <port id="rac-web" range="15213-15214"/>
    For more information about state replication, see Chapter 9, "Application Clustering in OC4J," in the Oracle Containers for J2EE Configuration and Administration Guide.Quoted from:
    http://download.oracle.com/docs/cd/B32110_01/relnotes.1013/b32199/oc4j.htm#CEGICDEF-Michael

  • Urgent : Oracle AS 10.1.2.0.2 : Switch OC4J's JDK version to 1.3 ?

    Hi,
    We have inherited an EJB application which was written during the hey days of JDK 1.3.
    We have an Oracle AS 10.1.2.0.2 & we have successfully migrated most of the other Applications / Oracle J PDK Applications which were developed using JDK 1.4. Unfortunately, we now need to migrate the older EJB application to Oracle AS 10.1.2.0.2.
    We tried a few dry runs with our staging Oracle As 10.1.2.0.2 instances - unfortunately, the application's code just won't compile - it looks as if we need to rewrite our application to compile under JDK 1.4. We can do this - but, we are hard pressed for time & we are looking for a solution that can bail us out of this tight corner.
    I would like to know if we can switch the OC4J's JDK version to 1.3 in any supported way ? If yes, we can just install another Oracle AS J2EE instance dedicated to out legacy ( !! ) EJB Application at this time & think about reqwiting & performance tuing at leisure.
    If not, what other options to I have ? Have I provided enough information or do I need to post additional infromation ? Please do let me know if more information is needed.
    Thanks in advance,
    Sandeep

    Hi,
    We also tried to follow Metalink Note:351476.1 which talks about changing the JAVA version used to run a specific OC4J instance. However, after following the steps, when we try to start our OC4J instance, we see this error:-
    D:\OraInfra\opmn\bin>opmnctl startproc process-type=OC4J_JDK13
    opmnctl: starting opmn managed processes...
    =============================================================================
    opmn id=nac014:6200
    0 of 1 processes started.
    ias-instance id=OraInfra.myHost.idc.oracle.com
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    OC4J/OC4J_JDK13/default_island
    Error
    --> Process (pid=6240)
    failed to start a managed process after the maximum retry limit
    Log:
    D:\OraInfra\opmn\logs\OC4J~OC4J_JDK13~default_island~1
    Now, when I look into the log file, I see this ( !! ) :-
    06/02/21 18:18:11 Start process
    06/02/21 18:18:13 Start process
    06/02/21 18:18:15 Start process
    I understand that OC4J tried thrice before giving up, but if there are no error, I don't know why OC4J just refuses to start ? Truly, the mystery deepens....
    Regards,
    Sandeep

  • Oracle XML / XDK has nightmarishly bad performance

    Just wanted to share the results of some testing I've done recently. Thought you would all enjoy this information.
    [JAVA_HOME is JDK1.4.2_04]
    Oracle XML & XSLT Java library (would not run with -Xmx256m, OutOfMemory)
    [xdk_version_10.1.0.3.0_production which comes with JDev 10.1.2]
    $ time java -cp ".;../java;../../../../jdev/jdev1012_base/lib/xmlparserv2.jar" -Xmx512m TraxExamples wayne2
    real 189m9.400s
    user 0m0.010s
    sys 0m0.020s
    Saxon b8-6 Java library
    $ time java -cp ".;../java;../../saxon8.jar" -Xmx256m TraxExamples wayne2
    real 1m23.479s
    user 0m0.010s
    sys 0m0.010s
    Saxon 6-5-4 Java library
    $ time java -cp ".;../java;../../../saxon6-5-4/saxon.jar" -Xmx256m TraxExamples wayne2
    real 1m24.749s
    user 0m0.010s
    sys 0m0.020s
    Sun JDK 1.4.2_04 built-in XML and XSL libraries
    $ time java -cp ".;../java" -Xmx256m TraxExamples wayne2
    real 4m1.253s
    user 0m0.010s
    sys 0m0.020s
    Literally, the only difference is the XML libraries being used for the transformation. Same exact input xml & xslt files and Java code. And the time difference is 1.5min (Saxon) vs 189min (Oracle). Even the Sun JDK libraries are no slouch vs Oracle XDK at just over 4mins.
    We might be doing something in our XSLT that is particularly "bad" for Oracle, but I'm not sure of specifics, I just know these results show Oracle to be the wrong choice for our specific transformations and messages.
    (The test file is about 20mb XML and the XSLT is quite simple.)
    I'll try this experiment again when 10.1.3 is final and see if things are improved. For now, I'd advise anyone considering XDK to also evaluate other XSL engines!!

    Sure, here's the code, just modified TraxExamples.java from the Saxonb8-6 release (samples/java/TraxExamples.java) by swapping in my own XML and XSL files instead of the ones that are included with Saxon8.
    * Show the simplest possible transformation from File
    * to a File.
    public static void exampleSimple2(String sourceID, String xslID)
    throws TransformerException, TransformerConfigurationException {
    TransformerFactory tfactory = TransformerFactory.newInstance();
    Transformer transformer =
    tfactory.newTransformer(new StreamSource(xslID));
    System.out.println("TransformerFactory is: " + tfactory.getClass().getName());
    System.out.println("Transformer is: " + transformer.getClass().getName());
    transformer.transform(new StreamSource(sourceID),
    new StreamResult(new File("exampleSimple2.out")));
    I simply added my own call to this method using my own file strings and named it "wayne2" so I could call it directly.
    Then as you can see above, I simply changed the JAR files in my classpath before executing the tests. Otherwise, everything in the various tests is identical.
    I can probably post the XSLT and a sample XML file if there's enough interest. I don't see a simple way to attach a file to a message in this forum...

  • Free ORACLE 10g - XDK

    Please help my with this problem:
    XDK is setted up during the instalation or I must setting up after the instalation.
    I do not know where I can set up variables of the enviroment for XDK.
    Thank you for your help.
    ONDRAP1

    My sample XML is not running. XSQLConfig.xml file is connects to the user SCOTT/tiger. I don't know where I can set up the name of my database. The name of my database is JANA.
    CONFIG.SYS:
    set ORACLE_HOME=D:\oracle\product\10.2.0\pro_1
    set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%/LIB/xmlparserv2.jar
    I can run following XML:
    helloworld-xsql.xml:
    <?xml version="1.0"?>
    <xsql:query connection="demo" xmlns:xsql="urn:oracle-xsql">
    SELECT 'Hello World' AS greeting FROM DUAL
    </xsql:query>
    <!--
    | $Author: kkarun $
    | $Date: 20-apr-00.23:50:22 $
    | $Source: /vobs/oracore3/demo/xdk/java/xsql/demo/helloworld/helloworld-xsql.xml.mkelem $
    | $Revision: /main/0 $
    +-->
    helloworld.xsql:
    <?xml version="1.0"?>
    <xsql:query connection="demo" xmlns:xsql="urn:oracle-xsql">
    SELECT 'Hello World' AS greeting FROM DUAL
    </xsql:query>
    <!--
    | $Author: kkarun $
    | $Date: 20-apr-00.23:50:22 $
    | $Source: /vobs/oracore3/demo/xdk/java/xsql/demo/helloworld/helloworld-xsql.xml.mkelem $
    | $Revision: /main/0 $
    +-->
    Thank you very much.
    ONDRAP1

  • Support to Interpret Log Error in Oracle Bpel Server 10.1.3.3.1 (OC4J)

    I New in this part os Support in SOA Suite in my company, I would like know if any can help-me to identify the problem and a Solution for the follow error:
    Module name found: default
    Processing a 'POST' for path '/solucionarOcorrencia'
    Looking for Action instance for class org.springframework.web.struts.DelegatingActionProxy
    Returning existing Action instance
    DelegatingActionProxy with mapping path '/solucionarOcorrencia' and module prefix '' delegating to Spring bean with name [solucionarOcorrencia]
    Returning cached instance of singleton bean '/solucionarOcorrencia'
    <2013-01-14 15:47:54,062> <ERROR> <wm.collaxa.cube.services> <PCException::<init>> Identity Service cannot find user.
    <2013-01-14 15:47:54,066> <ERROR> <wm.collaxa.cube.services> <PCException::<init>> Error occurs while getting user "711763" in realm "jazn.com"
    <2013-01-14 15:47:54,069> <ERROR> <wm.collaxa.cube.services> <PCException::<init>> Verify that user "711763" exits in realm "jazn.com". Contact oracle support if error is not fixable.
    Executing SQL query [exec SPWM2001 'S09', '34422235',00,00,'EMER0001','ETP01',00,00,'',00,'','']
    Fetching JDBC Connection from DataSource
    Returning JDBC Connection to DataSource
    Executing SQL statement [SPWM2380 44141512, 1,'EMER0001','ETP01','34422235',0]
    Fetching JDBC Connection from DataSource
    Returning JDBC Connection to DataSource
    Executing SQL query [ SPWM2083 'EMER0001','ETP01','34422235']
    Fetching JDBC Connection from DataSource
    Returning JDBC Connection to DataSource
    Executing SQL statement [SPWM2381 44141512,1,'EMER0001','ETP01','34422235', 1]
    Fetching JDBC Connection from DataSource
    Returning JDBC Connection to DataSource
    Executing prepared SQL update
    Executing prepared SQL statement [SPWM2110 'EMER0001','ETP01','34422235',3, ? ,'M530',?,'698560','P' ]
    Fetching JDBC Connection from DataSource
    Setting SQL statement parameter value: column index 1, parameter value [1], value class [java.lang.Integer], SQL type unknown
    Setting SQL statement parameter value: column index 2, parameter value [....], value class [java.lang.String], SQL type unknown
    SQL update affected 1 rows
    SQLWarning ignored: SQL state '010P4', error code '0', message [010P4: An output parameter was received and ignored.]
    Returning JDBC Connection to DataSource
    Executing SQL statement [ SPWM2095 44141512,'ETP01','698560',10]
    Fetching JDBC Connection from DataSource
    Returning JDBC Connection to DataSource
    <2013-01-14 15:47:54,101> <ERROR> <wm.collaxa.cube.services> <PCException::<init>> Identity Service cannot find user.
    <2013-01-14 15:47:54,106> <ERROR> <wm.collaxa.cube.services> <PCException::<init>> Error occurs while getting user "711763" in realm "jazn.com"
    <2013-01-14 15:47:54,111> <ERROR> <wm.collaxa.cube.services> <PCException::<init>> Verify that user "711763" exits in realm "jazn.com". Contact oracle support if error is not fixable.
    processForwardConfig(ForwardConfig[name=enviado,path=/fluxos/enviaMsg.jsp,redirect=false,contextRelative=false])
    Get module name for path /caixaEntrada.do
    Module name found: default
    Processing a 'POST' for path '/caixaEntrada'
    Looking for Action instance for class org.springframework.web.struts.DelegatingActionProxy
    Returning existing Action instance
    DelegatingActionProxy with mapping path '/caixaEntrada' and module prefix '' delegating to Spring bean with name [caixaEntrada]
    Returning cached instance of singleton bean '/caixaEntrada'
    processForwardConfig(ForwardConfig[name=success,path=/caixaEntrada.jsp,redirect=false,contextRelative=false])
    <2013-01-14 15:47:55,368> <ERROR> <oracle.bpel.services> <::> Identity Service cannot find user.
    Error occurs while getting user "711763" in realm "jazn.com"
    Verify that user "711763" exits in realm "jazn.com". Contact oracle support if error is not fixable.
    It is possible fix this problem acrros Enterprise Manager ?
    Thsk

    Max Yuan wrote:
    You mean I need to install 2 OAS(10.1.2 for report, 10.1.3 for my project), or deploy my project to 11g? For the Reports reporting project, you'll need a version/edition that includes AS Reports Services.
    In "10gr2" that means AS 10.1.2.0.2 (plus Patch set): AS Infrastructure + AS BI&Forms installation (enterprise edition) or the standalone Forms and Reports installation (EE or separate licensing). You also need the Developer Suit (Reports Builder). OFM "11gr1" suite has some version of Reports Services but I don't know the available packages and installation types.

  • OracleAS Patchset 10.1.2.3 Fails running oc4j  Configuration Assist

    Hi,
    We are upgrading our 12.0.4 EBS to 12.1.1.
    As part of pre -upgrade steps, i am applying 10.1.2.3 patch on 10.1.2.0.2.
    It is failing while running oc4j configuration assistant with below error.
    oracle.ons.SubscriptionException: Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
    at oracle.ons.SubscriptionNotification.waitForReply(SubscriptionNotification.java:82)
         at oracle.ons.ONS.addSubscriber(ONS.java:336)
         at oracle.ons.Subscriber.realStartup(Subscriber.java:92)
         at oracle.ons.Subscriber.<init>(Subscriber.java:80)
         at oracle.ons.ONS.createNewSubscriber(ONS.java:690)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.doDeploy(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.execute(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.deploy(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.main(Unknown Source)
    ERROR: Caught exception while initializing DCM.
    Oc4jDeploy tool completed, but with errors.
    Please help.
    Thanks,

    Hussein,
    After successful completion of setup, while running configuration assistants, i got this error.
    This is the complete output.
    ================================================================================================================
    Output generated from configuration assistant "Application Server website Configuration Assistant":
    Configuration assistant "Application Server website Configuration Assistant" succeeded
    ================================================================================================================
    Output generated from configuration assistant "OC4J Instance Configuration Assistant":
    Reading ini file - '/u01/TST4ZA/apps/tech_st/10.1.2/j2ee/deploy.ini'Adding web-app 'webapp.war' for app 'BC4J'.
    OC4J instance 'home': Adding property 'jbo.server.in_oc4j=true'
    Adding web-app 'IsWebCacheWorkingWeb.war' for app 'IsWebCacheWorking'.Initializing DCM..oracle.ons.SubscriptionException: Subscription request timed out after 120000 millseconds. Possible causes: OPMN may not be running, you may have an OPMN running in an alternate ORACLE_HOME using duplicate port values, or OPMN may be misconfigured.
         at oracle.ons.SubscriptionNotification.waitForReply(SubscriptionNotification.java:82)
         at oracle.ons.ONS.addSubscriber(ONS.java:336)
         at oracle.ons.Subscriber.realStartup(Subscriber.java:92)
         at oracle.ons.Subscriber.<init>(Subscriber.java:80)
         at oracle.ons.ONS.createNewSubscriber(ONS.java:690)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.TaskMaster.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
         at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.doDeploy(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.execute(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.deploy(Unknown Source)
         at oracle.j2ee.tools.deploy.Oc4jDeploy.main(Unknown Source)
    ERROR: Caught exception while initializing DCM.
    Oc4jDeploy tool completed, but with errors.
    Configuration assistant "OC4J Instance Configuration Assistant" failed
    =====================================================
    I stopped all apps services before starting the patch, but when it failed during relink phase, i cancelled the installation and did necessary steps and restarted installation.
    If at this stage i need to re apply the patch do i have to recover the 10.1.2 oracle home from backup?
    Thanks,

  • Oracle 9iAS 1.0.2.0.0 and OC4J

    Hi all
    We have Oracle 9iAS 1.0.2.0.0 on Tru64Unix os. OC4J is not supplied with this version of 9iAS ,
    is it possible to install OC4J on 9iAS 1.0.2.0.0 or do we need 9iAS 1.0.2.2
    Thanks
    Jaleel

    My guess then would be that the problem is that you get:
    ConfigFileName: null in the OC4J log window. This should actually point to a config file for the Forms server : formsweb.cfg.
    Are you running the OC4J that came with Oracle9iDS?
    What happens if you try the following URL:
    http://127.0.0.1:8888/forms90/f90servlet
    I don't know why it is not configured for you. might be worth a reinstall.

  • Xmlparserv2.jar with xerces and xalan

    Hello,
    I have a Spring/Spring Web Flow application. I also have a separate web application that's using the XML Publisher API to generate reports from RTF files. I am now in the process of merging these two into one application.
    The Spring app requires the xerces.jar and xalan.jar JARs in order to parse the various XML files required to configure Spring. The XML Publisher app requires the xmlparserv2.jar JAR in order to parse the XML required for generating reports.
    When I have all of these JARs in my one web application, I receive an error when I call the FOProcessor.generate() method. Here it is:
    oracle.xml.parser.v2.XMLParseException: Bad character (1).
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:287)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:292)
         at oracle.xml.parser.v2.XSLProcessor.newXSLStylesheet(XSLProcessor.java:590)
         at oracle.xml.parser.v2.XSLStylesheet.<init>(XSLStylesheet.java:260)
         at oracle.apps.xdo.common.xml.XSLTClassic.transform(XSLTClassic.java:200)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:174)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1022)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:968)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:209)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1561)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:951)
    I was thinking this was because there was a conflict between xalan, xerces and xmlparserv2, so I removed the xalan and xerces JARs from the classpath. Now I get the following whenever I try to hit one of my spring MVC actions:
    DEBUG org.springframework.beans.factory.xml.DelegatingEntityResolver(99) - Attempting to resolve XML Schema [http://www.springframework.org/schema/beans/spring-beans-2.0.xsd] using [org.springframework.beans.factory.xml.PluggableSchemaResolver]
    <Line 43, Column 57>: XML-24509: (Error) Duplicated definition for: 'identifiedType'
    <Line 60, Column 28>: XML-24509: (Error) Duplicated definition for: 'beans'
    <Line 145, Column 34>: XML-24509: (Error) Duplicated definition for: 'description'
    <Line 158, Column 29>: XML-24509: (Error) Duplicated definition for: 'import'
    <Line 180, Column 28>: XML-24509: (Error) Duplicated definition for: 'alias'
    <Line 209, Column 33>: XML-24509: (Error) Duplicated definition for: 'beanElements'
    <Line 223, Column 44>: XML-24509: (Error) Duplicated definition for: 'beanAttributes'
    <Line 486, Column 43>: XML-24509: (Error) Duplicated definition for: 'meta'
    <Line 494, Column 35>: XML-24509: (Error) Duplicated definition for: 'metaType'
    <Line 511, Column 27>: XML-24509: (Error) Duplicated definition for: 'bean'
    <Line 531, Column 38>: XML-24509: (Error) Duplicated definition for: 'constructor-arg'
    <Line 600, Column 51>: XML-24509: (Error) Duplicated definition for: 'property'
    <Line 611, Column 36>: XML-24509: (Error) Duplicated definition for: 'lookup-method'
    <Line 647, Column 38>: XML-24509: (Error) Duplicated definition for: 'replaced-method'
    <Line 684, Column 31>: XML-24509: (Error) Duplicated definition for: 'arg-type'
    <Line 711, Column 26>: XML-24509: (Error) Duplicated definition for: 'ref'
    <Line 749, Column 28>: XML-24509: (Error) Duplicated definition for: 'idref'
    <Line 783, Column 28>: XML-24509: (Error) Duplicated definition for: 'value'
    <Line 811, Column 27>: XML-24509: (Error) Duplicated definition for: 'null'
    <Line 825, Column 39>: XML-24509: (Error) Duplicated definition for: 'collectionElements'
    <Line 842, Column 48>: XML-24509: (Error) Duplicated definition for: 'list'
    <Line 853, Column 47>: XML-24509: (Error) Duplicated definition for: 'set'
    <Line 862, Column 41>: XML-24509: (Error) Duplicated definition for: 'map'
    <Line 869, Column 45>: XML-24509: (Error) Duplicated definition for: 'entry'
    <Line 877, Column 45>: XML-24509: (Error) Duplicated definition for: 'props'
    <Line 886, Column 26>: XML-24509: (Error) Duplicated definition for: 'key'
    <Line 897, Column 27>: XML-24509: (Error) Duplicated definition for: 'prop'
    <Line 916, Column 39>: XML-24509: (Error) Duplicated definition for: 'propertyType'
    <Line 960, Column 45>: XML-24509: (Error) Duplicated definition for: 'baseCollectionType'
    <Line 971, Column 46>: XML-24509: (Error) Duplicated definition for: 'typedCollectionType'
    <Line 987, Column 34>: XML-24509: (Error) Duplicated definition for: 'mapType'
    <Line 1008, Column 36>: XML-24509: (Error) Duplicated definition for: 'entryType'
    <Line 1047, Column 40>: XML-24509: (Error) Duplicated definition for: 'listOrSetType'
    <Line 1056, Column 36>: XML-24509: (Error) Duplicated definition for: 'propsType'
    <Line 1069, Column 45>: XML-24509: (Error) Duplicated definition for: 'defaultable-boolean'
    ERROR org.springframework.web.servlet.FrameworkServlet(229) - Context initialization failed
    org.springframework.beans.factory.BeanDefinitionStoreException: Line 10 in XML document from class path resource [spring/servlet/sellitem-webflow-config.xml] is invalid; nested exception is oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'
    Caused by:
    oracle.xml.parser.schema.XSDException: Duplicated definition for: 'identifiedType'
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:431)
         at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:290)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:287)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:181)
         at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:151)
         at org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument(DefaultDocumentLoader.java:77)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:405)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:357)
         at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:334)
         at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:126)
         at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:142)
         at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:123)
         at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:91)
         at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:94)
         at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:294)
         at org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:156)
         at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:308)
         at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:252)
         at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:221)
         at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:115)
         at javax.servlet.GenericServlet.init(GenericServlet.java:211)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
         at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:757)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:130)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
         at java.lang.Thread.run(Unknown Source)
    So it seems like these JARs are incompatible with each other. Is there any way I can use the Oracle DocumentBuilder for my XML Publisher classes and the xerces for the rest of the app?
    Thanks,
    Leo Hart

    Now one has any advice? :(

  • Question on Support for XML in Oracle 9i and XDK 9.0.1

    Hi All,
    I just went through the Oracle 9i's features for XML. I have been working with Oracle's XDK too. I noticed that there are some new packages in Oracle 9i like SYS_XMLGEN and DBMS_XMLGEN that produce a XML file when presented a query to it. This feature is there in the XDK (XML SQL Utility) too. So, my question is as follows:
    1. Are there any differences in the XML File produced by XDK and these database packages?
    2. What are the scenerios when I should go for these packages and when should I go for the XSQL Utility.
    Cos I found out that both are doing effectively the same things. Is there any difference between them? Please explain the second question.
    Thanks in advance,
    Rajat

    The sys_xmlagg and sys_xmlgen are native implementations of functionality tied into the database code line. They replicate some of the functionality that was previously provided in a 'plugin' form by the XDK. DBMS_XMLGEN is a PLSQL Package that also provides access to native implimentations of some of this functionalitu. You should find that as a result of being native implimentation they are much more performant.
    SYS_XMLGEN and SYS_XMLAGG allow XML to be generated directly from a SQL Query. DBMS_XMLGEN is designed for use in procedural processing and provides a finer grain of control over the generated output.
    There are still some features, such as DTD and Schema generation that are not (yet) available with the native implementation, and for this reason, and backwards compatability the XDK functionality is still available
    As a rules of thumb, if you can use the native implimentations do so, as performance should be much better.
    Mark D. Drake
    Senior Product Manager,
    XML Infrastructure,
    Server Technology

  • Xalan-j_2_0_1 xerces-1_3_1 and jdom-b6

    I know that people have already posted message regarding xalan, xerces compatability
    with weblogic 6.0sp1 but all the fixes suggested don't work when I use jdom!
    When using JDOM, if i put xerces before the weblogic_sp.jar then Hotspot will
    die with the following error when i start using jdom.
    # HotSpot Virtual Machine Error, EXCEPTION_ACCESS_VIOLATION
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4F533F57494E13120E43505002D4
    if I put xerces after weblogic_sp.jar and before weblogic.jar then xalan gets
    a method not found error when I try a to execute transform() on a document. Also,
    I tried my transformation outside of weblogic and it worked just fine.
    here is the exception when i try to do the transform in weblogic
    java.lang.NoSuchMethodError
    at org.apache.xpath.patterns.NodeTest.execute(NodeTest.java:403)
    at org.apache.xpath.axes.PredicatedNodeTest.acceptNode(PredicatedNodeTest.java:388)
    at org.apache.xpath.axes.ChildTestIterator.nextNode(ChildTestIterator.java:193)
    at org.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.java:428)
    at org.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.java:193)
    at org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(TransformerImpl.java:2202)
    at org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:739)
    at org.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.java:498)
    at org.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.java:193)
    at org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(TransformerImpl.java:2202)
    at org.apache.xalan.transformer.TransformerImpl.applyTemplateToNode(TransformerImpl.java:2085)
    at org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.java:1219)
    at org.apache.xalan.transformer.TransformerImpl.run(TransformerImpl.java:2942)
    at java.lang.Thread.run(Thread.java:484)

    I could see how that would fail if Weblogic was using the default registry
    values of:
    DocumentBuilderFactory="weblogic.apache.xerces.jaxp.DocumentBuilderFactoryIm
    pl"
    SAXParserFactory="weblogic.apache.xerces.jaxp.SAXParserFactoryImpl"
    it would find weblogic's internal classes.
    But if Weblogic is using an xml registry such as:
    DocumentBuilderFactory="org.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    SAXParserFactory="org.apache.xerces.jaxp.SAXParserFactoryImpl"
    and was starting with the system property of:
    ..-Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.Transf
    ormerFactoryImpl ...
    Wouldn't JDOM correctly find the org.apache factories instead?
    I seem to be having a very similar problem to yours with 6.0 sp2; I'm not
    invoking JDOM directly, but I'm using Syslog from protomatter to handle
    logging; and Syslog DOES invoke the new SAXBuilder() that you cite. I'm
    using xalan 2.1.0 and xerces 1.3.1 placed after the weblogic jars. I also
    get a NoSuchMethodError during the transformer.transform, but the same
    document is successfully transformed at the command line
    TransformerFactory tFactory = TransformerFactory.newInstance();
    String xString = xmlDoc.toString() ;
    StringReader xmlReader = new StringReader( xString );
    StreamSource streamSource = new StreamSource( xmlReader ) ;
    Source stylesheet = tFactory.getAssociatedStylesheet( streamSource,
    media, title, charset);
    Transformer transformer = tFactory.newTransformer(stylesheet);
    StreamResult streamResult = new StreamResult( outWriter ) ;
    transformer.transform( new StreamSource( new StringReader( xString ) ),
    streamResult ) ;
    "Eric Van" <[email protected]> wrote in message
    news:[email protected]...
    >
    FIGURED IT OUT!
    The problem is that JDOM's SAXBuilder, when used with weblogic, loadsweblogic's
    jaxp sax parser, which for some reason doesn't work if the newest xercesis placed
    in the classpath before weblogic_sp.jar.
    So, to get around this all you have to do is tell JDOM's SAXBuilder to useanother
    parser when you create it, preferable one that WORKS!!
    I used the one that comes with xerces
    new SAXBuilder("org.apache.xerces.parsers.SAXParser")
    and it worked fine.
    Hope this helps everyone else out.
    "Steve Liles" <[email protected]> wrote:
    Eric's solution works great if you can get away with always using a
    DOMBuilder.
    >>
    However, I can't always use a DOMBuilder - I need to use the SAXBuilder
    in one particular
    case where I need to specify the SystemId dynamically as in:
    .. SAXBuilder builder = new SAXBuilder(reader, _systemId); ..
    There is no DOMBuilder equivalent. Anyone have any suggestions?
    cheers,
    Steve Liles
    "Eric Van" <[email protected]> wrote:
    Looks like if you avoid using the org.jdom.input.SAXBuilder and usethe
    org.jdom.input.DOMBuilder
    instead that the Hotspot error can be avoided. I have a feeling thatthere
    is
    something else going on here, but OH WELL, NOW IT WORKS.
    "Eric Van" <[email protected]> wrote:
    I know that people have already posted message regarding xalan, xerces
    compatability
    with weblogic 6.0sp1 but all the fixes suggested don't work when I
    use
    jdom!
    When using JDOM, if i put xerces before the weblogic_sp.jar then
    Hotspot
    will
    die with the following error when i start using jdom.
    # HotSpot Virtual Machine Error, EXCEPTION_ACCESS_VIOLATION
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4F533F57494E13120E43505002D4
    if I put xerces after weblogic_sp.jar and before weblogic.jar thenxalan
    gets
    a method not found error when I try a to execute transform() on a
    document.
    Also,
    I tried my transformation outside of weblogic and it worked just fine.
    here is the exception when i try to do the transform in weblogic
    java.lang.NoSuchMethodError
    atorg.apache.xpath.patterns.NodeTest.execute(NodeTest.java:403)
    atorg.apache.xpath.axes.PredicatedNodeTest.acceptNode(PredicatedNodeTest.java:
    388)
    atorg.apache.xpath.axes.ChildTestIterator.nextNode(ChildTestIterator.java:193)
    atorg.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.ja
    va:428)
    atorg.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.jav
    a:193)
    atorg.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
    erImpl.java:2202)
    atorg.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java:
    739)
    atorg.apache.xalan.templates.ElemForEach.transformSelectedNodes(ElemForEach.ja
    va:498)
    atorg.apache.xalan.templates.ElemApplyTemplates.execute(ElemApplyTemplates.jav
    a:193)
    atorg.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform
    erImpl.java:2202)
    atorg.apache.xalan.transformer.TransformerImpl.applyTemplateToNode(Transformer
    Impl.java:2085)
    atorg.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.j
    ava:1219)
    atorg.apache.xalan.transformer.TransformerImpl.run(TransformerImpl.java:2942)
    at java.lang.Thread.run(Thread.java:484)

Maybe you are looking for

  • Question on Document Title in SOST

    Hi, Can some one let me know how Document Ttile comes into SOST. My scenario is; I am sending delivery note via email. my intention is to get document title as LD00 and Delivery Number (LD00 &LIKP-VBELN& below settings i tried but no use: Output type

  • HT2311 I want to be able to have iradio, but nothing is working. Help

    I want to be able to have iradio, but nothing is working. Help

  • Data file time stamp on Logical Standby

    Dear All, My Logical Standby Database that is Oracle 10gR2 on Wondows 2003 Server is fully synced with the production database. If i query number of records on Logical Standby they are the same as on production. And when i query applied_time from dba

  • CRserverR2SP2 Update Link Required

    Morning all, Could someone please guide me to the right URL for Crystal Reports Server XI R2SP2 updates? I have been to Business objects Service Pack support section but I could only found SP3 however, when I went to Critical Hotfixes it says Busines

  • Trouble importing from Hard Drive

    So I downloaded my mini DV camcorder tape to my hard drive thinking that I would edit and make a movie later. I think I should have originally archived from my camcorder to my hard drive. I am now having difficulty importing from my hard drive as all