BEA_HOME enviroment variable: what is it?

Could someone explain for me what I am suposed to fill in BEA_HOME to be able to harvast from Eclipse to OER? I am trying to follow this blog "http://brajeshde.blogspot.com.br/2012/01/my-first-experience-of-osb11gr1ps2.html" and I have no idea what is the purpose of BEA_HOME? Should I point to weblogic home?

What is the corect setting to be point by BEA_HOME enviroment variable?
My filesystem is:
C:\Oracle\Middleware>dir
01/11/2012 10:44 <DIR> coherence_3.7
29/11/2012 18:06 603 domain-registry.xml
01/11/2012 15:22 <DIR> JDev11g
01/11/2012 10:44 <DIR> jdk160_29
14/12/2012 16:57 <DIR> logs
29/11/2012 15:58 <DIR> modules
01/11/2012 10:44 625 ocm.rsp
14/12/2012 13:55 <DIR> oepe_11.1.1.8.0
01/11/2012 14:13 <DIR> oracle_common
01/11/2012 14:14 <DIR> Oracle_OSB1
01/11/2012 14:07 <DIR> Oracle_SOA1
29/11/2012 15:59 137.285 registry.dat
29/11/2012 15:59 3.665 registry.xml
22/11/2012 11:54 <DIR> registry111
29/11/2012 15:59 <DIR> repository111
01/11/2012 14:29 <DIR> user_projects
01/11/2012 10:40 <DIR> utils
01/11/2012 14:14 <DIR> wlserver_10.3
4 File(s) 142.178 bytes
16 Dir(s) 144.914.165.760 bytes free
While reading OER Guide, I read that I should point to my OSB HOme which in my case is C:\Oracle\Middleware\Oracle_OSB1. Other blog tells me that I should point to WebLogic home which in my case is C:\Oracle\Middleware\wlserver_10.3. And even other blog tell to point to the home where is all my Oracle tolls which in my case should be C:\Oracle\Middleware. What is the purpose to set this system variable? I can run weblogic, OSB and OER without that. The only reason I setted BEA_HOME was to use harvester and untill now, apparently there are no diference what the path I set the variable with.

Similar Messages

  • How to set enviroment variables for Inso Filter

    Hi everyone,
    I want to convert word documents to html using CTX_DOC.Filter.According to the documentation,I know I neednot set the 'Inso Filter'in the preference when creating index,but I must set enviroment variables for Inso Filter.
    I found the following instructions for it in the 8.1.5 documentation,but I can't understand it well.Is there anyone can tell me how to set enviroments variables for Inso Filter on Windows2000 Server?(My DB version is 8.1.7EE)
    Environment Variable Locations
    All environment variables related to Inso filtering must made visible to interMedia Text. Set these variables in the following locations:
    listener.ora file. This makes the environment variables visible to the extproc PL/SQL process.
    The operating system shell from where ctxsrv server is started. This makes the environment variables visible to the ctxsrv process, which does background DML.
    Any suggestions are apreciated
    Reemon
    null

    NSAPI plugins are normally configured using parameters specified in magnus.conf and/or obj.conf. What plugin requires you set an environment variable?

  • Enviroment variables!

    I have the java card kit 2_2_01. I have set the enviroment variables(at least i think so, i just did what the pdf says) and when I am trying to emulate one of the samples included,the message in the dos-prompt enviroment says
    Out of enviroment space.
    Exception in thread "main" java.lang.NoClassDefFoundError: apdutool/bat
    Generally it does that in every tool that I am trying to use. Thank you in advance for your interest!

    How is your environment set up ?
    The JRE is interpeting apdutool.bat, to apdutool/bat !
    Don't put apdutool.bat in your CLASSPATH. Just add the javacard \bin to your PATH. CLASSPATH is for Java ONLY, PATH is for Windows system environment

  • How to get current directory and enviroment variables

    Hello, 
       1.- Is there a global variable to get the actual (project, where is DSB and DSQ files) directory? 
       2.- Is there a way to get User directory like reading enviroment variables from Operative System? 
    Thanks in advance.
    PD: I'm using Dasylab12
    Solved!
    Go to Solution.

    Yes, use System Strings
    For example, ${DATA_FOLDER}.
    The easiest way to get the list is to right click and select Global Strings. The bottom half of the dialog box lists system strings, including date, time, the name of the worksheet, with or without path, the DEFAULT folders for worksheet, data, other, black box, etc. 
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • How to use enviroment variables in JSP code?

    I�m developing a web server with JSP�s, and I need to move the application to others computers. I need to access to a directory, but I don�t know it because the user can install the Application in the directory he wants. So I need to access to that directory in the JSP code.
    The directory is "C:\Program Files\....\tomcat\webapps\ROOT\upload". I have the CATALINA_HOME enviroment variable defiened as "C:\Program Files\....\tomcat\", so I need to use something like "CATALINAHOME\\webapps\upload\", but I don�t know how to mekr the JSP code to understand the enviroment variable CATALINA_HOME.
    I�ve tried with %CATALINA_HOME%, but the Tomcat server doesn�t recognize it. How can I access to that directory?
    Thanks (Sorry about my english)

    My JSP�s are in: %CATALINA_HOME%\webapps\ROOT\
    I wan�t to access to %CATALINA_HOME%\webapps\ROOT\upload\
    My JSP code:
    <% ...
    String DPATH = "C:\\Program Files\\JBuilder7\\jakarta-tomcat-4.0.3\\webapps\\ROOT\\upload\\";
    File newfile = null;
    newfile = new File(DPATH+filename);
    %>
    I want the JSP to locate the directory \webapps\ROOT\upload\ without knowing the complete route "c:\Program Files\...", because I have the enviroment variable CATALINA_HOME with the value "C:\Program Files\JBuilder7\jakarta-tomcat-4.0.3\". SO the user of the aplication only has to set the CATALINA_HOME variable and the aplication should access the upload directory throught the CATALINA_HOME variable.
    I can�t explain it better. Sorry.

  • How to use enviroment variables?

    I�m developing a web server with JSP�s, and I need to move the application to others computers. I need to access to a directory, but I don�t know it because the user can install the Application in the directory he wants. So I need to access to that directory in the JSP code.
    The directory is "C:\Program Files\....\tomcat\webapps\ROOT\upload". I have the CATALINA_HOME enviroment variable defiened as "C:\Program Files\....\tomcat\", so I need to use something like "CATALINAHOME\\webapps\upload\", but I don�t know how to mekr the JSP code to understand the enviroment variable CATALINA_HOME.
    I�ve tried with %CATALINA_HOME%, but the Tomcat server doesn�t recognize it. How can I access to that directory?
    Thanks (Sorry about my english)

    Try:
    System.getProperty("catalina.home");This is not the enviroment variable, but it's set by the catalina.bat file when starting java with the option -Dcatalina.home=%CATALINA_HOME%

  • Enviroment Variable settings

    Hello
          How to set the Environment Variable parameter settings done ?
          I want to install ECC - 6 in windows Xp professionel ,
          Kindly send me to how to set Enviroment Variables before starting installation .
    Regards
    Selvan

    Hi Selvan,
    I had already replied to your qurery in another thread
    could u let me know wat further information u require
    Sundar

  • How to set Enviroment Variable

    HI,
    I am using JDK 1.3.
    I want to know how should i set any new enviroment variable by using JAVA program with out any command line argument.

    Try asking the question again, and explain better - not understood.

  • Enviroment Variables Win XP

    Hello,
    I'm using many enviroment variables in Win XP but I get some errors.
    After many tryes I notice that I MUST use them in order. I mean :
    AXIS_PATH=C:\AXIS
    CLASSPATH=%AXIS_PATH%\axis.jar;
    JAXB_PATH=C:\JAXB
    works without problem.
    But this NOT works
    AXIS_PATH=C:\AXIS
    CLASSPATH=%AXIS_PATH%\axis.jar;%JAXB_PATH%\jaxb.jar
    JAXB_PATH=C:\JAXB
    because (I think) JAXB_PATH is after CLASSPATH.
    If I use echo %CLASSPATH% I get:
    C:\AXIS\axis.jar;%JAXB_PATH%\jaxb.jar
    How can I solve that ?
    I can put them in order as in my first example but I must change their name and I don't want.
    Thanks,
    Catalin

    Solved.
    ThanksGeneral posting etiquette is to describe here how you solved it.
    This is meant to be a sharing forum - any knowledge that you can impart here to others is gratefully accepted. When you pose a question, even if you get the answer from outside, it's considered a good thing to post the answer here, so that people who come later and search the forums for solutions to the same problem can find the answer.

  • Error with JAVA_HOME enviro variable

    I'm running win2k Pro. I installed first j2sdk1.4.1 and then tomcat 4.1.12 on my e:\. When I click START TOMCAT i recieve the error in a dialog box:
    Cannot find the file '-Djava.endorsed.dirs='(or one of its components). Make sure the path and filename are correct and that all required libraries are available
    Also in the command prompt it describes the error as:
    The JAVA_HOME environment variable is not defined
    This environment variable is need to run this program
    Using CATALINA_BASE: ..
    Using CATALINA_HOME: ..
    Using CATALINA_TMPDIR: ..\temp
    Using JAVA_HOME:
    I've set my environment variables as the following
    JAVA_HOME - e:\j2sdk1.4.1
    CATALINA_HOME - e:\Tomcat
    CLASSPATH - e:\Tomcat\common\lib\servlet.jar
    PATH - c:\WINNT;c:\WINNT\SYSTEM32\cmd;e:\j2sdk1.4.1

    I have exactly the same problem with the environment variables.
    I am running Win Me;
    I have all the environment variables set in AUTOEXEC.BAT, including the PATH ; but after many tests I am convinced that autoexec.bat is not being run at all;
    I tried adding an auto batch command file to be run every time a dos box was opened but while that runs ok it still leaves the problem outstanding;
    ie startup wont run through, claiming that the environment variables are not set:
    This is what I have set in autoexec.bat
    set PATH=C:\Java\j2sdk1.4.1_02\bin;C:\orawin95\bin;C:\WINDOWS;C:\WINDOWS\COMMAND
    SET JAVA_HOME="C:\Java"
    SET CATALINA_HOME="C:\Tomcat\jakarta-tomcat-4.1.24"
    ANy help/advice appreciated

  • Re: Global Variables (what! More?!?)

    [email protected] writes:
    One problem with using service objects for global variables is
    the flat namespace they expose.I thought that was the definition of a global variable.
    I could find no sanctioned way to provide a NameSpace that was
    global only for a Server Partition. By "global only to a server partition" do you mean "visible only
    to a server partition, but not to any others or to the clients?"
    If so, how 'bout putting them in a user-visible service object?
    Remember, "user-visible" is Forte's mis-terminology for
    "partition-visible." No law that I'm aware of says you can't put
    a user-visible service object in a server partition.
    <Snip! rest of letter, which in brief described a "roll-your-own"
    partition global area built into a subclass of TextNullable and (here's
    the really neat part!) replacing task.part.AppTitle with this object.>
    I have nothing to say about your workaround, except that it's a
    REALLY ugly hack (yes, I've been around for a while, too), and I
    wish I had thought of it! One can imagine ALL SORTS of creative
    things to do with this concept.
    Tom Wyant

    David Krieger/CORP/PART/CSC
    04/14/97 05:27 PM
    do you mean "visible only
    to a server partition, but not to any others or to the clients?"
    Yes, that is a better way to say it.
    If so, how 'bout putting them in a user-visible service object?
    Remember, "user-visible" is Forte's mis-terminology for
    "partition-visible." No law that I'm aware of says you can't put
    a user-visible service object in a server partition.
    Unfortunately all Forte Service Objects share a single name space. I
    thought from the documentation that User Visible Service Objects would work
    for me. However, when I tried User Visible Service Objects, they didn't
    quite do the trick because what I wanted was identically named service
    objects that resolve to a different local instance for each partition. So
    no matter where my code was running, it could call ProcessLocalStore.Foo()
    and it would get the ProcessLocalStore for that partition. Note that I am
    not talking about replicated partitions. Even though they are called
    "user-visible service objects, there can only be one instance of the named
    service object in any given Forte environment.

  • Passing url variable - what am I doing wrong?

    I've made a form and am attaching the code.
    Basically I am trying to get a list of offices and select one
    (which I am able to do when I publish and run the webpage/form).
    However, it always passes the value of "1" (the first record)
    to the next page (no matter what office I select from the drop down
    menu). I've tried the other choices under the lightning bolt, but
    those won't pass anything to the next page.
    Help!

    Why are you passing OfficeID as an URL variable in the form
    action when it is already a FORM variable (the SELECT form field)?
    The selected OfficeID will be passed to test2.cfm in the FORM
    scope.
    Also, you have named the submit button OfficeID, too. Form
    field names need to be unique, except possibly radio buttons and
    checkboxes.

  • Why we use variables what  are the advantages of variables

    hi
      can u tell me why we use variables and where we use variables
    ashwin

    hi Ashwin!
    Variable are used for providing the parameters for a query at real time.  that means we can dynamicall specify some what exalty the query should display in the query  for example we can use a variable on the charectersitic like country so that we can decide the contents of the query to will be relavent to the countries we specified.
      Advantages of using the varibles in a query are
       1) we can build a single query which can be used by all. Ex:we can generate a report for all the customers seperatly by using a single query and just by changing the value in the variable at runtime
      2) if we use the processing type authorization for a variable. We can limit the user from accessing the information which he is not authorised to see in the report. This will also make us personalize the query based on the user who is accessing the report.
    Sap help on overview and usage and the types are given in the following link:
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a56a7e09411d2acb90000e829fbfe/frameset.htm
    hope it helps.
    with regars
    Ashwin
    PS:
    (Rewarding points to the posted answers to your questions is a way of saying thanks in SDN forums)

  • Setting DISPLAY enviroment variable

    Hi,
    I want to run oracle wallet manager from my windows client. My application server is installed on the SUSE Linux Enterprise Server 9. I have given the following command to set the DISPLAY variable.
    export DISPLAY=192.168.100.159:0.
    Here is the output of the same. It gives some java exception error.
    Can anyone help me in setting the variable so that I can open wallet manager.
    Regards
    Trusha
    oracle@orclasg:~/OraBi/bin> export ORACLE_HOME=/opt/oracle/OraBi/
    oracle@orclasg:~/OraBi/bin> ./owm
    ****DISPLAY environment variable not set!
    Oracel Wallet Manager is a GUI tool which
    requires that DISPLAY specify a location
    where GUI tools can display.
    Set and export DISPLAY, then re-run.
    oracle@orclasg:~/OraBi/bin> export DISPLAY=192.168.100.159:0
    oracle@orclasg:~/OraBi/bin> ./owm
    Exiting
    java.lang.NullPointerException
    at oracle.ewt.lwAWT.BufferedApplet.<init>(Unknown Source)
    at oracle.sysman.emSDK.client.appContainer.WebApplication.<init>(Unknown
    Source)
    at oracle.security.admin.wltmgr.owma.OwmaApp.<init>(OwmaApp.java:109)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:308)
    at java.lang.Class.newInstance(Class.java:261)
    at oracle.sysman.emSDK.client.appContainer.WebApplication.main(Unknown S
    ource)
    Done.
    oracle@orclasg:~/OraBi/bin> export DISPLAY=192.168.100.159:0
    oracle@orclasg:~/OraBi/bin> ./owm
    Exiting
    java.lang.NullPointerException
    at oracle.ewt.lwAWT.BufferedApplet.<init>(Unknown Source)
    at oracle.sysman.emSDK.client.appContainer.WebApplication.<init>(Unknown
    Source)
    at oracle.security.admin.wltmgr.owma.OwmaApp.<init>(OwmaApp.java:109)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:308)
    at java.lang.Class.newInstance(Class.java:261)
    at oracle.sysman.emSDK.client.appContainer.WebApplication.main(Unknown S
    ource)
    Done.

    And what did you configure at the side of 192.168.100.159 which is supposed to be your client?
    I suggest you run VNC server on the server side ('vncserver') and set $DISPLAY to that. Next, use VNC viewer on your client machine to connect to the VNC server.
    Unless you have an X server running on your client machine of course.

  • Attempting to test Function with Bind Variable --- What am I doing wrong?

    When I try to test a function (ComputeFreight) with a bind variable, I get an error, returned.....
    "SQL> EXEC :ComputeFreight :=V_ComputeFreight;
    BEGIN :ComputeFreight :=V_ComputeFreight; END;
    ERROR at line 1:
    ORA-06550: line 1, column 25:
    PLS-00201: identifier 'V_COMPUTEFREIGHT' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored"
    What am I doing wrong?
    Below is my code with description ----
    create or replace function "ComputeFreight"(p_ORDERNUMBER IN C_ORDER.ORDERNUMBER%TYPE) -- Passing Ordernumber into Function
    return NUMBER
    is
    -- Declaring Variables
    v_ComputeFreight NUMBER(10,2);
    v_low number (10,2) := 0.05;
    v_high number (10,2) := 0.07;
    v_SUBTOTAL NUMBER(10,2);
    begin
    -- Computing order subtotal (Retrieving Item cost and qty from two different tables, multiplying and adding total order cost)
    SELECT SUM(O.QUANTITY * I.ITEMPRICE) INTO v_subtotal
    FROM ORDER_LINE O JOIN INV_ITEM I
         ON (O.ITEMNUMBER = I.ITEMNUMBER)
    WHERE O.ORDERNUMBER = P_ORDERNUMBER;
    -- Testing to see which freight charge rate to use
    IF
    v_subtotal < 300.00 THEN
    v_computefreight := v_subtotal * v_low;
    ELSE
    v_computefreight := v_subtotal * v_high;
    END IF;
    -- Returning Freight Charge
    RETURN v_ComputeFreight;
    end "ComputeFreight";
    -----------------------------------

    You have made at least 2 errors.
    The first one is the name of your function:
    create or replace function "ComputeFreight" (You use double quotas and the mixed case in the function name - it means you
    make your function name case-sensitive. In the call of your function you have to use double-quoted form "ComputeFreight", nothing else.
    If you your function name has to be case-insensitive, don't use double quotas or
    use upper-case form: "COMPUTEFREIGHT".
    The next mistake is how your call you function. You have to do the following:
    var V_ComputeFreight number
    EXEC :V_ComputeFreight := <your function name>
    V_ComputeFreight is a bind variable and you have to read more about this.
    Rgds.
    P.S. and as Dave fairly remarked above you have to pass the argument into the function.
    Message was edited by:
    dnikiforov

Maybe you are looking for

  • PO Approval workflow error

    I customized POAPPRV (PO Approval Workflow) and uploaded it successfully to DB. Now when I try to view the workflow for a new PO it gives following error Failed Activity PO Approval Top Process (Custom) Activity Type Process Error Name WFENG_ACTID Er

  • Iphone not compatible with device

    I just got the ilive ICP689B clock radio which says it works with the iphone. When I plug in the phone, the phone displays the message "The iphone is not compatible with the device". I have been unsuccessful in contacting ilive as of now and wanted t

  • Efficiency while book editing

    Forgive me if I'm mentioning things already mentioned, but I just spent several heavy days in designing books, and altering templates. Here were the primary things I noticed about editing books that were barriers to my productivity: 1) Performance is

  • Watermark script alignment on cropped photos

    I have some raw photos which I've edited in photoshop raw, but when I run them through the scripting command (which does two things, resize and watermark), the watermark gets placed on the image as if the image was not cropped. Sometimes I'll have ha

  • UNION

    how to effectively join two queries. lets say I have select * from employees , how do i join select * from departments with union . Thanks