How to add a java option in oas 10g 9.0.4?

I need add a java option in my oas 10g...
I have an application implemented with jdeveloper 10g (10.1.2) and its need to use other jdbc libraries acording:
http://radio.weblogs.com/0118231/stories/2005/05/27/workaroundForDeployingAdf1012AppUsingIntermediaDomainsToOracleAs904.html
Using EnterpriseManager, i add a java option for the OC4J instance where my ADF 10.1.2-based application will be deployed:
[b]-Xbootclasspath/p: C:\oracle\infra\jdbc-10.1.0.4\ojdbc14.jar;C:\oracle\infra\jdbc-10.1.0.4\orai18n.jar
but now, ths oc4j instance dont init
...my opmn.xml file contains:
<process-type id="ADF_050615" module-id="OC4J">
<module-data>
<category id="start-parameters">
<data id="java-options" value="-server -Xrs -Djava.security.policy=C:\oracle\infra\j2ee\ADF_050615\config\java2.policy -Djava.awt.headless=true
                         -Xbootclasspath/p: C:\oracle\infra\jdbc-10.1.0.4\ojdbc14.jar;C:\oracle\infra\jdbc-10.1.0.4\orai18n.jar"
                         />
<data id="oc4j-options" value="-properties"/>
</category>
<category id="stop-parameters">
<data id="java-options" value="-Djava.security.policy=C:\oracle\infra\j2ee\ADF_050615\config\java2.policy -Djava.awt.headless=true"/>
</category>
</module-data>
</process-type>
Help me please

Rigoberto, there should be no space between "-Xbootclasspath/p:" and the path "C:\oracle\infra\jdbc-10.1.0.4\ojdbc14.jar;C:\oracle\infra\jdbc-10.1.0.4\orai18n.jar"
By the way, one can always take a look at the logs at
  $ORACLE_HOME/opmn/logs
especially those files whose names start with OC4J~ if there is some wrong with oc4j processes. Those files are the default oc4j stout and sterr. If oc4j can not init, there should be some kind of error message in them.
By the way, the following line may be deleted since no property file is specified.
  <data id="oc4j-options" value="-properties"/>
Hope this helps.

Similar Messages

  • How to add new Java version to Java Preferences?

    Greetings,
    I know Java 7 is not officially supported, but I know it works.
    I built 1.70.jre and put it in /Library/Java/JavaVirtualMachines, but I do not know how to add to  Java Preferences.
    Does anyone know where the list of Java versions is stored and how to add a version to it?
    Thanks

    Fixing the permissions did not fix it.
    I think there  to be a record somewhere of what version are where. That is probably set if you use am installer which I do not have. I only have the file I copied there.
    I found out that typing this in Terminal...
    export JAVA_HOME=/Library/Java/1.7.jre/Contents/Home
    ...temporarily sets that version to the one being used, but it is only for that Terminal session, and it still does not show in Java Preferences.
    I need to know how to get it into Java Preferences. It might be some command I don't know.

  • How to access Data Guard option in Oracle 10g OEM

    Hi All,
    I have Oracle 10g ENTERPRISE EDITION on Unix envoirement. I want to setup logical standby Database through Data Guard technology. But when I brows through OEM I do not find Link for DATA GUARD????
    1) How to access Data Guard option from oracle 10g OEM.
    2) Does It come with Enterprise Edition OR I have to install it separately.
    Regards,
    Darshan

    I am managing almost everything through EM Grid Control. It is easy to setup and configure.
    Anyways, if you have read the documentation on
    Oracle® Data Guard Concepts and Administration and setup your environment accordingly then you should not have any problems. Atleast I can assure you that your production database will not be affected by it.
    Just make sure that you follow each step and read thoroughly. If you have spare machines then you can test and record your configuration before performing it on your production db. This link will provide you with the information on DataGuard.
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/concepts.htm
    If you think that way then you will never be able to do any new stuff since you will always fear that something might go wrong. Go ahead pal, try it on test machines and you will know that it is not that difficult.
    There are real experts who help people like us in this forum and I know that they are doing a pretty good job.
    All the best.
    Rgds
    Adnan

  • How to add a Java file from ejbModule to EJBCandidates ?

    Hi,
    In my java client proxy project, I have got the EJBCandidates generated. But I need to add one more java source file from ejbModule to EJBCandidates.
    If I right click on the java file I need to add, am not getting that option for adding.
    <b>Please help me how to add java source file from ejbModule to the EJBCandidates.</b>
    Thank you.

    Great... :-)
    Thank you very very much xHacker :-)
    That what just what I needed.

  • How to add a new option to ADF dropdown

    Hi,
    I got a title field (#{bindings.title.inputValue}) which is pulled from AD, and ‘titlesList’ from a database. The problem is that if the title doesn’t exist on the selection, I will get a blank option. When it is saved, it becomes empty.
    <af:selectOneChoice xmlns:af="http://xmlns.oracle.com/adf/faces/rich" id="ssoc2" value="#{bindings.title.inputValue}" simple="true">
    <f:selectItems xmlns:f="http://java.sun.com/jsf/core" value="#{employeeBean.titlesList}" id="ssi2"/>
    </af:selectOneChoice>
    I’ve tried to use javascript to add the new item to the Selection. But when I save it, I got “Attribute value cannot be null”.
    I’m thinking about when I create the titlesList in employeeBean, I can add the new title to the list. As long as I know the user ID inside the bean, I can get the title. But, I don’t know how to pass the user ID to the backend from Selection. In jdeveloper 11.1.1.5, I am not allowed to do this "#{employeeBean.titlesList(userID)}". So, how can I add a new option to Selection.
    Thank you.
    Edited by: 891549 on Jun 7, 2012 4:02 PM

    how about adding
    <af:selectItem label=" " value="" id="si21"/>to your existing selectonechoice

  • How to add to java classpath?

    I am wondering how to add/implement to java classpath. I think I might be missed out the classpath thing so my program doesn't work. I keep getting error message like: "cannot resolve symbol: method setDocumentHandler(BookCounter)" and warning messages like: "C:\Example\BookCounter.java :11: warning:org.xml.sax.HandlerBase in org.xml.sax has been deprecated." and "C:\Example\BookCounter.java :16: warning:org.xml.sax.HandlerBase in org.xml.sax has been deprecated."
    If this is not because of classpath problem, kindly let me know what should I do?
    My code as follow:-
    ========================
    import java.io.*;
    import org.xml.sax.*;
    import org.xml.sax.HandlerBase;
    import javax.xml.parsers.SAXParserFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.parsers.SAXParser;
    public class BookCounter extends HandlerBase
    private int count = 0;
    public static void main (String args[]) throws Exception
    (new BookCounter()).countBooks();
    public void countBooks() throws Exception
    SAXParserFactory f = SAXParserFactory.newInstance();
    SAXParser f2 = f.newSAXParser();
    // Parser p = new com.jclark.xml.sax.Driver();
    f2.setDocumentHandler(this);
    f2.parse("file:///C:/books.xml");
    public void startElement(String name) throws SAXException
    if (name.equals("book"))
    count++;
    public void endDocument() throws SAXException
    System.out.printIn("There are" + count + "books");

    The errors don't look like classpath problems. The first one is a result of it not being able to find a method in BookCounter (or more likely HandlerBase) that has the signature that you are attempting to use.
    The warnings come from the fact that HandlerBase has been deprecated, just like the messages state. In other words, it has been replaced by a newer version, or incorporated into another class' functionality. Check the API for more information.

  • How to add new Java Instance to cluster in EHP1?

    I've installed the EHP1 (Beta 3.0) on a Windows 2003 box, and have figured out how to use the
    configtool to add server processes to the initially created Java Instance.
    What tool or process do I use to go the next step and add additional Java Instances to the cluster?
    Sorry if I've missed where the steps are already described, I've tried to find them.
    Walt

    Hi Dido.  Thanks for your pointer.
    When I started the installer, it gave me only the choice of the Developer Edition. Perhaps for this
    EHP1 Evaluation Version the Productive Edition is not yet available??
    The top line in the installer was "SAP Enhancement Package 1 for SAP NetWeaver CE 7.1 SDN
    Evaluation"
    The only next choice was "SAP NetWeaver CE Developer Edition"
    The two choices under this were "Custom Server Installation" and "Uninstall - SAP Systems or
    Single Instances".
    Will any of these choices allow me to add an additional Java Instance to the cluster?
    Thanks for your help ...
    Walt

  • How to modify Java options in Oracle 10g Application Server

    I am trying to modify the Java Options to specify the following field:
    -Djavax.xml.transform.TransformerFactory=
    org.apache.xalan.processor.TransformerFactoryImpl
    But I am unable to locate the Server Properties section on the Administration section. I had expanded the Prperties section fully also. I had logged in as oc4jadmin.
    Can anyone help me out in understanding how to modify the Server Properties. I have consulted the Oracle Documentation but still I cant locate the Server Properties section.

    Michel,
    I have logged in using the following URL: http://<machinename>:<port>/em. The URL eventually changes to http://<machinename>:<port>/em/console/ias/oc4j/administration upon successful login.
    I clicked on the Application Server and then clicked on administration link but I dont see Server Properties. I only see the following under Properties section:
    EJB Compiler Settings
    J2EE Websites
    JSP Properties
    Logger Configuration
    Thread Pool Configuration
    Shared Libraries
    I am sure I am missing something here.Can you please help me figure that out please.?

  • How to add a Search option?

    Hi, I want to add a "search option" on my website. It would
    be an internal search, with information that I will provide. I
    don't know how to start. I have looked around this forum and some
    other sites and it is not clear to me if I can do it with html. Any
    good books or tutorials that someone can recommend I would
    appreciated. I would like to say that all my website is based on an
    html template.....could this work for a "search option"?.
    Thanks in advance.

    seems that
    ZOOM search might be the
    appropriate solution, because it´s capable to search static
    web pages as well

  • How  to add a new option for group by in a excel report

    Hi,
    there is a enhancement in a excel report
    I need to add a new option for group by
    help me
    Regards,
    Raghu

    k

  • How to add new payment Options in WEB SHOP

    Hi all
    We need to add new payment options in the B2C shop, but we don't find any customizing place to do it, we read about the BADI CRM_RISK_MGMT_BADI, but in the documentation said that we can set a Default payment option or exclude, but nothing about to add Customer Options.
    Any info regarding would be very useful.
    Best Regards

    Look at your Payment Process Profile. THere should be a reporting subtab and within that subtab is a Separate Remittance Advice region. I believe that is where you specify the format for the remittance advice document (which is built in XML Publisher). Take a look at that.
    John Dickey

  • How to add custom start options in VS package

    I need to add custom start options in VS package.
    Example:
    Instead of showing "start", need to provide options like "Start in Firefox", "Start in Chrome" and handle their events on our own.
    Any references would be helpful
    Thanks in advance

    Hi Daro,
    the path to the billing module is "sap.com/wec/ecom/mc/billing". But nevertheless
    1.  you need only to enhance in your current modul the metadata.xml file with the link to your own myaccount.xml which you can create.
    2. and then you can define within the new file the menu options you need.
    3. the last step is to update your shop configuration with the new menu options.
    Best regards,
    Nico

  • How to Add a filter option for a entire table to a search button?

    Hi all,
    I am new to SAPUI5. i am having a table with hard coded data's.and i have a search field.
    i want to add a filter option to the search field for the entire table..
    i can able to add a filter option to the column by using filterProperty.
    is there is any method or property to do that?
    PS - i have attached my table code.
    Regars
    Dayalan

    Hi Dayalan,
    documentation for filtering and sorting is in this section of the Developers Guide.
    Cheers
    Graham Robbo

  • How to invoke a Java Program from Oracle 10g?(uRGENT)

    Hello.
    I've a query, that i have a program, that basically retreives the records from the
    oracle table and then parser this information and then insert the values in corresponding database base tables. I want that, whenever the new program is inserted, a Trigger should fire and pass the most recently entered record to the Parser Program, means
    1) Firing a Trigge
    2)Storing the most latest data and pass it to the Parser PROGRAM
    Can someone tell me how to do this? How to invoke a Java Program from within the database? Please if anyone has examples provide me. Its very urgent and tell me what is the basic mechanism.
    Thankyou.
    Ben

    With Java Stored Procedures Java may be caleed from a database.
    http://www.oracle.com/technology/tech/java/jsp/index.html

  • How to add a copy option or button in apex report

    I aint sure if this is meant to go in this disccussion. If an wrong please let me know the right place it should go. Thanks
    I need soime help implamenting a copy button/option in oracle. I have a interactive report and when you click on the unique id it takes you to the form where you can edit the report. Now I wanted to add an option so when you click on the unqie id(pencil in edit area). It will give you 2 option, one of the option will be to view the report(view) and the other option will be to copy the report. If you click on view, it should take you the form where you can edit the report and when you click on copy, it should copy the report and take you to a blank form.
    Another option is to have a copy button on each report next to the unquie id. In the image belowyou will see the edit pencil and sure everyone know what it is, if you deal with oracle apex.
    Basically, when you click on the pencil you will get those two options above. The alternative way was to just have a copy button next to each of them and you can just click on that to copy.
    The reason why I want to do this is because I was having some issues with colons, commas, etc. Basically I had a copy button in the form and some of the form has colons, etc and because of this the copy button stop the form from render and also shows a 404 error page, which was quiet annoying.
    If anyone have any idea how to do one of the two approaches, please give me a stage by stage PLEASE.
    Thanks you

    dave_414 wrote:
    I aint sure if this is meant to go in this disccussion. If an wrong please let me know the right place it should go. Thanks
    I need soime help implamenting a copy button/option in oracle. I have a interactive report and when you click on the unique id it takes you to the form where you can edit the report. Now I wanted to add an option so when you click on the unqie id(pencil in edit area). It will give you 2 option, one of the option will be to view the report(view) and the other option will be to copy the report. If you click on view, it should take you the form where you can edit the report and when you click on copy, it should copy the report and take you to a blank form.
    Another option is to have a copy button on each report next to the unquie id. In the image belowyou will see the edit pencil and sure everyone know what it is, if you deal with oracle apex.
    Basically, when you click on the pencil you will get those two options above. The alternative way was to just have a copy button next to each of them and you can just click on that to copy.
    The reason why I want to do this is because I was having some issues with colons, commas, etc. Basically I had a copy button in the form and some of the form has colons, etc and because of this the copy button stop the form from render and also shows a 404 error page, which was quiet annoying.
    If anyone have any idea how to do one of the two approaches, please give me a stage by stage PLEASE.
    Thanks you
    Your question has to do with Apex, not the database.  Please see the Apex forum at Oracle Application Express (APEX)

Maybe you are looking for

  • Problem for re-install

    Hi, I'm on a macbook and when I use my OS X DVD to re-install, it re-boot and reboot again and again, etc... I can break the cycle by pressing "alt"  but I can't boot via my DVD. Please help... I've scan both disk and everything seems to be ok. Don't

  • Making a two column for text page

    Lightroom may have a great photo editing set of capabilities, but text soooo leaves a lot to be desired.  Why isn't there a template in the book module for two columns of text on a page.  It seems like a no-brainer.  Does anyone have a workaround?? 

  • How can I make Skype NOT remember my username ever...

    I am running Windows 7 64 bit on a PC, does anyone know how to do this? If done right, it should launch on the sign in page, without the username or password fileds filled out already.

  • Can I hide the graphics that go with the songs?

    I downloaded a song for my child and the song is clean but the album graphic is not appropriate can I hide the graphics that go with the songs?

  • Emdb.nohup file daily growing how can stop growing(increamnet)

    hi i am use oracle 10g database control , in 10g database control enterprise manager log and trace file daily increment 2GB, how can this file increament stop b'caz this is lot of space use.