Auto Update of Server.xml file

Hi
i'm running JDev 9i (9.0.2) with oc4j server (also 9.0.2).
I have one project containg Stateless Session bean (WizDecodeCodes)
I have also another project that calls this Bean. (From Servlet)
This works fine when you manually update the Parent attribute in the Server.XML file on OC4J after Every deployment.
Is there a way to configure Jdev to do dependancy updates like this when deploying?
Tks
andre

HI Curt
At this stage I have only got 1 JSP calling about 10 Servlets with only 2 of the Servlets calling the Single EJB that I have. Only started of with this.
Found that without the parent entry in the Server.XML file, the Servlet runs fine with the EJB from JDev but the moment you deploy to the same App Server it fails without the Parent entry.
I'm now starting on more advanced EJB's and it doesn't look that rosy if I look at this problem.
The other thing is that JDev always adds the last project deployed to the end of the Server.xml file, even if it was deployed before.
Thus making the sequence of deployement, update of Server.xml file in the correct sequence, etc a real nightmare when the applications grow.
Any suggestions on how to keep this up to date is welcome. We haven't got a Deployment guy so we have to do all this ourselves!
Cheers
Andre

Similar Messages

  • Purpose of server.xml file

    Hi,
    What is the purpose of server.xml in R12 file in single middle tier architecture and multi-tier architecture.
    I noticed that server.xml file getting updated continuously.
    Is its normal behavior ?
    Thanks

    Hi;
    Please see:
    http://oracle.anilpassi.com/extend-oa-framework-in-r12-2.html
    http://learnwithme11g.wordpress.com/tag/server-xml/
    http://www.orabyte.com/whitePapers/Surender_Sara_R12_New_Features_AppsDBA.ppt
    Also see:
    How To Generate Server.Xml Required To Make Modifications To Seeded VO/EO/AM [ID 968014.1]
    Need Server.Xml File For All HR Modules [ID 790169.1]
    Knowledge Base "Server.Xml" Files For OA Customization [ID 461173.1]
    Regard
    Helios

  • Does anyone have a good server.xml file for tomcat?

    I am trying to link apache and tomcat on a RedHat 9 computer. I previously posted a message stating that I could not get tomcat to "automagically" make the configuration files (mod_jk.conf-auto) that all the manuals promised it would. However, I found that my problem was the lack of an ApacheConfig tag in the server.xml file. After looking at my server.xml file, I found that it was much more simplistic than I would hoped = it did not have enough comments or commented out options. It had none of the directives that the manuals said it included by default.
    In short, does anyone who has apache and tomcat linked have a server.xml file that I can look at so that I can figure out what I must add to mine to get tomcat working with apache? I would greatly appreciate it if you could copy and paste the whole thing here.
    Thank you very much in advance.
    Edward S. Rice

    Hi!
    I am having the Apache-Tomcat4.0 version installed on a Win2000 machine. I am pasting here my server.xml. Hope it will be useful to you. I even didnot do much modifications to my server.xml except for adding a context.
    Please come back if problem persists.
    <!-- Example Server Configuration File -->
    <!-- Note that component elements are nested corresponding to their
    parent-child relationships with each other -->
    <!-- A "Server" is a singleton element that represents the entire JVM,
    which may contain one or more "Service" instances. The Server
    listens for a shutdown command on the indicated port.
    Note: A "Server" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <Server port="8005" shutdown="SHUTDOWN" debug="0">
    <!-- A "Service" is a collection of one or more "Connectors" that share
    a single "Container" (and therefore the web applications visible
    within that Container). Normally, that Container is an "Engine",
    but this is not required.
    Note: A "Service" is not itself a "Container", so you may not
    define subcomponents such as "Valves" or "Loggers" at this level.
    -->
    <!-- Define the Tomcat Stand-Alone Service -->
    <Service name="Tomcat-Standalone">
    <!-- A "Connector" represents an endpoint by which requests are received
    and responses are returned. Each Connector passes requests on to the
    associated "Container" (normally an Engine) for processing.
    By default, a non-SSL HTTP/1.1 Connector is established on port 8080.
    You can also enable an SSL HTTP/1.1 Connector on port 8443 by
    following the instructions below and uncommenting the second Connector
    entry. SSL support requires the following steps (see the SSL Config
    HOWTO in the Tomcat 4.0 documentation bundle for more detailed
    instructions):
    * Download and install JSSE 1.0.2 or later, and put the JAR files
    into "$JAVA_HOME/jre/lib/ext".
    * Execute:
    %JAVA_HOME%\bin\keytool -genkey -alias tomcat -keyalg RSA (Windows)
    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA (Unix)
    with a password value of "changeit" for both the certificate and
    the keystore itself.
    By default, DNS lookups are enabled when a web application calls
    request.getRemoteHost(). This can have an adverse impact on
    performance, so you can disable it by setting the
    "enableLookups" attribute to "false". When DNS lookups are disabled,
    request.getRemoteHost() will return the String version of the
    IP address of the remote client.
    -->
    <!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
    port="8080" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0" connectionTimeout="60000"/>
    <!-- Note : To disable connection timeouts, set connectionTimeout value
    to -1 -->
    <!-- Define an SSL HTTP/1.1 Connector on port 8443 -->
    <!--
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
    port="8443" minProcessors="5" maxProcessors="75"
    enableLookups="true"
         acceptCount="10" debug="0" scheme="https" secure="true">
    <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
    clientAuth="false" protocol="TLS"/>
    </Connector>
    -->
    <!-- Define an AJP 1.3 Connector on port 8009 -->
    <!--
    <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
    port="8009" minProcessors="5" maxProcessors="75"
    acceptCount="10" debug="0"/>
    -->
    <!-- Define a Proxied HTTP/1.1 Connector on port 8081 -->
    <!-- See proxy documentation for more information about using this. -->
    <!--
    <Connector className="org.apache.catalina.connector.http.HttpConnector"
    port="8081" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="10" debug="0" connectionTimeout="60000"
    proxyPort="80"/>
    -->
    <!-- Define a non-SSL HTTP/1.0 Test Connector on port 8082 -->
    <!--
    <Connector className="org.apache.catalina.connector.http10.HttpConnector"
    port="8082" minProcessors="5" maxProcessors="75"
    enableLookups="true" redirectPort="8443"
    acceptCount="10" debug="0"/>
    -->
    <!-- An Engine represents the entry point (within Catalina) that processes
    every request. The Engine implementation for Tomcat stand alone
    analyzes the HTTP headers included with the request, and passes them
    on to the appropriate Host (virtual host). -->
    <!-- Define the top level container in our container hierarchy -->
    <Engine name="Standalone" defaultHost="localhost" debug="0">
    <!-- The request dumper valve dumps useful debugging information about
    the request headers and cookies that were received, and the response
    headers and cookies that were sent, for all requests received by
    this instance of Tomcat. If you care only about requests to a
    particular virtual host, or a particular application, nest this
    element inside the corresponding <Host> or <Context> entry instead.
    For a similar mechanism that is portable to all Servlet 2.3
    containers, check out the "RequestDumperFilter" Filter in the
    example application (the source for this filter may be found in
    "$CATALINA_HOME/webapps/examples/WEB-INF/classes/filters").
    Request dumping is disabled by default. Uncomment the following
    element to enable it. -->
    <!--
    <Valve className="org.apache.catalina.valves.RequestDumperValve"/>
    -->
    <!-- Global logger unless overridden at lower levels -->
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="catalina_log." suffix=".txt"
    timestamp="true"/>
    <!-- Because this Realm is here, an instance will be shared globally -->
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    <!-- Replace the above Realm with one of the following to get a Realm
    stored in a database and accessed via JDBC -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="org.gjt.mm.mysql.Driver"
    connectionURL="jdbc:mysql://localhost/authority?user=test;password=test"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="oracle.jdbc.driver.OracleDriver"
    connectionURL="jdbc:oracle:thin:@ntserver:1521:ORCL?user=scott;password=tiger"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!--
    <Realm className="org.apache.catalina.realm.JDBCRealm" debug="99"
    driverName="sun.jdbc.odbc.JdbcOdbcDriver"
    connectionURL="jdbc:odbc:CATALINA"
    userTable="users" userNameCol="user_name" userCredCol="user_pass"
    userRoleTable="user_roles" roleNameCol="role_name" />
    -->
    <!-- Define the default virtual host -->
    <Host name="localhost" debug="0" appBase="webapps" unpackWARs="true">
    <!-- Normally, users must authenticate themselves to each web app
    individually. Uncomment the following entry if you would like
    a user to be authenticated the first time they encounter a
    resource protected by a security constraint, and then have that
    user identity maintained across all web applications contained
    in this virtual host. -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn"
    debug="0"/>
    -->
    <!-- Access log processes all requests for this virtual host. By
    default, log files are created in the "logs" directory relative to
    $CATALINA_HOME. If you wish, you can specify a different
    directory with the "directory" attribute. Specify either a relative
    (to $CATALINA_HOME) or absolute path to the desired directory.
    -->
    <Valve className="org.apache.catalina.valves.AccessLogValve"
    directory="logs" prefix="localhost_access_log." suffix=".txt"
    pattern="common"/>
    <!-- Logger shared by all Contexts related to this virtual host. By
    default (when using FileLogger), log files are created in the "logs"
    directory relative to $CATALINA_HOME. If you wish, you can specify
    a different directory with the "directory" attribute. Specify either a
    relative (to $CATALINA_HOME) or absolute path to the desired
    directory.-->
    <Logger className="org.apache.catalina.logger.FileLogger"
    directory="logs" prefix="localhost_log." suffix=".txt"
         timestamp="true"/>
    <!-- Define properties for each web application. This is only needed
    if you want to set non-default properties, or have web application
    document roots in places other than the virtual host's appBase
    directory. -->
    <!-- Tomcat Root Context -->
    <!--
    <Context path="" docBase="ROOT" debug="0"/>
    -->
              <Context path="/vijay" docBase="D:\Java\servlets" debug="0"/>
    <!-- Tomcat Manager Context -->
    <Context path="/manager" docBase="manager"
    debug="0" privileged="true"/>
    <!-- Tomcat Examples Context -->
    <Context path="/examples" docBase="examples" debug="0"
    reloadable="true">
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="localhost_examples_log." suffix=".txt"
         timestamp="true"/>
    <Ejb name="ejb/EmplRecord" type="Entity"
    home="com.wombat.empl.EmployeeRecordHome"
    remote="com.wombat.empl.EmployeeRecord"/>
    <!-- PersistentManager: Uncomment the section below to test Persistent
              Sessions.
    saveOnRestart: If true, all active sessions will be saved
    to the Store when Catalina is shutdown, regardless of
    other settings. All Sessions found in the Store will be
    loaded on startup. Sessions past their expiration are
    ignored in both cases.
    maxActiveSessions: If 0 or greater, having too many active
    sessions will result in some being swapped out. minIdleSwap
    limits this. -1 means unlimited sessions are allowed.
    0 means sessions will almost always be swapped out after
    use - this will be noticeably slow for your users.
    minIdleSwap: Sessions must be idle for at least this long
    (in seconds) before they will be swapped out due to
    maxActiveSessions. This avoids thrashing when the site is
    highly active. -1 or 0 means there is no minimum - sessions
    can be swapped out at any time.
    maxIdleSwap: Sessions will be swapped out if idle for this
    long (in seconds). If minIdleSwap is higher, then it will
    override this. This isn't exact: it is checked periodically.
    -1 means sessions won't be swapped out for this reason,
    although they may be swapped out for maxActiveSessions.
    If set to >= 0, guarantees that all sessions found in the
    Store will be loaded on startup.
    maxIdleBackup: Sessions will be backed up (saved to the Store,
    but left in active memory) if idle for this long (in seconds),
    and all sessions found in the Store will be loaded on startup.
    If set to -1 sessions will not be backed up, 0 means they
    should be backed up shortly after being used.
    To clear sessions from the Store, set maxActiveSessions, maxIdleSwap,
    and minIdleBackup all to -1, saveOnRestart to false, then restart
    Catalina.
    -->
              <!--
    <Manager className="org.apache.catalina.session.PersistentManager"
    debug="0"
    saveOnRestart="true"
    maxActiveSessions="-1"
    minIdleSwap="-1"
    maxIdleSwap="-1"
    maxIdleBackup="-1">
    <Store className="org.apache.catalina.session.FileStore"/>
    </Manager>
              -->
    <Environment name="maxExemptions" type="java.lang.Integer"
    value="15"/>
    <Parameter name="context.param.name" value="context.param.value"
    override="false"/>
    <Resource name="jdbc/EmployeeAppDb" auth="SERVLET"
    type="javax.sql.DataSource"/>
    <ResourceParams name="jdbc/EmployeeAppDb">
    <parameter><name>user</name><value>sa</value></parameter>
    <parameter><name>password</name><value></value></parameter>
    <parameter><name>driverClassName</name>
    <value>org.hsql.jdbcDriver</value></parameter>
    <parameter><name>driverName</name>
    <value>jdbc:HypersonicSQL:database</value></parameter>
    </ResourceParams>
    <Resource name="mail/Session" auth="Container"
    type="javax.mail.Session"/>
    <ResourceParams name="mail/Session">
    <parameter>
    <name>mail.smtp.host</name>
    <value>localhost</value>
    </parameter>
    </ResourceParams>
    </Context>
    </Host>
    </Engine>
    </Service>
    <!-- The MOD_WEBAPP connector is used to connect Apache 1.3 with Tomcat 4.0
    as its servlet container. Please read the README.txt file coming with
    the WebApp Module distribution on how to build it.
    (Or check out the "jakarta-tomcat-connectors/webapp" CVS repository)
    To configure the Apache side, you must ensure that you have the
    "ServerName" and "Port" directives defined in "httpd.conf". Then,
    lines like these to the bottom of your "httpd.conf" file:
    LoadModule webapp_module libexec/mod_webapp.so
    WebAppConnection warpConnection warp localhost:8008
    WebAppDeploy examples warpConnection /examples/
    The next time you restart Apache (after restarting Tomcat, if needed)
    the connection will be established, and all applications you make
    visible via "WebAppDeploy" directives can be accessed through Apache.
    -->
    <!-- Define an Apache-Connector Service -->
    <Service name="Tomcat-Apache">
    <Connector className="org.apache.catalina.connector.warp.WarpConnector"
    port="8008" minProcessors="5" maxProcessors="75"
    enableLookups="true"
    acceptCount="10" debug="0"/>
    <!-- Replace "localhost" with what your Apache "ServerName" is set to -->
    <Engine className="org.apache.catalina.connector.warp.WarpEngine"
    name="Apache" debug="0" appBase="webapps">
    <!-- Global logger unless overridden at lower levels -->
    <Logger className="org.apache.catalina.logger.FileLogger"
    prefix="apache_log." suffix=".txt"
    timestamp="true"/>
    <!-- Because this Realm is here, an instance will be shared globally -->
    <Realm className="org.apache.catalina.realm.MemoryRealm" />
    </Engine>
    </Service>
    </Server>

  • Server.xml file

    Hey Guys
    Can anyone send me the server.xml file in the SOA_HOME/j2ee/home/config/ folder.
    Actually I messed up my server.xml file...
    Please HELP...Thanks

    Hi,
    so you want the server.xml for the integration container... This is in my installation not the home container:
    <?xml version="1.0"?>
    <application-server xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/application-server-10_1.xsd" localhostIsAdmin="true"
    application-directory="../applications"
    check-for-updates="adminClientOnly"
    deployment-directory="../application-deployments"
    connector-directory="../connectors"
    schema-major-version="10" schema-minor-version="0" >
    <shared-library name="global.libraries" version="1.0" library-compatible="true">
    <code-source path="../applib"/>
    </shared-library>
    <shared-library name="global.tag.libraries" version="1.0" library-compatible="true">
    <code-source path="../../home/jsp/lib/taglib/"/>
    <code-source path="../../../j2ee/home/jsp/lib/taglib/"/>
    <code-source path="../../../lib/dsv2.jar"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.jdbc"/>
    <import-shared-library name="oracle.cache"/>
    <import-shared-library name="soap"/>
    </shared-library>
    <shared-library name="oracle.persistence" version="1.0" library-compatible="true">
    <code-source path="../../../toplink/jlib/toplink-essentials.jar"/>
    <import-shared-library name="oracle.jdbc"/>
    </shared-library>
    <shared-library name="oracle.expression-evaluator" version="10.1.3.1" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/commons-el.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/oracle-el.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/jsp-el-api.jar"/>
    </shared-library>
    <shared-library name="adf.oracle.domain" version="10.1.3.1" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/lib"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/commons-cli-1.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/mds/lib/concurrent.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/mds/lib/mdsrt.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/share.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/xmlef.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/adfmtl.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/adfui.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/adf-connections.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/dc-adapters.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/ord/jlib/ordim.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/ord/jlib/ordhttp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ojmisc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/jdev-cm.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/lib/xsqlserializers.jar"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.jdbc"/>
    <import-shared-library name="oracle.gdk"/>
    <import-shared-library name="oracle.cache"/>
    <import-shared-library name="oracle.dms"/>
    <import-shared-library name="oracle.sqlj"/>
    <import-shared-library name="oracle.toplink"/>
    <import-shared-library name="oracle.ws.core"/>
    <import-shared-library name="oracle.ws.client"/>
    <import-shared-library name="oracle.xml.security"/>
    <import-shared-library name="oracle.ws.security"/>
    <import-shared-library name="oracle.ws.reliability"/>
    <import-shared-library name="oracle.jwsdl"/>
    <import-shared-library name="oracle.http.client"/>
    <import-shared-library name="oracle.expression-evaluator"/>
    </shared-library>
    <shared-library name="adf.generic.domain" version="10.1.3.1" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/bc4jdomgnrc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/lib"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/commons-cli-1.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/mds/lib/concurrent.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/mds/lib/mdsrt.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/share.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/xmlef.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/adfmtl.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/adfui.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/adf-connections.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/BC4J/jlib/dc-adapters.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/ord/jlib/ordim.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/ord/jlib/ordhttp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ojmisc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/jdev-cm.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/lib/xsqlserializers.jar"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.jdbc"/>
    <import-shared-library name="oracle.gdk"/>
    <import-shared-library name="oracle.cache"/>
    <import-shared-library name="oracle.dms"/>
    <import-shared-library name="oracle.sqlj"/>
    <import-shared-library name="oracle.toplink"/>
    <import-shared-library name="oracle.ws.core"/>
    <import-shared-library name="oracle.ws.client"/>
    <import-shared-library name="oracle.xml.security"/>
    <import-shared-library name="oracle.ws.security"/>
    <import-shared-library name="oracle.ws.reliability"/>
    <import-shared-library name="oracle.jwsdl"/>
    <import-shared-library name="oracle.http.client"/>
    <import-shared-library name="oracle.expression-evaluator"/>
    </shared-library>
    <shared-library name="apache.junit" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/test/lib/junit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/test/lib/xmlunit1.0.jar"/>
    </shared-library>
    <shared-library name="oracle.db.lite" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/olite40.jar"/>
    </shared-library>
    <shared-library name="apache.commons" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-fileupload-1.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-codec-1.3.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-transaction-1.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-collections-2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-io-1.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-dbcp-20031203.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/commons-pool-1.1.jar"/>
    </shared-library>
    <shared-library name="apache.jdom" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/jdom-1.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/jaxen-1.1-beta-4.jar"/>
    <import-shared-library name="apache.commons"/>
    </shared-library>
    <shared-library name="apache.slide" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/slide-kernel-2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/slide-webdavservlet-2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/slide-stores-2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/poi-2.5-final-20040428.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/xml-im-exporter1.1.jar"/>
    <import-shared-library name="apache.commons"/>
    <import-shared-library name="apache.jdom"/>
    <import-shared-library name="oracle.jdbc"/>
    </shared-library>
    <shared-library name="oracle.bpel.common" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/classes"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel-common.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel-thirdparty.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/bpm-infra.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/wdk.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/connector15.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel-exts.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/orabpel-ant.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/ant_1.6.5.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/bipres.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/bicmn.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/uix2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/jewt4.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/share.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdk/lib/tools.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ldapjclnt10.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/schema"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/config"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/bpm-services.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/wfapi.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/fndctx.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/phaos.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/system/services/lib/pushapi.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/lib/oracle_http_client.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/uddiclient_api_v3.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/wasp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/uddiclient_core.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/saaj.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/jaxm.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/builtin_serialization.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/core_services_client.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/bpel/registry/lib/jaxrpc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/rules/lib/rl.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/rules/lib/rulesdk.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/rules/lib/webdavrc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/rules/lib/jr_dav.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/wsif.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/oraesb.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/bpm-ide-common.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/rdbms/jlib/xdb.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/ide.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/javatools.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/xmleditor.jar"/>
    <import-shared-library name="oracle.dms"/>
    <import-shared-library name="oracle.jdbc"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.jwsdl"/>
    <import-shared-library name="soap"/>
    <import-shared-library name="oracle.ws.client"/>
    <import-shared-library name="oracle.toplink"/>
    <import-shared-library name="apache.junit"/>
    <import-shared-library name="oracle.db.lite"/>
    <import-shared-library name="apache.commons.logging"/>
    <import-shared-library name="oracle.cache"/>
    <import-shared-library name="apache.commons"/>
    <import-shared-library name="apache.slide"/>
    <import-shared-library name="apache.jdom"/>
    </shared-library>
    <shared-library name="oracle.esb" version="10.1.3">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/config/"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/system/classes"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/integration/esb/lib/oraesb-test.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/xmlef.jar"/>
    <import-shared-library name="apache.commons"/>
    <import-shared-library name="oracle.bpel.common"/>
    <import-shared-library name="apache.junit"/>
    <import-shared-library name="apache.jdom"/>
    <import-shared-library name="apache.slide"/>
    <import-shared-library name="oracle.jdbc"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.jwsdl"/>
    <import-shared-library name="oracle.ws.client"/>
    </shared-library>
    <shared-library name="oracle.wsm.ccore" version="1.0" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/cfluent-log4j.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/coresv-4.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/CordaEmbedder-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/CordaServer-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/FreeLib-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/axis.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/bcprov-jdk14-119.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/castor-0.9.3.19-xml.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-collections-3.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-dbcp-1.2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-discovery.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-fileupload-1.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-pool-1.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/concurrent-1.3.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/ctRedirector-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/engine.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/hsqldb.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/httpunit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jakarta-oro-2.0.6.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxen-full.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxrpc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jdom.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jep-2.24.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jobaccess.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jug-1.0.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junitee.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/log4j-1.2.8.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/opensaml.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/oracle-wsil.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/pager-taglib.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saaj.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saxpath.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/snmp4_10.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/tsik.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/uddiclient.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/ws-security.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xml_pilot_key.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xml_prod_key.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xmlsec-1.0.5.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xmlunit0.6.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/default-web-app/WEB-INF/lib/jstl.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/default-web-app/WEB-INF/lib/standard.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/activation.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/mail.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/ojdbc14.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/orai18n.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ojmisc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/oraclepki.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/sqlj/lib/translator.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/relaxngDatatype.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/saaj-api.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/wsm-handler.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/custom"/>
    <import-shared-library name="apache.commons.logging"/>
    <import-shared-library name="oracle.xml.security"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.http.client"/>
    <import-shared-library name="oracle.ws.testpage"/>
    <import-shared-library name="oracle.ws.client"/>
    <import-shared-library name="oracle.jwsdl"/>
    <import-shared-library name="oracle.ws.reliability"/>
    </shared-library>
    <shared-library name="oracle.wsm.coreman" version="1.0" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/cfluent-log4j.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/coresv-4.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/axis.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-collections-3.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-dbcp-1.2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-discovery.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-pool-1.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/concurrent-1.3.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/hsqldb.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxrpc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jdom.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jep-2.24.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junitee.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/log4j-1.2.8.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saaj.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/snmp4_10.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/activation.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/mail.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/ojdbc14.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/orai18n.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ojmisc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/custom"/>
    <import-shared-library name="apache.commons.logging"/>
    <import-shared-library name="oracle.xml.security"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.http.client"/>
    </shared-library>
    <shared-library name="oracle.wsm.gateway" version="1.0" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/cfluent-log4j.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/coresv-4.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/CordaEmbedder-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/CordaServer-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/FreeLib-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/axis.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/bcprov-jdk14-119.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/castor-0.9.3.19-xml.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-collections-3.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-dbcp-1.2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-discovery.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-pool-1.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/concurrent-1.3.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/ctRedirector-6.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/engine.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/hsqldb.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/httpunit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jakarta-oro-2.0.6.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxen-full.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxrpc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jdom.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jep-2.24.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jobaccess.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jug-1.0.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junitee.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/log4j-1.2.8.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/opensaml.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/oracle-wsil.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/pager-taglib.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saaj.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saxpath.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/snmp4_10.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/tsik.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/uddiclient.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/ws-security.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xml_pilot_key.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xml_prod_key.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xmlsec-1.0.5.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/xmlunit0.6.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/default-web-app/WEB-INF/lib/jstl.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/default-web-app/WEB-INF/lib/standard.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/activation.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/crimson_1_1_3.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/j2ee/home/lib/mail.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/ojdbc14.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/orai18n.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ojmisc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/oraclepki.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/sqlj/lib/translator.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/relaxngDatatype.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/xsdlib.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/custom"/>
    <import-shared-library name="apache.commons.logging"/>
    <import-shared-library name="oracle.xml.security"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.http.client"/>
    </shared-library>
    <shared-library name="oracle.wsm.policymanager" version="1.0" library-compatible="true">
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/cfluent-log4j.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/coresv-4.0.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/axis.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-collections-3.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-dbcp-1.2.1.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-discovery.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/commons-pool-1.2.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxen-full.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jaxrpc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/jdom.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junit.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/junitee.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/log4j-1.2.8.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/oracle-wsil.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saaj.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/extlib/saxpath.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/ojdbc14.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jdbc/lib/orai18n.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/ojmisc.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/jlib/regexp.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/relaxngDatatype.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/soap.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/webservices/lib/xsdlib.jar"/>
    <code-source path="/opt/oracle/product/10.1.3.1/OracleAS_1/owsm/lib/custom"/>
    <import-shared-library name="apache.commons.logging"/>
    <import-shared-library name="oracle.xml.security"/>
    <import-shared-library name="oracle.xml"/>
    <import-shared-library name="oracle.http.client"/>
    </shared-library>
    <rmi-config path="./rmi.xml" />
    <jms-config path="./jms.xml" />
    <javacache-config path="../../../javacache/admin/javacache.xml" />
    <j2ee-logging-config path="./j2ee-logging.xml" />
    <log>
    <file path="../log/server.log" />
    </log>
    <java-compiler name="javac" in-process="false" options="-J-Xmx1024m -encoding UTF8" extdirs="/opt/oracle/product/10.1.3.1/OracleAS_1/jdk/jre/lib/ext" />
    <global-application name="default" path="application.xml" parent="system" start="true" />
    <application name="javasso" path="../../home/applications/javasso.ear" parent="default" start="true" />
    <application name="ascontrol" path="../../home/applications/ascontrol.ear" parent="system" start="false" />
    <application name="datatags" path="../../home/applications/datatags.ear" parent="default" start="true" />
    <application name="esb-dt" path="../applications/esb-dt.ear" parent="default" start="true" />
    <application name="esb-rt" path="../applications/esb-rt.ear" parent="esb-dt" start="true" />
    <application name="orabpel" path="../applications/orabpel.ear" parent="default" start="true" />
    <application name="hw_services" path="../applications/hw_services.ear" parent="orabpel" start="true" />
    <application name="orainfra" path="../applications/orainfra.ear" parent="default" start="true" />
    <application name="ruleauthor" path="../applications/ruleauthor.ear" parent="default" start="true" />
    <application name="rulehelp" path="../applications/rulehelp.ear" parent="default" start="true" />
    <application name="gateway" path="../applications/gateway.ear" parent="default" start="true" />
    <application name="policymanager" path="../applications/policymanager.ear" parent="default" start="true" />
    <application name="ccore" path="../applications/ccore.ear" parent="default" start="true" />
    <application name="coreman" path="../applications/coreman.ear" parent="default" start="true" />
    <global-web-app-config path="global-web-application.xml" />
    <transaction-manager-config path="transaction-manager.xml" />
    <web-site default="true" path="./default-web-site.xml" />
    <cluster id="1243223194" />
    </application-server>

  • Create the missing server.xml files yourself

    Paula and I created the missing server.xml files ourselves. The script is at the bottom of the post.
    We badly needed the missing server.xml files to work on the customizations and Oracle was unable to solve this problem.
    "I checked on our Automated Release Updates System found that we dont have server.xml that includes PosDelivSchedVO. This confirms that there is no patch available at present to provide you with this file.
    As this is not related to coding issue,Support will not be able to log a bug with Development. You may log an Enhancement Request via Metalink, so that Development would review your requirement and if feasible would include this file at the time of future releases"
    #!/bin/sh
    # This script is used to generate the missing server.xml files for $JAVA_TOP/oracle/apps/pos
    # Usage: server.sh
    # Note: This script has many hardcoded codes and it may generate the wrong server.xml.
    # The manual fixes to the generated server.xml may be need.
    # Check the codes before you use it.
    # It's possible to write a generic version of this script to deal with more issues, like
    # 1. dealing with the Oracle apps patches applied
    # 2. only generates the missing server.xml files automatically
    # 3. can specify the module, like pos or po ..., to generate server.xml.
    # 4. including only the OA Framework objects used.
    # 5. correctly generate the right "encoding"
    # Luke Chi
    APP=pos
    PKG_HEAD=oracle.apps.$APP
    PKG_TAIL=server
    SERVER_FILENAME=server_1.xml
    cd $JAVA_TOP/oracle/apps/$APP
    # for SUB_DIR in asn isp lov product rcv sbd ship administration changeorder jar planning profile registration schema servic
    es suppreg
    for SUB_DIR in asn lov product rcv ship administration planning profile schema services suppreg
    do
    echo $SUB_DIR
    cd $SUB_DIR/server
    PKG=$PKG_HEAD.$SUB_DIR.$PKG_TAIL
    cat << EOF > $SERVER_FILENAME
    <?xml version="1.0" encoding='WINDOWS-1252'?>
    <!DOCTYPE JboPackage SYSTEM "jbo_03_01.dtd">
    <!-- \$Header: server.xml 115.11 2003/03/25 22:31:14 luke ship $ -->
    <JboPackage
    Name="server"
    SeparateXMLFiles="true"
    EOF
    echo " PackageName=\"$PKG\" >" >> $SERVER_FILENAME
    ls *.xml | grep -v server*.xml | while read FILE
    do
    BASENAME=`basename $FILE .xml`
    cat << EOF >> $SERVER_FILENAME
    <Containee
    Name="$BASENAME"
    FullName="$PKG.$BASENAME"
    EOF
    for TYPE in AM EO VL VO AO
    do
    BASENAME_2=`basename $BASENAME $TYPE`
    if [ $BASENAME_2 != $BASENAME ]; then
    case $TYPE in
    AM) echo " ObjectType=\"AppModule\" >" >> $SERVER_FILENAME ;;
    EO) echo " ObjectType=\"Entity\" >" >> $SERVER_FILENAME ;;
    VL) echo " ObjectType=\"ViewLink\" >" >> $SERVER_FILENAME ;;
    VO) echo " ObjectType=\"ViewObject\" >" >> $SERVER_FILENAME ;;
    AO) echo " ObjectType=\"Association\" >" >> $SERVER_FILENAME ;;
    CO) echo " ObjectType=\"Luke_CO\" >" >> $SERVER_FILENAME ;;
    *) echo " ObjectType=\"Luke_UNKNOWN\" >" >> $SERVER_FILENAME ;;
    esac
    break
    fi
    done
    echo " </Containee>" >> $SERVER_FILENAME
    done
    echo "</JboPackage>" >> $SERVER_FILENAME
    grep Luke $SERVER_FILENAME
    if [ $? -eq 0 ]; then
    mv $SERVER_FILENAME server_error.xml
    fi
    pwd
    cd ../..
    done

    We loaded the Oracle seeded BC4J components from mid-tier file system to jdev OA Framework using the server.xml files generated by our Unix script attached in the privious posting above. We ,then did the customizations and successfully deployed them to our test Oracle apps.

  • How do i update an existing XML File?

    Hello, I have the following xml file gps.xml:<?xml version="1.0"?>
    <!DOCTYPE gps SYSTEM "gps.dtd">
    <gps>
       <latitude>43.00000</latitude>
       <longitude>-83.00000</longitude>
    </gps> I already have methods written to get the values. But how can I change these values and update the file to reflect these changes?
    thanks for your help!

    Hi, I already have this following code. I would just like to add a method to it to update the existing XML file with different lat/lon coordinates. Could you please help me out with it? thanks
    import java.io.*;
    import java.io.PrintWriter;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.xml.parsers.*;
    import org.w3c.dom.*;
    import org.xml.sax.*;
    public class Gps implements java.io.Serializable {
        private double latitude_;
        private double longitude_;
        public Gps(Document doc) {
            setup(doc.getDocumentElement());
        public Gps(String uri) throws IOException, SAXException, ParserConfigurationException {
            setup(uri);
        public void setup(Document doc) {
            setup(doc.getDocumentElement());
        public void makeElement(Node parent) {
            Document doc;
            if (parent instanceof Document) {
                doc = (Document)parent;
            } else {
                doc = parent.getOwnerDocument();
            Element element = doc.createElement("gps");
            int size;
            URelaxer.setElementPropertyByDouble(element, "latitude", this.latitude_);
            URelaxer.setElementPropertyByDouble(element, "longitude", this.longitude_);
            parent.appendChild(element);
         public Document makeDocument() throws ParserConfigurationException {
            Document doc = UJAXP.makeDocument();
            makeElement(doc);
            return (doc);
        public final double getLatitude() {
            return (latitude_);
        public final void setLatitude(double latitude) {
            this.latitude_ = latitude;
        public final double getLongitude() {
            return (longitude_);
        public final void setLongitude(double longitude) {
            this.longitude_ = longitude;
       public final void updateXmlFile(double latitude, double longitude) {
         // something???
        public final void updateXmlFile(double latitude, double longitude) {
            this.latitude_ = latitude;
            this.longitude_ = longitude;
        public String makeTextDocument() {
            StringBuffer buffer = new StringBuffer();
            makeTextElement(buffer);
            return (new String(buffer));
        public void makeTextElement(StringBuffer buffer) {
            int size;
            buffer.append("<gps");
            buffer.append(">");
            buffer.append("<latitude>");
            buffer.append(Double.toString(getLatitude()));
            buffer.append("</latitude>");
            buffer.append("<longitude>");
            buffer.append(Double.toString(getLongitude()));
            buffer.append("</longitude>");
            buffer.append("</gps>");
        public String toString() {
            try {
                return (makeTextDocument());
            } catch (Exception e) {
                return (super.toString());
    }

  • TS1717 I get the following error message after installing the latest version of itunes via auto update:  "the itunes Library file cannot be saved. An unknown error occurred (-54). Has anyone ever seen this message and anyone have a suggestion what to do?

    I get the following error message after installing the latest version of itunes via auto update:  "the itunes Library file cannot be saved. An unknown error occurred (-54). Has anyone ever seen this message and anyone have a suggestion what to do?

    Hi pholewinski!
    I have a couple of articles for you here that I believe will help you with this issue. The first is an article on advanced troubleshooting, and it can be found here:
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    If following that article's steps doesn't take care of the issue, you can try the things listed in this article, which is about permissions issues in iTunes:
    iTunes: Missing folder or incorrect permissions may prevent authorization
    http://support.apple.com/kb/TS1277
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • [svn] 3638: Changing the build order of swc file update with dita xml files .

    Revision: 3638
    Author: [email protected]
    Date: 2008-10-14 16:49:56 -0700 (Tue, 14 Oct 2008)
    Log Message:
    Changing the build order of swc file update with dita xml files.
    By default this would now happen during the checkintests target - so "ant clean main" shouldn't get affected.
    To opt out use -Dno.doc=true
    QA: No
    Doc: No
    Tests: checkintests
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    flex/sdk/trunk/frameworks/projects/flex/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/haloclassic/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml
    flex/sdk/trunk/frameworks/projects/utilities/build.xml

    Revision: 3638
    Author: [email protected]
    Date: 2008-10-14 16:49:56 -0700 (Tue, 14 Oct 2008)
    Log Message:
    Changing the build order of swc file update with dita xml files.
    By default this would now happen during the checkintests target - so "ant clean main" shouldn't get affected.
    To opt out use -Dno.doc=true
    QA: No
    Doc: No
    Tests: checkintests
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/flash-integration/build.xml
    flex/sdk/trunk/frameworks/projects/flex/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/haloclassic/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml
    flex/sdk/trunk/frameworks/projects/utilities/build.xml

  • [svn] 3037: Update flex-config. xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path .

    Revision: 3037
    Author: [email protected]
    Date: 2008-08-29 06:54:15 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Update flex-config.xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path. This will allow the correct playerglobal.swc to be located when the target player version is set in the flex-config.xml or passed to mxmlc or compc.
    Modified Paths:
    blazeds/trunk/apps/team/WEB-INF/flex/flex-config.xml
    blazeds/trunk/qa/resources/config/flex-config.xml

    Unfortunately I don't have the
    "org.eclipse.swt.win32.win32.x86_3.1.2.jar" file. On my computer
    the folder is not set up the same way (C:\Program Files\Adobe\Flex
    Builder 2\plugins) instead it is set up as (C:\Program
    Files\Adobe\Flex Builder 2\metadata\plugins) but I've looked in
    everything and that file just isn't in there. I've re downloaded it
    twice. Still not there. Is there anything else i can do.

  • Updating an existing  xml file in java

    Hi,
    i need to update an existing xml file with new nodes. But i don.t know how to do that. i can read and write a new xml file . But updaton seems too difficult for me.
    my xml structure is like this
    <main_node>
    <node1>
    <name> name1</name1>
    <id>ID</id>
    </node1>
    <node2>
    <name2> name2</name2.
    <id>ID</id>
    </node2.
    </main_node>
    i want to insert node3 in this structure.
    please help, it,s urgent;
    Thanks in Advance

    here is the code if ur using dom..
    Node node4 = doc.createTextNode(name3);
    Element element4=doc.createElement("name3");
    element4.append(node4);
    c one thing that u should take care here is that u have created and is reflected on ly in ur document object and not in xml..for that u have to write some more code like this
    // This method writes a DOM document to a file
    public static void writeXmlFile(Document doc, String filename) {
    try {
    // Prepare the DOM document for writing
    Source source = new DOMSource(doc);
    // Prepare the output file
    File file = new File(filename);
    Result result = new StreamResult(file);
    // Write the DOM document to the file
    Transformer xformer = TransformerFactory.newInstance().newTransformer();
    xformer.transform(source, result);
    } catch (TransformerConfigurationException e) {
    } catch (TransformerException e) {
    look this code..that will help u
    regards
    [email protected]

  • Recreate server.xml file

    When I copy class files for a seeded application from the server to my JDev project, there are some instances where there is no server.xml file. How do I recreate this?

    Thanks both of you.
    I tried this for $JAVA_TOP/oracle/apps/okc/schema/repository/authoring/server on the Apps server. There is no server.xml file there. So, I
    1. copied all the files in the server directory to %JDEV_USER_HOME%\myclasses\oracle\apps\okc\schema\repository\authoring\server
    2. created the package oracle.apps.okc.schema.repository.authoring.server.
    3. highlighted the package in the JDev Navigator
    4. Selected all the files in %JDEV_USER_HOME%\myclasses\oracle\apps\okc\schema\repository\authoring\server and did File->Open
    The generated server.xml file is essentially empty -- it does not contain any reference to the files in the directory. Does this matter? Here is the generated server.xml:
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE JboPackage SYSTEM "jbo_03_01.dtd">
    <JboPackage
    Name="server"
    SeparateXMLFiles="true"
    PackageName="oracle.apps.okc.schema.repository.authoring.server" >
    <DesignTime>
    <Attr Name="_version" Value="9.0.3.14.00" />
    <Attr Name="_ejbPackage" Value="false" />
    </DesignTime>
    </JboPackage>
    Edited by: user522137 on Apr 2, 2009 11:23 AM
    Edited by: user522137 on Apr 2, 2009 11:36 AM

  • [svn:bz-4.0.0_fixes] 19744: Updated main build xml file to build ds-console only under sdk3 temporarily .

    Revision: 19744
    Revision: 19744
    Author:   [email protected]
    Date:     2011-01-13 11:58:13 -0800 (Thu, 13 Jan 2011)
    Log Message:
    Updated main build xml file to build ds-console only under sdk3 temporarily.
    (SDKs updated in previous CL)
    flex_sdk_3 version 3.5.0 19710
    flex_sdk_4 version 4.x-lcds-hf 19581
    Modified Paths:
        blazeds/branches/4.0.0_fixes/build.xml

    you might want to add the following to the .configure line in you pkgbuild..
    --libdir=/usr/lib/lighttpd --with-openssl=/usr/include/openssl
    This puts the libs in /usr/lib/lighttpd, much like apache does in its own dir, instead of just dumping then in the /usr/lib dir with everything else. A bit cleaner.
    Also, not sure if bzip and gzip need to be in depends line to get output compression. I will report back when I find out.
    EDIT: Made a few more modifications to lighttpd PKGBUILD and associated files. HERE

  • Updating the whole xml file in  XMLType column

    Hi ,
    I am facing the problem in updating the XMLTYPE column.
    I need to update the whole xml file
    This is my table
    SQL> desc EMPJAL_TABLE;
    Name Null? Type
    EMPLOYEEID NOT NULL VARCHAR2(140)
    EMPCOM VARCHAR2(100)
    EMPJAL SYS.XMLTYPE(XMLSchema "www.EMPSIM.com" Element "EMPJAL") STORAGE
    Object-relational TYPE "EMPJAL_T"
    I am able to form the CLOB object and trying to use this sql command
    UPDATE EMPJAL_TABLE SET EMPJAL = XMLType( ? ) ) WHERE EMPLOYEEID ='emp1234';
    Here I want to update the whole xmlfile in XMLTYPE column.
    Error is - ORA-00933: SQL command not properly ended
    Please advise
    Thanks
    Govinds

    Hi Mark,
    I apologise for this mistake. I am really putting lot of efforts and also worked/working in advance topics of XML DB.
    Yes I am extensively using Oracle 10g r2 and suggesting others to use this
    This time I had put more effort before posting ,I had a series of queries to resolve most of then were working , this was the one giving problem inside my java code
    I am sorry for this .
    Any how I made another query which works better.
    Thanks
    Govinda

  • How to import BC4J package into JDEV project without server.xml file?

    Dear,
    I need to bring the seeded BC4J package into my JDEV OAF project. Usually to do that, once I am sure that all I need is accessible, I open the server.xml file for the BC4J that I need and I am all set - all the items from under that BC4J are brought in.
    How about if there is no server.xml file for that BC4J, for example, under oracle.apps.icx.por.req.webui, and I need to have a controller from under there in my project? Do I create this package (oracle.apps.icx.por.req.webui) manually? If I do that and then open the controller the controller is being brought into JDEV outside the package.
    Thank you.
    Anatoliy

    Sumit,
    Thank for quick response.
    Yes, I agree for the controller.
    But let's say I want to bring over some other xml staff, like some shared regions for example from under that webui. They are also brought outside the package. You have an idea?
    Regards,
    Anatoliy

  • Auto update of OC4J xml configuration files with JDev

    When using JDeveloper with source control (such as ClearCase), Is there a way to configure JDev to prompt the user to check-out the ejb-jar.xml, orion-ejb-jar.xml, web.xml, or application.xml files when JDev needs to update them but finds them to be read-only?
    I have found that if these xml files are not checked-out (read-only) and JDev needs to update them (such as when a new EJB is created), JDev does not notify the user that it cannot update them and it does not prompt the user to check them out of source control. Developers often forget that they need to manually check-out these XML files and perform an "update" on them, thus creating configuration problems.
    Please advise.
    Thank you.
    Matt Burton

    Matt,
    Not yet. We have similar requirements for other areas of JDeveloper. This is certainly on the list of enhancements.
    David Brown
    SCM Product Management

Maybe you are looking for