Split Development Directory Setup

Hi,
I have not found anywhere in this forum the answer to this question: the "Creating a Split Development Directory Environment " document says that the first step for Using the Split Development Directory Structure (at http://edocs.bea.com/wls/docs103/programming/splitcreate.html#wp1110877) is to "Create the main EAR source directory for your project". Ok. But where? (Is there particular directory in which this main EAR source directory should be created?)

Kumaran,
Split-Dir is a new feature in WebLogic Server 8.1. It will not be available
in previous releases.
- Nick
"kumaran" <[email protected]> wrote in message
news:405fef8a$[email protected]..
>
Hi,
Could you pls tell me whether weblogic6.1 supports split developmentdirectory
structure

Similar Messages

  • How to use the "split development directory structure" in JBuilder9 ?

    How to use the "split development directory structure" in JBuilder9 ?
    Have /APP-INF supported ?

    I've not used JBuilder much, but if it has ant support, then it should
    be pretty straight-forward.
    -- Rob
    Rick Ni wrote:
    How to use the "split development directory structure" in JBuilder9 ?
    Have /APP-INF supported ?

  • Doubt  about Split Development Directory

    I have one domain with one server managed in development mode, I need make available for my programmers, what I do...
    The directory source reside in same machine of server and will be shared between the programmers?
    The deployer will make build of application? Is so that do normally???
    The programmer only develop and deliver to deployer make build or the programmer there is that access my server remote and make build directly for applicatiopn server???
    I need setup a environment of development and need tips...
    Thank you

    Kumaran,
    Split-Dir is a new feature in WebLogic Server 8.1. It will not be available
    in previous releases.
    - Nick
    "kumaran" <[email protected]> wrote in message
    news:405fef8a$[email protected]..
    >
    Hi,
    Could you pls tell me whether weblogic6.1 supports split developmentdirectory
    structure

  • How to create split development directory environment using Eclipse Galileo

    Hello there!
    Well my question is on the subject... i want to use my Eclipse Galileo IDE to develop applications but i don't know hoe to set the develop structure for that... how can i set the build path? Should i add al the *.jar on weblogic lib?
    I know about Workshop Studio but i don't understand it :_
    If any of you have a tutorial for this it would be great...
    Thanx in advance!

    Hi,
    You can start with this:
    http://docs.oracle.com/cd/E17904_01/doc.1111/e15866/tasks.htm
    Cheers,
    Vlad

  • Split Development Directory Structure Examples Package

    Can any body tell me if this example works with workshop?, and it is works how
    can i achive this?
    thanks in advance
    Viviana

    Workshop uses split-dir file structure, but not the build tasks. This is
    because the IDE has a much finer grained notion of build than running ant
    from a shell.
    Cheers
    mbg
    "viviana echeverry" <[email protected]> wrote in message
    news:4006aad1$[email protected]..
    >
    Can any body tell me if this example works with workshop?, and it is workshow
    can i achive this?
    thanks in advance
    Viviana

  • Split development env + wlcompile + EJB3

    Hi Bea,
    in a Weblogic 10 environment using EJB3 annoted stateless session beans in a split development directory structure. The wlcompile ant task does not recognizes the module as EJB module around the EJB3 beans and compiles all of the sources into the APP-INF/classes dir.
    The wlappc fails because there are no any EJB module as the application.xml descibes.
    thanks forward,
    Zsolt

    I ended up finding the solution to my own problem, so here it is in case anyone else runs into this problem. Turns out I was missing the file EAR/META-INF/application.xmlThe splitdir example contains a sample file.

  • Develop/Deploy Adapters/Connectors using split development directories

    BEA documentation says that 8.1 does not support resource adapter split development/deployment
    for writing adapters from scratch. We will be using split directories and writing
    connectors for these. What are our options ? (we would still like to develop and
    deploy ejbs and web applications using the split dev/deployment).

    wlcompile won't recognize them or do anything special. It would just
    compile them into APP-INF/classes. You could just exclude that module
    and compile it yourself if you wanted more control over it.
    wlappc works fine with them, and split-directory should work fine as well.
    -- Rob
    DP wrote:
    BEA documentation says that 8.1 does not support resource adapter split development/deployment
    for writing adapters from scratch. We will be using split directories and writing
    connectors for these. What are our options ? (we would still like to develop and
    deploy ejbs and web applications using the split dev/deployment).

  • Exploded vs. Archived EAR structure (when using split development)

    Using the split development structure suggested in Weblogic 8.1 with wlpackage
    ant task, I noticed that the exploded ear and the archived ear generation creates
    a "flat" deployment structure. i.e. all the files inside the ear hierarchy are
    bundled without any intermediate respective jars.
    Is there a provision to package the ejb modules in one or more jar files when
    building a qa and/or production ear ? Is this possible to accomplish or do I need
    to write separate ant "targets" in the ant script that would manually jar up the
    necessary ejbs. If so, how would this work in conjunction when I have a "ant ear"
    target ?
    I also noticed that the medrec example app has application specific value/dto
    classes bundled in a separate jar file using a build.xml file. My question, when
    running wlcompile at a higher level how does it know NOT to put the value classes
    separately under APP-INF/classes, i.e. why does the build not build/see these
    common value classes twice.
    Thanks for your help!

    DP wrote:
    Using the split development structure suggested in Weblogic 8.1 with wlpackage
    ant task, I noticed that the exploded ear and the archived ear generation creates
    a "flat" deployment structure. i.e. all the files inside the ear hierarchy are
    bundled without any intermediate respective jars.
    Is there a provision to package the ejb modules in one or more jar files when
    building a qa and/or production ear ? Is this possible to accomplish or do I need
    to write separate ant "targets" in the ant script that would manually jar up the
    necessary ejbs. If so, how would this work in conjunction when I have a "ant ear"
    target ? You would have to do this manually. Typically wlpackage would have to
    modify your application.xml to archive the modules. For instance, your
    application.xml probably has uris like myweb, myejb in it now because
    that's how you named your directories. If we archived those, they'd
    become myweb.war and myejb.jar, and the application.xml would need to be
    modified to reflect the new uris.
    It's all possible for us to do, but we ran out of time during 8.1 to get
    this one in.
    >
    I also noticed that the medrec example app has application specific value/dto
    classes bundled in a separate jar file using a build.xml file. My question, when
    running wlcompile at a higher level how does it know NOT to put the value classes
    separately under APP-INF/classes, i.e. why does the build not build/see these
    common value classes twice. I'm not sure I exactly understand your question, but let me explain how
    wlcompile works and see if that answers your question.
    wlcompile looks at each directory under the srcdir and decides whether
    it's an EJB, a webapp, or a java module. It supports an
    includes/excludes list to let you filter those directories.
    Anything that's not recognized as an EJB or webapp is compiled into
    APP-INF/classes.
    -- Rob
    >
    Thanks for your help!

  • Application Development Directory Structure

    I work with a team consisting of five programmers who want to rewrite a suite of software developed in C/C++ to Java. This will consist of numerous application programs; none of which are web-based. We use the UNIX OS and will access an Oracle database using JDBC. We also maintain our source code using CVS. We want to deploy each of our applications as a separate jar file. We would also like to identify either individual applications or groups of applications as Java packages. Our problem is setting up our development directory structure. We've been struggling with various structures, most of which work fine if our source files don't have a package statement, but we've had no luck finding a package statement that works.

    They aren't "extraneous levels", they are fundamental
    requirements of Java. Have a look at this
    http://java.sun.com/docs/books/tutorial/java/interpack/
    ackages.html. Any beginner Java book/article/tutorial
    should explain packages.Thanks for the url, I have perused numerous java books and searched the Sun site, but haven't found anything precise. In some locations I've seen it recommended to separate the source and classes in different directories, while other sources have them together in one file.
    Also, in response to an earlier comment, I think
    having different related applications under the same
    development tree and separated by packages is much
    easier to maintain/use/develope than having them all
    completely separate.We will have approximately 50 applications, with about 25 related to one application area and the other 25 related to another application area. The source for each of these application areas will be under CVS. To me it doesn't seem like the most convienent way to manage the software. But we'll have to do what we'll have to do.

  • An EFFECTIVE development directory structure for J2EE platform?

    Hi, here we r talking about deployment environment more than development
    environment. Have u ever think about designing an EFFECTIVE development
    directory structure for J2EE platform( e.g. weblogic )? u r not using the
    deployment directories for coding, r u? :)
    I used to construct a dir structure for dev and want to improve it.
    d:/wholesystem/*.prj // Project files
    ...../module1/src/com/.... // Module source files
    ...../module1/doc/... // Module doc files
    ...../module1/classes/... // Module class files
    ...../module2/...
    ...../web/*.jsp // web page files
    ...../web/images/... // web page images
    ...../web/WEB-INF/... //...
    Do u have any good ideas? Thanks!
    * Name: Gary Wang
    * Tele: 010-65546668-8119
    * Mail: [email protected]

    Create a web-inf folder at the same level of src and
    jsp folder inside src
    i mean
    /build.xml
    /src/
    /src/java/<package>/...../*.java
    /src/demo/<package/...../*.java
    /src/test/<package>/....../*.java
    /src/jsp
    /web-infSo, would you put in /src/jsp only the *.jsp?
    And what in /WEB-INF ? What woud you put there? Would you do something like:
    /WEB-INF/web.xml
    /WEB-INF/src/<package>/..../<my_servlets_and_j2ee_stuff>.java
    /WEB-INF/classes/<package>/..../<my_servlets_and_j2ee_stuff>.java
    In this manner sources and classes are in the same tree, it does not seem very clean to me, expecially if you consider that probably I must have a "test" directory to unit test some j2ee stuff (as for the j2se stuff in "src"): how would you do that?
    Is this directory structure anyway what you meant or not?
    alessio

  • Installed Xcode but can't find /developer directory

    I am a novice developer this might be a stupid question but I need help installing excode so I can eventually install dashcode. I'm using iMac 10.7.3 and installed xcode4.3.1 from app store. But I can't find any /developer directory. There is nothing in the 'application' folder that says "install xcode." How do I continue with the installation after downloading excode to my computer? (which I believe I did.)

    I realize now. Dashcode is now a separate application. Problem solved. Thanks.

  • Getting Data Direct license error on Development Environment setup

    Using .NET portal G6 sp1
    <br>
    I have setup UI development environment. But I am getting datadirect license error on Debug->F5 in Visual studio.
    <br>
    I get Database connectivity error. I checked PT config manager. It showed connection was good.
    <br>
    Looking at PTSPY I found thus error:
    <br><br>
    Error     OpenKernel.Database     .NET #1938     com.plumtree.openkernel.impl.db.DatabaseService     Exception acquiring database connection
    System.InvalidOperationException: <b>The DataDirect ADO.NET Data Provider you are attempting to use is not licensed. If you would like to license a provider, please call 800-876-3101 or visit DataDirect at www.DataDirect-Technologies.com.</b> at DDInt.License.LicFile.UnlockProvider(String licFileName, Int32 version, LicProviderType providerType)
    at DDInt.Common.CommonConnectionImpl.Open()
    at DDTek.SQLServer.SQLServerConnection.Open()
    at com.plumtree.openkernel.impl.db.DatabaseService.GetConnection() in e:\buildroot\Release\openkernel\2.0.x\opendb\build\x86\src\csharp\com\plumtree\openkernel\impl\db\DatabaseService.cs:line 1066
    <br>
    Has anyone seen this error before?

    Thank you for posting this response. This hit me last year and I could not for the life of me remember what we did to address this. Your note saved me gobs of time :)
    In that spirit... I'm including some notes we made on seeing this sort of error on the remote tier when using the native API (installing the automation server on the remote tier so the API is accessible to our native portlets). Ideally someone else finds value in this.
    P.S. - ignore the preachy/information tone on bits of this. It's written for our internal documentation, so I had to do it up all classy-like :P
    Error: "Datadirect license file not found at configured location: [license file directory goes here]\DDplm.lic"
    This error will occur if you use certain portions of the native API on the remote tier. When you use the native API you typically install the "automation server" (job processing server) - this is more appropriately thought of as a "light" portal install where the underlying portal logic / process libraries are installed and registered on the server, but the user interface portions are not available (EX: no web interface).
    When you install the automation server and portal cross-platform database libraries are installed to abstract out behavior specific to MS SQL, Oracle, etc. The automation server installer does not, however, install 100% of the files used by the portal - specifically, the license file(s) required by this cross-platform database library.
    To resolve this issue you must do two things.
    =========================================================
    1. Copy the license files from the portal to the automation server
    =========================================================
    * "Share" or terminal service over to a portal server. Navigate to the following (or close to it) directory path to find the license files generated by the portal installer.
    \\MyPortalServer\d$\Program Files\plumtree\ptportal\6.0\bin\
    * Find the folder "assemblies" and locate the file "DDplm.lic"
    * Copy the "assemblies" folder to your automation server, matching the path/location
    EX: \\MyAutomationServer\d$\Program Files\plumtree\ptportal\6.0\bin\
    * You should now have the following folders/files installed on your automation server
    \\MyAutomationServer\d$\Program Files\plumtree\ptportal\6.0\bin\assemblies\DDplm.lic
    =========================================================
    2. Update the automation server config file to point to the DDplm.lic file
    =========================================================
    Now that you have the appropriate license file copied to your automation server you must reference it within the core automation server config file. Recall that the automation server is really just a subset of the portal - the paths will then make more sense
    * Navigate to your automation server's core configuration file
    \\MyAutomationServer\d$\Program Files\Plumtree\settings\common\serverconfig.xml
    * Open this file and find the entry for "database-connection:adonet-license-file-directory"
    <setting name="database-connection:adonet-license-file-directory">
        <value xsi:type="xsd:string">[license file directory goes here]</value>
    </setting>* Update the "serverconfig.xml" file to include the local absolute path to the folder that contains the license file ("DDplm.lic") you copied over in step (1). Your final entry should look similar to the following:
    <setting name="database-connection:adonet-license-file-directory">
        <value xsi:type="xsd:string">D:\Program Files\plumtree\ptportal\6.0\bin\assemblies\</value>
    </setting>
    =========================================================
    3. There is no step 3
    =========================================================
    That should be it.

  • Open Directory Setup Error

    I attempted to set up the Open Directory on Lion Server.  I entered all the information and clicked the Setup button.  It said it had an error while setting it up and that I should restart the Server to fix it.  I did that and now when I go to connect, I get the message "An error occurred while attempting to bind diradmin to 192.168.1.90.  Please try again."  Now what?  Is there a way to clear the settings and start over?  Mac Mini - Server 10.7.2.

    I just encountered this error.  "An error occurred while attempting to bind diradmin to ' and the my local IP address.
    What fixed it for me was to set the IP address to 127.0.0.1 (which means the current machine) rather than the current machine's actual IP address.  Of course it should be the same thing, but it seems to be picky!

  • Directory Setup for RAC and Oracle Restart

    I have three database installations that I'd like some insight on the initial directory structure and permissions. The three installations are:
    1) Prod RAC - OEL 5U2, 11.2.0.2 Grid Infrastructure, 11.2.0.2 DB EE with RAC option
    2) Test RAC - OEL 5U2, 11.2.0.2 Grid Infrastructure, 11.2.0.2 DB EE with RAC option
    3) Single Instance - OEL 5U2, 11.2.0.2 Grid Infrastructure Standalone (Oracle Restart), 11.2.0.2 DB EE
    The they all have two users GRID (for Grid Infrastructure Software Owner) and ORACLE (for Oracle Database Software Owner).
    We had a consultant install the databases. It's very weird since we have an inconsistency in directories and permission. I want to understand the inconsistency between RAC installations as well as Oracle Restart Install.
    SEE BELOW: The two RAC servers have different owners for /u01/app/11.2.0.2 directory. The Oracle Restart Installation - Single Instance has the same owner as Prod RAC but different than Test RAC. What the consultant said was that ORACLE_BASE would be /u01/app/oracle for both Grid Infrastructure and Database installations. This was to apply to TEST/PROD RAC (3 node, 3 instances, 1 instance/node) and Oracle Restart installation. The GRID_HOME would be /u01/app/11.2.0.2/grid and ORACLE_HOME would be /u01/app/11.2.0.2/db_1. It seems like the owners aren't setup correctly. Why? I don't want problems with patching or upgrading. If this setup is technically incorrect what is the best way to setup so there's no owner/permission issues. Is it necessary to have two separate ORACLE_BASE's like /u01/app/grid?
    PRODUCTION REAL APPLICATION CLUSTER (Displaying only one Node details)
    $ cd app
    drwxr-xr-x 6 root oinstall 4096 Feb 26 2011 .
    drwxr-xr-x 3 root oinstall 4096 Apr 21 2009 ..
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 11.2.0.2
    drwxrwxr-x 2 emagent oinstall 4096 Feb 26 2011 emagent
    drwxrwxr-x 9 oracle oinstall 4096 May 16 2011 oracle
    drwxrwx--- 7 grid oinstall 4096 Feb 26 2011 oraInventory
    $ cd 11.2.0.2
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 .
    drwxr-xr-x 6 root oinstall 4096 Feb 26 2011 ..
    drwxr-xr-x 79 oracle oinstall 4096 Mar 29 2011 db_1
    drwxr-xr-x 69 root oinstall 4096 Feb 26 2011 grid
    $ cd ..
    $ cd oracle
    9 oracle oinstall 4096 May 16 2011 .
    drwxr-xr-x 6 root oinstall 4096 Feb 26 2011 ..
    drwxr-xr-x 4 oracle oinstall 4096 Feb 26 2011 admin
    drwxr-xr-x 3 oracle oinstall 4096 Feb 26 2011 cfgtoollogs
    drwxrwxr-x 2 grid oinstall 4096 Feb 26 2011 Clusterware
    drwxrwxr-x 11 grid oinstall 4096 Feb 26 2011 diag
    drwxrwxr-x 3 grid oinstall 4096 Feb 26 2011 hqrac03
    drwxr----- 3 oracle oinstall 4096 May 16 2011 oradiag_oracle
    drwxr-xr-x 3 root root 4096 Mar 13 2011 oradiag_root
    TEST REAL APPLICATION CLUSTER (Displaying only one Node details)
    $ cd app
    drwxr-xr-x 6 root oinstall 4096 Jan 26 2011 ./
    drwxr-xr-x 3 root oinstall 4096 Jan 26 2009 ../
    drwxrwxr-x 4 root oinstall 4096 Jan 26 2011 11.2.0.2/
    drwxrwxr-x 2 emagent oinstall 4096 Mar 1 2011 emagent/
    drwxrwxr-x 10 grid oinstall 4096 May 16 2011 oracle/
    drwxrwx--- 7 grid oinstall 4096 Jan 27 2011 oraInventory/
    $ cd 11.2.0.2
    drwxrwxr-x 4 root oinstall 4096 Jan 26 2011 ./
    drwxr-xr-x 6 root oinstall 4096 Jan 26 2011 ../
    drwxr-xr-x 80 oracle oinstall 4096 Mar 17 2011 db_1/
    drwxr-xr-x 70 root oinstall 4096 Jan 27 2011 grid/
    $ cd ..
    $ cd oracle
    drwxrwxr-x 10 grid oinstall 4096 May 16 2011 ./
    drwxr-xr-x 6 root oinstall 4096 Jan 26 2011 ../
    drwxr-xr-x 4 oracle oinstall 4096 Feb 2 2011 admin/
    drwxr-xr-x 4 oracle oinstall 4096 Feb 2 2011 cfgtoollogs/
    drwxr-xr-x 2 grid oinstall 4096 Jan 26 2011 Clusterware/
    drwxrwxr-x 11 grid oinstall 4096 Jan 26 2011 diag/
    drwxr-xr-x 3 grid oinstall 4096 Jan 26 2011 hqract03/
    drwxr-xr-x 3 grid oinstall 4096 Mar 23 2011 oradiag_grid/
    drwxr----- 3 oracle oinstall 4096 May 16 2011 oradiag_oracle/
    drwxr-xr-x 3 root root 4096 Jan 27 2011 oradiag_root/
    SINGLE INSTANCE DATABASE (ORACLE RESTART)
    $ cd app
    drwxrwxr-x 6 503 oinstall 4096 Feb 26 2011 .
    drwxr-xr-x 3 root root 4096 Apr 16 2009 ..
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 11.2.0.2
    drwxrwxr-x 8 grid oinstall 4096 Feb 26 2011 oracle
    drwxrwx--- 6 grid oinstall 4096 Feb 26 2011 oraInventory
    $ cd 11.2.0.2
    drwxrwxr-x 4 grid oinstall 4096 Feb 26 2011 .
    drwxrwxr-x 6 503 oinstall 4096 Feb 26 2011 ..
    drwxr-xr-x 76 oracle oinstall 4096 Apr 6 2011 db_1
    drwxr-x--- 69 root oinstall 4096 Feb 26 2011 grid
    $ cd ..
    $ cd oracle
    drwxrwxr-x 8 grid oinstall 4096 Feb 26 2011 .
    drwxrwxr-x 6 503 oinstall 4096 Feb 26 2011 ..
    drwxrwxr-x 5 grid oinstall 4096 Feb 26 2011 admin
    drwxrwxr-x 7 grid oinstall 4096 Feb 26 2011 cfgtoollogs
    drwxrwxr-x 2 grid oinstall 4096 Feb 26 2011 checkpoints
    drwxrwxr-x 2 grid oinstall 4096 Feb 26 2011 Clusterware
    drwxrwxr-x 11 grid oinstall 4096 Feb 26 2011 diag
    drwxrwxr-x 3 grid oinstall 4096 Feb 26 2011 hqods01
    Thanks so much.

    Hello
    I did only check prod, as that is the important one.
    i am afraid that setup is not clean. I won't use the work is wrong, but need to be normalized.
    grid oracle base need to be separate from oracle oracle base, and the grid oracle home, MUST be outside of oracle base/oracle home of the oracle user.
    In a multi user setup, the structure should be as follow.
    grid user, group oinstall, asm* groups
    oracle user, group oinstall, dba and db* groups
    The GRID install, have, grid home and oracle base
    the oracle base for grid should be, /u01/app/grid
    the grid home should be, /u01/app/11.2.0.3/grid
    the Oracle user have several homes, and oracle base
    the oracle base for oracle should be, /u01/oracle
    so, for permissions, when I create this, i do as root
    mkdir -p /u01/app/11.2.0.3/grid
    mkdir -p /u01/app/grid
    mkdir -p /u01/app/oracle
    mkdir -p /u01/app/oraInventory
    chown -R grid:oinstall /u01
    chown -R oracle:oinstall /u01/app/oracle
    then, you install grid .. you have so say oracle home is /u01/app/grid and oracle home is /u01/app/11.2.0.3/grid
    at the end, the root.sh as part of the install will take care of the permissions for oraInventory, and the rest for grid.
    when grid is installed, you can move to the oracle db install you use oracle base as /u01/app/oracle and oracle home as /u01/app/oracle/product/11.2.0.3/dbhome_1
    that will give you
    2 4 drwxr-xr-x 6 root oinstall 4096 Sep 21 03:20 /u01
    5996545 4 drwxr-xr-x 6 root oinstall 4096 Sep 18 22:58 /u01/app
    5996546 4 drwxr-xr-x 8 grid oinstall 4096 Sep 18 22:50 /u01/app/grid
    5996547 4 drwxr-xr-x 3 root oinstall 4096 Sep 18 22:30 /u01/app/11.2.0.3
    5996548 4 drwxr-xr-x 69 root oinstall 4096 Sep 21 10:52 /u01/app/11.2.0.3/grid
    5996549 4 drwxrwx--- 5 grid oinstall 4096 Oct 30 22:08 /u01/app/oraInventory
    7406840 4 drwxr-xr-x 7 oracle oinstall 4096 Oct 30 22:09 /u01/app/oracle
    7406841 4 drwxr-xr-x 3 oracle oinstall 4096 Sep 18 22:58 /u01/app/oracle/product
    7406842 4 drwxr-xr-x 6 oracle oinstall 4096 Oct 30 22:04 /u01/app/oracle/product/11.2.0.3
    7766052 4 drwxr-xr-x 77 oracle oinstall 4096 Nov 2 01:20 /u01/app/oracle/product/11.2.0.3/dbhome_1
    Each user have to use his own oracle_base, as each oracle_base will store files and folders created for logs, admin, diagnostic with different permissions and different usages, for a reason you have role separation.
    example of the content of each oracle base
    $ find /u01/app/oracle/ -maxdepth 1 -ls
    7406840 4 drwxr-xr-x 7 oracle oinstall 4096 Oct 30 22:09 /u01/app/oracle/
    7406841 4 drwxr-xr-x 3 oracle oinstall 4096 Sep 18 22:58 /u01/app/oracle/product
    8749076 4 drwxrwxr-x 3 oracle asmadmin 4096 Sep 18 23:03 /u01/app/oracle/diag
    8749064 4 drwxr-x--- 6 oracle oinstall 4096 Oct 30 22:09 /u01/app/oracle/admin
    8716289 4 drwxr-xr-x 2 oracle oinstall 4096 Oct 30 22:18 /u01/app/oracle/checkpoints
    8749061 4 drwxr-x--- 5 oracle oinstall 4096 Sep 18 23:12 /u01/app/oracle/cfgtoollogs
    $ find /u01/app/grid/ -maxdepth 1 -ls
    5996546 4 drwxr-xr-x 8 grid oinstall 4096 Sep 18 22:50 /u01/app/grid/
    7307540 4 drwxrwxr-x 4 grid oinstall 4096 Sep 18 22:49 /u01/app/grid/diag
    7307474 4 drwxr-xr-x 2 grid oinstall 4096 Sep 18 22:33 /u01/app/grid/Clusterware
    7307265 4 drwxr-xr-x 2 grid oinstall 4096 Sep 18 22:33 /u01/app/grid/checkpoints
    7307532 4 drwxr-x--- 4 grid oinstall 4096 Sep 18 22:49 /u01/app/grid/cfgtoollogs
    7406796 4 drwxr-xr-x 3 root root 4096 Sep 18 22:50 /u01/app/grid/oradiag_root
    Take care,
    Alvaro.

  • Shared development directory with shared libraries

    Is there a way to use the .beabuild.txt format with things other than EARs? I've got some java and web shared libraries, and I'd like to take advantage of this feature to enable rapid development of these entities.

    Dird wrote:
    Hi guys,
    I need to link to files on a shared directory (Windows based) within some APEX pages (Linux based). Anyone done this process before? How would I do it? I've tried the following:file:///J:/dir/dir/file.doc
    file:///hostname/dir/dir/file.doc
    /i/file.doc  and #IMAGE_PREFIX#file.doc  // copied file to the linux images directory to testBut none of the following allows you to access the file (nothing pops up). All users have it mapped to the J: drive on their local machine. Offsite access isn't required.Browser? Version?
    Basically file:http:security on most modern browsers won't allow you to access <tt>file:</tt> scheme URLs from an <tt>http:</tt> scheme site. Doing so is seen as a violation of the same origin policy.
    Locate the file in the database or on a web server file system and access it using <tt>http:</tt>.

Maybe you are looking for

  • Mac Pro boot drive migration advice needed.

    I have a new Mac Pro.  I would like to simply pull the boot HD of my old MP (a 1.1), and stick it in the new one (a 5.1 hex).  Bad idea?

  • Why are my exported files not going to me email?  I have used 3 different ones.

    Why are my exported files not going to my email (receipts & business card)?  I have used 3 different ones...2 yahoo and 1 hotmail.  I have checked spam box also.

  • Dynamic Text Feild with Dynamic Scroll Bar

    I have a Dynamic Text Feild with a dynamic Scroll bar. It loads a simple ASCI text file with some html formating. but I still can not manage to get the text to format. The biggest problem with the format is a big space between paragraphs. I am not su

  • Play audio samples in different rates

    I need to play samples from differents rate, I'm working about speech and most of the time, the rate of the file is 16000Hz, the sound VI from National instrument don't allow a rate different from 8000, 11025, 22050 and 44100... Maybe, It could be po

  • Unable to activate Transfer Rule

    Hello Experts, I am not able to activate Transfer Rule in my System ( BW 3.0). I have written one routine and then when I am trying to activate I am getting below error messageu201D Object 0NOTIFICATN_ATTR object version not found in table. My Data S