Launch apps with oracle jre 7

With Apple discontinuing support jre 7 on its mountain lion, i am trying to find a way to launch my mac apps with oracle jre7. There are two situations occuring to me.
1. Oracle jre7 could be before hand installed and my app should be able to detect and launch
2 Or Bundle the oracle jre 7 with my Mac app and get into lauching it on mountain lion without any issues.
Is there a better way or apple providing support in this regards.
Help appreciated.

Thanks NickClark_uk,
  I am able to install the java 7, but the Mac app i am trying to launch is unable to detect the oracle jre 7 and works fine with app store jre's. So we may need to bundle the jre or modify our apps to detect the installed JRE.
I was looking at what would be the better approach in order to have my Mac app run with oracle jre 7.
Thanks

Similar Messages

  • I can't see my table in my app with oracle 9i

    Hi:
    I have an app with Java and O9i where i have to delete some data in table, but when i execute my metod appears a "ORA-00903: invalid table name" error code, but when i check the schema in DbVisualizer i see it that table in fact i can delete data manually but in my app don't.
    Somebody have the same problem or some can help me please. Thks
    .

    > now the question is
    does't matter CAPS? in my app
    Generally, no.
    When you create a table like this
    CREATE TABLE aa_Sales (...);the name is automatically stored in the data dictionary as "AA_SALES". The parser also uppercases the name when you refer to it is a query like
    SELECT * FROM AA_sales;so the names match and everything works regardless of case.
    The exception to this is when you explicitly name a table in double-quotes (which clearly you haven't here as the query from all_tables showed), or if you place double-quotes around the name in a query, because in both cases this forces case-sensitivity.

  • Error "cannot locate object' launching app with Web Start

    Hello,
    I receive the error shown below when launching a Java application and cannot figure out where to begin with debugging. It was developed under Netbeans 5.0.
    You can recreate the error by launching this application:
    http://www.mikenaglich.net/ztest17.jnlp
    Error text and JNLP file follow. I am really puzzled and would appreciate any help. Thanks.
    Mike
    Error Text
    ========
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    The system cannot locate the object specified. Error processing resource 'http://www.netbeans.org/jnlp/DTD/jnlp.dtd'.
    App JNLP File
    ===========
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc.//DTD JNLP 1.5//EN" "http://www.netbeans.org/jnlp/DTD/jnlp.dtd">
    <jnlp codebase="http://www.mikenaglich.net" href="ztest17.jnlp">
    <information>
    <title>ztest17</title>
    <vendor>Mike Naglich</vendor>
    <homepage href="www.mikenaglich.net"/>
    <description> </description>
    <icon href="default"/>
    <offline-allowed/>
    <shortcut online="true">
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
    </resources>
    <resources>
    <jar download="eager" href="dist/ztest17.jar" main="false"/>
    </resources>
    <resources locale="" os="">
    <jar download="eager" href="dist/lib/swing-layout-1.0.1.jar" main="false" version=""/>
    </resources>
    <application-desc main-class="ztest17.Main"/>
    </jnlp>

    I receive the error shown below when launching a Java
    application and cannot figure out where to begin with
    debugging. There are a number of problems, potential problems,
    redundancies and illogicalities in that JNLP file.
    ...It was developed under Netbeans 5.0. Uh-Huh. I am coming to recognise those
    (damnable) NetBeans JNLP files.
    You can recreate the error I don't think I need to, your error output and JNLP
    file are quite instructive..
    ...by launching this
    application:
    http://www.mikenaglich.net/ztest17.jnlp
    Error text and JNLP file follow. I am really puzzled
    and would appreciate any help. Thanks.
    Error Text
    ========
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please
    correct the error and then click the Refresh button,
    or try again later.
    The system cannot locate the object specified. Error
    processing resource
    'http://www.netbeans.org/jnlp/DTD/jnlp.dtd'.
    1) Whenever you see a message from Java,
    JavaWS, or an application saying words the the
    effect of 'cannot find..', try checking the URL of the
    resource in a browser. If a browser comes
    up '404' (not found), then the Java tool or app.
    will be unable to access it either.
    That is the first and fundamental problem with that
    JNLP. The DOCTYPE element is not strictly needed
    in a JNLP, and I would recommend removing it entirely
    rather than try and hunt down any NetBeans DTD.
    With the way NB writes JNLP's, I would not trust
    a DTD written or controlled by them, in any case.
    App JNLP File
    ===========OK.. I recommend replacing the current JNLP
    with the one below, here is a summary of the
    changes I made..
    - removed DOCTYPE line with reference to '404' DTD
    - compacted resource elements, removing empty attributes
    - changed ztest17.jar to main='true'
    - removed redundant 'download="eager"' attributes as well
    as main="false" and version="" from swing-layout.. jar element
    - removed broken(?) <icon> element and empty <description>
    - changed homepage href to relative
    Some of them are guesses, but I'd give it a 90%+
    chance of working, if written like this.
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase="http://www.mikenaglich.net" href="ztest17.jnlp">
    <information>
      <title>ztest17</title>
      <vendor>Mike Naglich</vendor>
      <homepage href="/"/>
      <offline-allowed/>
      <shortcut online="true">
        <desktop/>
      </shortcut>
    </information>
    <resources>
      <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
      <jar href="dist/ztest17.jar" main='true' />
      <jar href="dist/lib/swing-layout-1.0.1.jar" />
    </resources>
    <application-desc main-class="ztest17.Main"/>
    </jnlp> Note that a glance inside the ztest17.jar supports
    it contains a manifest file tat specifies the main class,
    so it might be possible to remove main='true'
    altogether - best not for the moment, though.

  • BASH Script - Launch App with

    I'm trying to write a simple BASH script that will laungh an program, but that program needs command line arguments.
    When I put it in quotes it says it can't find the file, if I don't use quotes then it won't run the program with the command line arguments. How can I launch a program using a BASH script with command line arguments?
    Thanks in advance

    #!/bin/bash
    /Users/name/Desktop/Directory/app -f configfile

  • BASH - Launch App with arguments

    I'm trying to write a simple BASH script that will laungh an program, but that program needs command line arguments.
    When I put it in quotes it says it can't find the file, if I don't use quotes then it won't run the program with the command line arguments. How can I launch a program using a BASH script with command line arguments?
    Thanks in advance

    Wrong forum. Try https://discussions.apple.com/community/mac_os/mac_os_x_technologies#/?tagSet=10 48

  • JDeveloper 9.0.5 apps with Oracle Lite 10g

    Hello:
    Has anyone else attempted to develop an ADF UIX Struts Web application using JDeveloper 9.0.5 and deploying the application to an Oracle Lite 10g Webtogo environment. We have a need to have offline activity on the client machine, storing the data in an Oracle Lite 10g database, until the user can connect to a database server for a synchronization cycle.

    Jim,
    We didn't certify JHeadstart against the production release of JDeveloper 10g (9.0.5.1)yet. The document that you probably used refers to the preview release of JDeveloper 10g.
    We are in the process of certifying and didn't make our initial planning. We are struggling with some last issues. We will keep this forum informed about the new release.
    Regards,
    Ton van Kooten
    JHeadstart Team

  • Launch App with Native Process

    Hi,
    I want to launch serproxy application (http://www.lspace.nildram.co.uk/freeware.html) using native process in adobe air. But it seems not working.
    Here is my code:
    protected function launchSerproxy():void{
        if(NativeProcess.isSupported){
         var serproxy:File = File.applicationDirectory;
         serproxy = serproxy.resolvePath("serproxy/serproxy.exe");
         var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
         nativeProcessStartupInfo.executable = serproxy;
         var process:NativeProcess = new NativeProcess();
         process.start(nativeProcessStartupInfo);
         // connect to the com port
         setTimeout(connect,1500,"127.0.0.1",5339);
    Flex did not return any error or problem on runtime. What should I do to have Adobe Air load and run serproxy? Thanks.

    I think you just missing the working directory.
    "nativeProcessStartupInfo.workingDirectory = File.applicationDirectory;"

  • PB12.6 compatiblity with Oracle JRE 1.3.1_02

    Hello
    I am currently using PB12.6 .
    we need to call the Java bean through OLE connection. Java bean is built in JRE_1.3.1_02 version. Here is code
    ctisActiveXName = 'Java Bean Class'
    ioleServer = CREATE OLEObject
    llResult = ioleServer.ConnectToNewObject (ctisActiveXName)
    However PB12.6 get crashed at above line.
    This code works fine in PB12.0 . Note that we cant change the Java component built in JRE_1.3.1_02.
    How can I make it work in PB12.6?
    Any help is highly appreciated.
    Thanks
    Amol

    Hello Amol,
    To simulate your problem, I used this excellent sample Wrap a Java bean in a COM object - Real's Java How-to to bundle a JavaBeans as an ActiveX object using the ActiveX Bridge technology
    I had to install very old JDK 1.3.1_02 and Java Plugin 1.3.1 into my Windows 7 box
    Here are my observations after coding below script (I also used excellent document http://scn.sap.com/community/developer-center/powerbuilder/blog/2014/09/24/how-to-capture-error-messages-from-an-activex-control from Roland Smith to create n_oleobject OLE object)
    + PowerBuilder 12.1 and 12.5.2 are working without any crashes
    + PowerBuilder 12.6 is crashing directly at line ConnectToNewObject
    My real concern is that
    * the COM object (which is in fact a Java object) is using an EOL JDK and EOL technology
    * PB 12.6 is not compatible with this JDK
    I'm not sure if we can support COM objects developped with obsolete technologies.
    n_oleobject   objJava
    string    strFromjava
    integer   li_rc
    objJava = CREATE n_oleobject
    li_rc = objJava.ConnectToNewObject("JavaBeanSays.Bean")
    If li_rc = 0 Then
       try     
      strFromJava = objJava.getHello()
      MessageBox("From PB via JavaCom", strFromJava)
      objJava.setHello("Bonjour le monde")
      strFromJava = objJava.getHello()
      MessageBox("From PB via JavaCom", strFromJava)
       catch ( RuntimeError rte )
          PopulateError(objJava.ErrorCode, objJava.ErrorText)
          MessageBox("OLE Runtime Error #" + &
                String(Error.Number), Error.Text, StopSign!)
          objJava.DisconnectObject()
          Return
       end try
       objJava.DisconnectObject()
    Else
       MessageBox("OLE Connect Error #" + String(li_rc), &
             "Connect To Object Failed!", StopSign!)
    End If
    DESTROY objjava
    Thanks
    Jacob

  • Launching apps with Applescript

    I'm like a drunk driver wheb it comes to Applescript.
    I use Final Cut Pro to edit video and have a time tracker program to keep track of the time I spend editing. Is there an Applescript that will launch the time program when I launch Final Cut Pro?
    thanks for the help.

    I am a bit crippled at the moment when writing scripts as my mac is currently in for repairs, so am using my parents windows pc.
    I believe there are a number of ways of attacking this problem. Either have a small program always open checking for final cut launch or have a small application that launches both your time tracking program and final cut.
    i prefer the second method as it free up systems resources (not much but i always prefer having as little open as possible in regards to background processes). SO i would use something like this:
    tell application "Time Tracker"
    activate
    tell application "Final Cut Pro"
    activate
    end
    end.
    I would save it as an application named so it where final cut pro is, and then always use this applciation to launch final cut pro.
    However if you launch final cut another way, for example open up a document file that launches final cut pro then this method will not work and the first method described would be a better way of achieveing this. However i am at best a confident novice in regards to applescript and being hindered by not having my mac to try it out on, i can only give pointers.
    I believe this will check every 5 seconds for an instance of final cut pro. You can make the time intveral shorter or longer if you wish. I think the option you want to save it as is called "always open" and then in system preferences - accounts - login items select the script.
    if process "Final Cut Pro" exsists then
    activate application "Time Tracker"
    delay 5
    end
    As i said before this may not work correctly and can only check when my iMac comes back from being repaired (new screen, logic board and psu, so basically replaced but inside the same case). I am sure someone else will step in and offer help in the mean time if i have got something wrong.

  • Installing a desktop app with JRE

    Hi
    I have a desktop app and the client is concerned about easy installations, is there a way to bundle the app with the JRE and install both with an installer?
    Any help appreciated.
    Cheers
    Dean

    Depends on specifics; see this list http://www.google.com/search?q=detect+if+java+is+installed

  • Bundling app with JRE

    Hi
    I have a desktop app and the client is concerned about easy installations, is there a way to bundle the app with the JRE and install both with an installer?
    Any help appreciated.
    Cheers
    Dean

    There is a way to do it. I'm trying to figure out exactly how though.
    From what I can tell from searching the threads in here, you can do this with Inno Setup see http://forum.java.sun.com/thread.jspa?threadID=708451&messageID=4108249
    and scroll down a bit.
    This does intall the JRE, however, the problem I'm running into is how to set the claspath, so the jar can run.

  • Installing Oracle JRE

    Currently I'm using this package from the AUR.  I'm trying to install it with:
    $ makepkg -s
    # pacman -U jre-7.9-1-x86_64.pkg.tar
    However, this is returned:
    looking for inter-conflicts...
    :: jre and jre7-openjdk are in conflict (java-runtime). Remove jre7-openjdk? [y/N] y
    :: jre and jre7-openjdk-headless are in conflict (java-runtime-headless). Remove jre7-openjdk-headless? [y/N] y
    error: failed to prepare transaction (could not satisfy dependencies)
    :: jdk7-openjdk: requires jre7-openjdk
    Why does it complain about openjdk if I'm trying to install oracle jre?  Thanks for any help!

    Had some mess too when I switched from jre7-openjdk and jdk7-openjdk to Oracles jre/jdk a couple of months ago.
    Not sure if the jdk7-openjdk will work with Oracles jre and it's PKGBUILD points out jre-openjdk as a dependency.
    I would suggest that you install Oracles jdk instead, it provides both jre/jdk and you'll be replacing both openjdk packages
    and that should solve the dependency problem for you (between the jdk and jre at least).
    When I switched I first removed both jdk7-openjdk and jre7-openjdk, and you are probably in the same spot as I was
    then (sitting with a bunch of installed apps that depends on java).
    So I used
    pacman -Rdd jre7-openjdk
    pacman -Rdd jdk7-openjdk
    to remove them.
    By doing that I "broke" all installed packages that depends on java but since I was going to install the new jre/jdk directly
    after that it wouldn't matter anyway (installing the new jre/jdk fixes it again).
    Not sure if it's the best way to do it but the idea of first removing all packages that have
    a dependency to either the jre or the jdk package and then re-install them again (after installing the new jre/jdk)
    didn't sound appealing to me... guess I'm just lazy

  • Error while integrating E-biz with Oracle B2B

    I am trying to integrate Oracle apps with Oracle B2B. I have updated Transport Server Details : XML Gateway Inbound/XML Gateway Outbound with IP,user name,password and Sid. Then created an agreement with Internal Delivery Channel as XML Gateway Outbound and Responding Internal Delivery Channel as XML Gateway Inbound. But while validating the agreement it is showing an error as given below.
    AIP-16222: The transport parameter XML Gateway Inbound of trading partner ABC-Host must have no more than one protocol endpoint.
    AIP-16222: The transport parameter XML Gateway Outbound of trading partner ABC-Host must have no more than one protocol endpoint.
    I can see the transport parameter XML Gateway Outbound has an endpoint b2b.ECX_OUTBOUND and transport parameter XML Gateway Inbound has an endpoint b2b.ECX_INBOUND. I have not done any other setting/configurations. Is there anything else to be done?
    Edited by: user11128475 on May 4, 2009 8:47 PM

    Protocol end-point and general end-point are two different things. Protocol end point is combination of IP, Port and End-point for a particular protocol.
    Generally this problem comes in delivery channel configuration. Make sure you are using the existing transport server configuration in case same IP and port is to be given in the configuration of new IDC for same protocol.
    It does not mean that you cannot use different end points. Still you can use different end points with existing transport server configuration.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on May 5, 2009 9:36 AM

  • Installing ODAC Entity Framework with oracle express

    Hi, I need to develop a .net web app with oracle back end. To setup development env. for oracle I downloaded oracle database express edition 11g 2. and installed it succesfully. after I tried to install this ODAC it throws me a error
    "Remove all the spaces from the chosen ORACLE_HOME" help me out to resolve this,
    Can I use SQL Developer to connect to Oracle Express. Kindly help me out asap.

    Hello,
    This is by designed in Entity Framework, the view is not designed to be editable by default. If you persist in editing a view, you need to create an editable view, for details, please check this blog:
    How to create an updateable view with ADO Entity Framework and with LINQ to SQL
    This blog is based on the SQL Server database, however, I notice that you are working with the Oracle database, I am not sure if the Oracle database provider for Entity Framework supports the editable view, I
     suggest you could confirm this on the Oracle database forum:
    https://community.oracle.com/welcome
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • /u01/app/oracle/jre/1.1.8/JRE

    Where should this link point to right now, mine points to itself. When I launch via ./JRE, I get error:
    To many levels of symbolic links. I think this is becasue JRE links to JRE which links to JRE which...you get the picture.
    Anyway, I am wondering where this is supposed to link to. I suppose I could just link it to:
    /u01/app/oracle/jre/1.1.8/bin/jre
    or should this point to the JRE external to oracle in /usr/local/java/bin/jre?
    Interesting, why the need for 2 jre's on one system. Could be confusing if they were different versions.
    Keehan
    By the way, the links at: http://www.thomasfly.com/Oranux/ http://jordan.fortwayne.com/oracle/817.html
    led to a flawlesss install of 8.1.7 on RH 7.1. Thanks to the maintainers of those sites for great info. Oracle should pay you to document their products.
    Keehan

    Hi,
    I have the same problem when I installing Oracle Ebusiness suite 11.5.9 with Oracle RDBMS 9.2.0.3 on Solaries 10 with JDK 1.3.1_15

Maybe you are looking for

  • SSIS account write files to SharePoint Library UNC

    So I have made a super dynamic Reporting Services report that works by calling a stored procedure which examines all its parameters and sets the proper values in the SQL -based SSIS Configuration table, and then invokes a SSIS Package. The SSIS Packa

  • From which place i get the sap netweaver software

    hi I want to purchase sap netweaver software. I have p4 computer at my home and what are the configuration of computer to install sap netweaver software. Can you help me to get sap netweaver software? Plz give me reliable or helpful information. I m

  • (Cost center groups) table

    Hi all, In which database table can we find cost center groups . regards, Ramya

  • Delete Extra Page at top the Nodes.

    Hi Friends, I Have Developed OOPS ALV, In the output data displaying is fine.  I have created Nodes and when expanded it will show the Org Units.  But  first time when the Node is creating, Its creating the page symbol automaticallly above that node.

  • Myth TV - help is needed???

    HI AF. I would like to know if somebody have been able to get MythTV to work??? Most of  MythTV is working. The only thing missing is the Live TV. And recording?? After trying for several days - I'm at a point where i don't know what to do??? My Hard