JNLPException during JNLP Application Lanuch

I am trying to deploy an application through JavaWebStart and I am accessing 4 other JAR resources.
The JNLP file it related resources are all located in the 6.3 directory.
However, I am getting the following exception when I try to launch the JNLP:
JNLPException[category: Security Error : Exception: null : LaunchDesc: null ]
     at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source)
     at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source)
     at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
     at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
     at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
     at com.sun.javaws.Launcher.run(Unknown Source)
     at java.lang.Thread.run(Thread.java:484)
Also, here is my JNLP code:
<?xml version="1.0" encoding="utf-8"?>
<jnlp
spec="1.0+"
codebase="http://jfisher:7001/6.3/"
href="Table.jnlp">
<information>
<title>Table</title>
<vendor>Sample Company</vendor>
<homepage href="docs/help.html"/>
<description>Table</description>
<description kind="short">Table</description>
<icon href="images/swingset2.jpg"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.3"/>
<jar href="TableSigned.jar"/>
<jar href="xalan.jar" />
<jar href="jaxp.jar" />
<jar href="crimson.jar" />
</resources>
<application-desc main-class="com.sheet.Table"/>
</jnlp>

I'm new to JNLP and so this is just a suggestion based upon some tests I ran today trying to get my JNLP file to work. Your codebase="http://jfisher:7001/6.3/" has a simple server name 'jfisher' Try hard coding the IP address of the server instead (172.0.0.1, or whatever). I had a similar problem and clicking through the tabs in JNLP found that '.org' was being appended to my server name some of the time, I'm not sure why. Switching to the IP address fixed the problem. I would guess that if you had .com or .org on your server name this would not be a problem. I still have more testing to do to find out why and what is required in the server name (I would rather not hard-code it), but though I would give you this suggestion for now to see if it helps.

Similar Messages

  • Problem with "Application lanucher and run as an system user

    Hi
    Im trying to distribute
    Application Lanucher NT Service was not found to run the application as system user.

    Mossbrant,
    > Im trying to distribute
    >
    > Application Lanucher NT Service was not found to run the application as
    > system user.
    >
    I guess this is a duplicate of the one below? I will anser that one.
    - Anders Gustafsson (Sysop)
    The Aaland Islands (N60 E20)
    Novell has a new enhancement request system,
    or what is now known as the requirement portal.
    If customers would like to give input in the upcoming
    releases of Novell products then they should go to
    http://www.novell.com/rms

  • How to share the same session between JNLP Application and browser session

    How to share the same session between JNLP Application and browser session using BasicService.showDocument(url) method? It appears whenever i launch any URL from within a JNLP application using BasicService.showDocument(url) , it creates new instance of browser and session even after i used cooke handlers to restore JSESSIONID and Ltpa token etc.
    public static int showDocument(String urlToOpen)
    BasicService obj = (BasicService) ServiceManager.lookup("javax.jnlp.BasicService");
    obj.showDocument(urlToOpen);
    }

    Try using Reflection

  • During an application build I received an error 7 for a missing source NI vi 1d linear evaluation.vi

    During an application build, I got "Error 7 occurred at c:\Program Files\National Instruments\LabVIEW 6\vi.lib\Analysis\8numerc.llb\1D Linear Evaluation.vi - source does not exist".
    This existed in Labview 5.1.1. Was it deleted in 6.0?

    No, this VI is in the following location "Functions >> Analyze >> Mathematics >> Array Operations>>1D Linear Evaluation.vi"
    Perhapse this in a package (Advanced Analysis) that is not included in your version of LabVIEW. You may need to upgrade to get these VIs, or you can copy them over from your Labview 5.1.1 installation.
    -Jim

  • Opening JNLP application with mobiles??

    It's possible to open a application .JNLP with a mobile dispositive? blackberry, nokia, windows mobile...?? It will be possible..??
    My idea is not to programming a new specific application for mobile, i want to can work with my existing .jnlp application for pc's.
    Thanks a lot for your orientation

    One day.. i supposse.. the mobiles will have enough potency and ram memory for execute the same java programms like a PC. Then not will be necessary to program 2 different programms depending the platform. May be.

  • Download correct JRE before launching the jnlp application

    Hi,
    I have this requirement that before launching the jnlp application, the code should check the version of JRE installed on client's system, if it is less than 1.6 u10 then install the latest available JRE before launching the application.
    I am using the Java Script in my jsp to achieve this objective and it is working fine with non-IE web browsers. The trouble starts when the client machine is using 1.6.0_6 jre, in that case IE is not able to download /redirect user to the sun's page for the download of latest JRE.
    My java script code as follows:
    <script language="JavaScript">
    var launch = null;
    // try to check the JRE version installed on client's machine.
    //if its less than 1.6.10 redirect to Sun Micro systems website.
    //and then after installation, launch Receptionst and Call Center application
    function checkForInstalledJreVersionAndLaunch(appName)
         //detect browser used at client's machine
         var windowsIE = (navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Win') != -1);
         if (windowsIE) {
              alert(windowsIE);
             document.write("<OBJECT codeBase=\"http://java.sun.com/update/1.6.0/jinstall-6u10-windows-i586.cab#Version=6,0,10,0\" classid=\"clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284\" height=0 width=0>");
             document.write("<PARAM name=app VALUE=\"http://localhost:8080/"+appName+"/launch.jnlp\">");
              document.write("<PARAM NAME=back VALUE=true>");
              document.write("</OBJECT>");
         }else{
              if (navigator.mimeTypes && navigator.mimeTypes.length)
                   if(!checkWebStartWersion())
                        window.open("http://jdl.sun.com/webapps/getjava/BrowserRedirect?locale=en&host=java.com","needdownload");
                   launch = setInterval('launchJNLP("http://localhost:8080/'+appName+'/launch.jnlp")',100);
    function launchJNLP(app) {
        if (checkWebStartWersion()) {
            clearInterval(launch);
            window.location = app;
    function checkWebStartWersion()
         var isMajorVersion = false;
         var isMinorVersion = false;
         navigator.plugins.refresh(true);
         if(navigator.mimeTypes['application/x-java-jnlp-file'])
              for(var i=0;i <navigator.mimeTypes.length; i++)
                   var pluginType = navigator.mimeTypes.type;
                   if(pluginType.indexOf("x-java-applet;jpi-version") > -1)
                        var jreVersion = pluginType.substring(pluginType.indexOf("_")+1,pluginType.length);
                        var jreUpdateNumber = parseInt(jreVersion);
                        if(jreUpdateNumber >= 10)
                             isMinorVersion = true;
                   if(pluginType.indexOf("x-java-applet;version") > -1)
                        var jreVersion = pluginType.substring(pluginType.indexOf(".")+1,pluginType.length);
                        var jreUpdateNumber = parseInt(jreVersion);
                        if(jreUpdateNumber >=6)
                             isMajorVersion = true;
         return (isMajorVersion && isMinorVersion);
    function launchApplication()
         checkForInstalledJreVersionAndLaunch("appname");
    </script>

    I hear your frustration. I am attempting to do something similar.
    To me, it looks like this ActiveX control has no ability to detect a minor version of JRE. It knows if some JRE 1.6 is installed or not, but not if say JRE 1.6.0_10 or higher is installed. But, if it finds that some JRE less than 1.6 is installed such as a 1.5 version, this ActiveX control can automatically install the latest JRE 1.6.0_12. This seems to work well for me. But, the overall behavior is not consistent. It looks to me that this ActiveX control is only good for making sure that the client has some version of JRE 1.6. It doesn't care which one.
    A similar issue exists if you try to use Java WebStart to automatically download the correct JRE 1.6 version.
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" />As of today, this code will tell Java WebStart that it needs some version of JRE 1.6 or higher to run your app. If the client does not have it, Java WebStart will download and install 1.6.0_07. Apparently, WebStart thinks that version is a "good" one - whatever that means.
    If instead you use this in your .jnlp file:
    <j2se version="1.6.0_10+" href="http://java.sun.com/products/autodl/j2se" />Java WebStart will not run your application unless the client has at least 1.6.0_10 installed. However, it is not able to install this version if the client does not have at least 1.6.0_10 already installed. It isn't smart enough for that. It looks like no one at sun has gotten around to updating http://java.sun.com/products/autodl/j2se to deal with recent JREs.
    Maybe I'm missing something, but WebStart deployment is more difficult than it needs to be. Sun introduces all sorts of new things into minor versions of Java, but nobody seems to be interested in making sure that the end user can have seemless upgrade experience.
    And people wonder why Flash and AJAX have become so popular...
    There probably is another workaround using a Java applet to determine what version is really installed before launching WebStart, but it just seems like an ugly hack to me. If an older version of Java 1.6 is detected, you could direct the user to java.sun.com in a new browser window, just as in the case of Firefox in your code. Ugly, but it would probably work.

  • Error during SP application.'TP CONNECT SID ' returns ORA-03114 error.

    Hi All,
    Last week we were applying an Add-On SAPK-510AGINAIN. It was running in
    phase IMPORT_PROPER for more than 10 hours without any update in logs.
    So I went into SM50 cancelled the work processess. From then when I continue the Add-on installation, I get an error 'TP_CANNOT_CONNECT_TO_SYSTEM' and tp return code 230. When I see
    the SLOG, it says R3trans cannot create a process. When I tried
    doing 'tp connect PI7 pf=<profile name>, I get a error 'ORA-03114- NOt
    connected to ORACLE' and also some SQL Query with ddntt table and few entries.
    I also did a DBCHECK, the ABAP Dictionary is consistent with the
    Database.Also I suspect the nametab entries should have been
    inconsistent state when I killed the work process manually..
    Regards
    Thilip Kumar

    Hi Juan,
    Oracle did not go down during SP application.. R3trans -d works fine and also the Transport tool tp check also is fine.. I have even upgraded the kernel to the latest level. STMS is configured for Single system landscape and it is also very well fine..
    Please see the output of 'tp connect PIX pf="<TP_PROFILE_>"
    TRACE-INFO: 337:  [dev trc     ,00000]  SELECT VERSION, UUID, CRTIMESTMP, ABTIMESTMP, DYTIMESTMP, FLDCNT, TABLENGTH, KEYCNT, KEYLENGTH, CLIE\
    TRACE-INFO: 338:                                                                                30  0.356722
    TRACE-INFO: 339:  [dev trc     ,00000]  NTPOS, TABTYPE, TABFORM, REFNAME, HFLAG, BUFSTATE, BUFPARM, ALIGN, POINTERLG, UNICODELG, COMPCNT, LE\
    TRACE-INFO: 340:                                                                                27  0.356749
    TRACE-INFO: 341:  [dev trc     ,00000]  AFCNT FROM "DDNTT" WHERE TABNAME = :A0;                        20  0.356769
    TRACE-INFO: 342:  [dbntab      ,01003]  ***LOG BY4=>sql error 3114   performing SEL on table DDNTT      [dbntab#6 @ 10038]
    TRACE-INFO: 343:                                                                                38  0.356807
    TRACE-INFO: 344:  [dbntab      ,01003]  ***LOG BY0=>ORA-03114: not connected to ORACLE [dbntab#6 @ 10038]
    TRACE-INFO: 345:                                                                                31  0.356838
    TRACE-INFO: 346:  [dev trc     ,00000]  OCI-call failed with -1=OCI_ERROR                             299  0.357137
    TRACE-INFO: 347:  [dev trc     ,00000]     SQL error 3114: 'ORA-03114: not connected to ORACLE'        24  0.357161
    TRACE-INFO: 348:  [dbsloci.    ,00000]  *** ERROR => Error 3114 in stmt_fetch() from oci_execute_stmt(), orpc=1
    TRACE-INFO: 349:                                                                                35  0.357196
    TRACE-INFO: 350:  [dbsloci.    ,00000]  *** ERROR => ORA-3114 occurred when executing SQL stmt (parse error offset=0)
    TRACE-INFO: 351:                                                                                33  0.357229
    TRACE-INFO: 352:  [dev trc     ,00000]  sc_p=0x110cc4770,no=3,idc_p=0x110cdd560,con=0,act=1,slen=238,smax=256,#vars=1,stmt=0x110fe94e8,table=DDNTT                        
    TRACE-INFO: 353:                                                                                34  0.357263
    TRACE-INFO: 354:  [dev trc     ,00000]  SELECT VERSION, UUID, CRTIMESTMP, ABTIMESTMP, DYTIMESTMP, FLDCNT, TABLENGTH, KEYCNT, KEYLENGTH, CLIE\
    TRACE-INFO: 355:                                                                                31  0.357294
    TRACE-INFO: 356:  [dev trc     ,00000]  NTPOS, TABTYPE, TABFORM, REFNAME, HFLAG, BUFSTATE, BUFPARM, ALIGN, POINTERLG, UNICODELG, COMPCNT, LE\
    TRACE-INFO: 357:                                                                                30  0.357324
    TRACE-INFO: 358:  [dev trc     ,00000]  AFCNT FROM "DDNTT" WHERE TABNAME = :A0;                        20  0.357344
    TRACE-INFO: 359:  [dev trc     ,00000]  sc_p=0x110cc4770,no=3,idc_p=0x110cdd560,con=0,act=1,slen=238,smax=256,#vars=1,stmt=0x110fe94e8,table=DDNTT                        
    TRACE-INFO: 360:                                                                                98  0.357442
    TRACE-INFO: 361:  [dev trc     ,00000]  prep=0,lit=0,nsql=0,lobret=0,#exec=1,dbcnt=0,upsh_p=(nil),ocistmth_p=0x110fe9ec0
    TRACE-INFO: 362:                                                                                33  0.357475
    TRACE-INFO: 363:  [dev trc     ,00000]  IN : cols=1,rmax=1,xcnt=0,rpc=0,rowi=0,rtot=0,upto=4294967295,rsize=60,vmax=32,bound=1,iobuf_p=0x110fb1468,vda_p=0x110feb8c8
    TRACE-INFO: 364:                                                                                34  0.357509
    TRACE-INFO: 365:  [dev trc     ,00000]       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0
    TRACE-INFO: 366:                                                                                31  0.357540
    TRACE-INFO: 367:  [dev trc     ,00000]  OUT: cols=21,rmax=1,xcnt=1,rpc=1,rowi=0,rtot=1,upto=4294967295,rsize=218,vmax=32,bound=1,iobuf_p=0x110e0d4e8,vda_p=0x110fec028
    TRACE-INFO: 368:                                                                                34  0.357574
    TRACE-INFO: 369:  [dev trc     ,00000]       lobs=0,lmax=0,lpcnt=0,larr=(nil),lcurr_p=(nil),rret=0
    TRACE-INFO: 370:                                                                                31  0.357605
    TRACE-INFO: 371:  [dev trc     ,00000]  SELECT VERSION, UUID, CRTIMESTMP, ABTIMESTMP, DYTIMESTMP, FLDCNT, TABLENGTH, KEYCNT, KEYLENGTH, CLIE\
    TRACE-INFO: 372:                                                                                30  0.357635
    TRACE-INFO: 373:  [dev trc     ,00000]  NTPOS, TABTYPE, TABFORM, REFNAME, HFLAG, BUFSTATE, BUFPARM, ALIGN, POINTERLG, UNICODELG, COMPCNT, LE\
    TRACE-INFO: 374:                                                                                31  0.357666
    TRACE-INFO: 375:  [dev trc     ,00000]  AFCNT FROM "DDNTT" WHERE TABNAME = :A0;                        20  0.357686
    TRACE-INFO: 376:  [dbntab      ,01003]  ***LOG BY4=>sql error 3114   performing SEL on table DDNTT      [dbntab#6 @ 10038]
    TRACE-INFO: 377:                                                                                38  0.357724
    Also the are no dumps as well as system logs for the issue..
    Regards
    Thilip Kumar
    Edited by: Thilip Kumar on Dec 23, 2008 3:44 PM
    Edited by: Thilip Kumar on Dec 23, 2008 3:45 PM
    Edited by: Thilip Kumar on Dec 23, 2008 3:46 PM

  • Hosting jnlp applications on internet

    Hi,
    I would like to share my java application packed as jnlp application.
    I tried to host it in free web hosting sites like geocities, tripod, bravenet.
    But none of them seem to regonize jnlp extn and automatically open with javawebstart.
    Are there any free java application hosting sites (while allows to host jnlp applications) available..?
    Thanks a lot,
    Raja.

    But none of them seem to regonize jnlp extn and
    automatically open with javawebstart.That's not how it works. The JNLP file is served like
    any other file (that is, unless the hosting site is
    blocking it?). Once the file is on the client side,
    THEN it will start up and look for the supporting
    jars/files (assuming the client has Java and Web
    Start installed)Not true. You need to have the mime-type set up on the web-server. Maybe you can request that the mime-type be set up.
    See http://java.sun.com/docs/books/tutorial/deployment/webstart/deploying.html#server

  • Javaws can't lauch the corrected jnlp application

    (1)My jre,jdk version is 1506,javaws can't lauch the corrected jnlp application,and run javaws will popup a little window(java lauch),but after a few seconds it will auto exit,can't lauch the javaws view window,,
    (2)I run javacpl.exe and go to delete the cache fiile,which will throw "Bad installation. Error invoking Java VM (execv)",then I try uninstall all JDK and JRE,,and check the regedit javasoft,their have no 1506.
    (3)reintalled JDK JRE 1506,but the problem still exist. javaws can't lacuch application.
    (4)The problem maybe is I hava installed another version of JRE1510,but when the problem occur,I hava uninstalled all related JDK and JRE,,
    (5)I seached many thread,suggestion is uninstall and install the lastest version of jre,then I do it,uninstall All JDK,JRE,installed 1607,
    So bad,problem still exist.
    any body can help me break out this bad thing,they will get my the best benediction.
    Kevin

    Hi Kevin,
    how did you fix this? We´re experiencing the same problem. Web Start refuses to start any ws-application on some of our computers. De- and re-installing JREs or JDKs didn't help.

  • Black curtain drops on imac 24inch during some application

    My Imac is less than 12 months old and i get a black curtain dropping during some applications. Imac is 24 in 3.06ghz Intel core duo with 4gb ram.
    tested the system with tech tool delux which has come up clear. Has any body had a similar issue?

    Hello Umran and welcome to discussions,
    You are suffering from kernel panics. They can be caused several ways. Have a read of this...
    http://www.thexlab.com/faqs/kernelpanics.html
    Post back with more details of what, exactly, is happening there - The above link should get the issue resolved for you though.
    Regards.
    Ian.

  • Planning problems with russian language during refresh application

    Hello all ))
    I have problems with Planning during refresh my Application with Essbase.
    I intsalled Essbase on RHEL4 and set ESSLANG=Russian_Russia.ISO-8859-5@Default also I set locale on ru_RU.iso88595
    Ater that I installed Planning on Solaris 9 which uses Oracle RDBMS with NLS_CHARACTERSET=AL32UTF8 and set locale on server to ru_RU.iso88595
    Now I can create dementions, members on russion language in Essbase without problems also I can create dementions,members,etc on russian language in Planning. But if I create demention or member in Planning on Russian languge and ) try refresh my Application with Essbase I give follow error
    "=====(HspCubeCreation.java)sQueryString:?Application=Test1
    com.hyperion.planning.olap.EssbaseException: (1060010)
    at com.hyperion.planning.olap.HspEssbaseOutlineAPI.EssAddMemberEx(Native Method)
    at com.hyperion.planning.olap.HspCubeRefreshTask.addChildren(Unknown Source)
    at com.hyperion.planning.olap.HspCubeRefreshTask.addMembers(Unknown Source)
    at com.hyperion.planning.olap.HspCubeRefreshTask.addDimensionsAndMembers(Unknown Source)
    at com.hyperion.planning.olap.HspCubeRefreshTask.buildOutlines(Unknown Source)
    at com.hyperion.planning.olap.HspCubeRefreshTask.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)"
    Why it's happened?
    Please anybody help me

    since march 5 we are on planning 9.3.1.1 and also having problems with refreshing:
    com.hyperion.planning.HspCubeRefreshInProgressException: Cannot complete your request because the database is being refreshed.
         at com.hyperion.planning.HspJSImpl.lockApp(I)V(Unknown Source)
         at com.hyperion.planning.HyperionPlanningBean.lockApp()V(Unknown Source)
         at HspSecurityFilter.Handle(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(Unknown Source)
         at HspSecurityFilter.doPost(Ljavax.servlet.http.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)V(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3150)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    com.hyperion.planning.HspCubeRefreshInProgressException: Cannot complete your request because the database is being refreshed.
         at com.hyperion.planning.olap.HspCubeRefreshTask.run()V(Unknown Source)
         at java.lang.Thread.run()V(Unknown Source)
    anyone a idea?

  • Transport of Copies for Modif. Adjust. Transports during patch application

    Hi Experts,
    I've got two transport requests(Modification Adjustment Transports) in the DEV system containing SPAU and SPDD corrections for patch APPL-19, I need to include these Modification Adjustment transports when I start applying patch APPL-19 in my QTY system, wherein it prompts me to include Modification Adjustment Transports if any.
    I've been told to release these requests in the DEV system encorporate both these requests into once and create a single request of the type Transport of Copies, and supply the Transport Request No. of this Transport of Copies request when it prompts me for Modification Adjustment Transports in the QTY system during patch APPL-19 application.
    Please help me out with the procedure to create Transport of Copies for my case, also if you could post some theory on "Transport of Copies", it would be highly helpful.
    Thanks Alot in advance.

    Hi,
    Check the thread for transport of copies creation.
    Request type  Transport of Copies
    For theory check http://help.sap.com/saphelp_nw04/helpdata/en/57/38e1a94eb711d182bf0000e829fbfe/content.htm and related links as well which mention how to include objects into a request.
    Regards,
    Srikishan

  • JNLP application problems!

    Morning
    Right!
    I have a JNLP:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp codebase=http://jes400/GroupIngredientCode
    href="GroupIngredientCode.jnlp">
    <information>
    <title>GroupIngredientCode Launching Test</title>
    <vendor>FMO</vendor>
    <description>Demonstration of JNLP</description>
    <offline-allowed/>
    </information>
    <resources>
    <j2se version="1.6" />
    <jar href="GroupIngredientCode.jar"/>
    <jar href="jt400.jar"/>
    <jar href="msbase.jar"/>
    <jar href="mssqlserver.jar"/>
    <jar href="msutil.jar"/>
    <jar href="mail.jar"/>
    <jar href="activation.jar"/>
    </resources>
    <application-desc main-class="GroupIngredientCode" />
    </jnlp>
    but when the application runs it is not displaying the JTable as it should, it is tiny and you can not read what is in it. Also it does not appear to be writing to the tables i have on the AS400.
    if i run this as a normal application it works fine it is just when i launch it throught the JNLP file it does not!
    Any ideas anyone!!!

    You should post your question on the Java Web Start & JNLP forum:
    http://forum.java.sun.com/forum.jspa?forumID=38

  • Opatch Failing during fusion applications 11.1.6 installation

    As part of the "Install a Transaction Database " phase in 11.1.6 Fusion Applications instal, I am getting following error . This error specifically happens during the preconfigure phase. The installation is attenpting to apply a patch but fails.
    In the main runFusionDB-preconfigure.log I can see :-
    [2013-05-10T00:27:29.706+00:00] [runFusionDB-preconfigure] [WARNING] [] [runFusionDB-preconfigure] [tid: 12] [ecid: 0000JuBpSELBx0J5Un0Fyc1HZ3v_000003,0] [exec] Execution of the command /app/fusion/database/product/11.2.0/dbhome_1/OPatch/opatch napply -silent -skip_duplicate -skip_subset -oh /app/fusion/database/product/11.2.0/dbhome_1 -phBaseDir /mnt/fusion/installers/database/psu -jre /mnt/fusion/11.1.6_zips/jdk6/jre -invPtrLoc /app/fusion/database/product/11.2.0/dbhome_1/oraInst.loc completed with status 73
    And in the resultinig opatch logfile I get....
    [May 10, 2013 12:27:24 AM] OPatch invoked as follows: 'napply -silent -skip_duplicate -skip_subset -oh /app/fusion/database/product/11.2.0/dbhome_1 -phBaseDir /mnt/fusion/installers/database/psu -jre /mnt/fusion/11.1.6_zips/jdk6/jre -invPtrLoc /app/fusion/database/product/11.2.0/dbhome_1/oraInst.loc '
    [May 10, 2013 12:27:24 AM] OUI-67077:
    Oracle Home : /app/fusion/database/product/11.2.0/dbhome_1
    Central Inventory : /home/fusion/oraInventory
    from : /app/fusion/database/product/11.2.0/dbhome_1/oraInst.loc
    OPatch version : 11.2.0.3.3
    OUI version : 11.2.0.3.0
    OUI location : /app/fusion/database/product/11.2.0/dbhome_1/oui
    Log file location : /app/fusion/database/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch2013-05-10_00-27-23AM_1.log
    [May 10, 2013 12:27:24 AM] Patch history file: /app/fusion/database/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch_history.txt
    [May 10, 2013 12:27:29 AM] Verifying environment and performing prerequisite checks...
    [May 10, 2013 12:27:29 AM] Checking conflict among patches...
    [May 10, 2013 12:27:29 AM] Patch ID 14275605
    [May 10, 2013 12:27:29 AM] Patches that conflict: [  ]
    [May 10, 2013 12:27:29 AM] Checking conflicts for patch : 14275605
    [May 10, 2013 12:27:29 AM] Checking if Oracle Home has components required by patches...
    [May 10, 2013 12:27:29 AM] Check if patch "13343438" is a no-op patch.
    [May 10, 2013 12:27:29 AM] Check if patch "13696216" is a no-op patch.
    [May 10, 2013 12:27:29 AM] Check if patch "13923374" is a no-op patch.
    [May 10, 2013 12:27:29 AM] Opt. comp. not in OH inventory: oracle.network.cman, 11.2.0.3.0
    [May 10, 2013 12:27:29 AM] [ oracle.network.cman, 11.2.0.3.0 ]
    [May 10, 2013 12:27:29 AM] Check if patch "14275605" is a no-op patch.
    [May 10, 2013 12:27:29 AM] Opt. comp. not in OH inventory: oracle.precomp.lang, 11.2.0.3.0
    [May 10, 2013 12:27:29 AM] [ oracle.precomp.lang, 11.2.0.3.0 ]
    [May 10, 2013 12:27:29 AM] Checking skip_duplicate
    [May 10, 2013 12:27:29 AM] Checking skip_subset
    [May 10, 2013 12:27:29 AM] OUI-67073:UtilSession failed:
    To run in silent mode, OPatch requires a response file for Oracle Configuration Manager (OCM).
    Please run "/app/fusion/database/product/11.2.0/dbhome_1/OPatch/ocm/bin/emocmrsp" to generate an OCM response file. The generated response file
    can be reused on different platforms and in multiple OPatch silent installs.
    To regenerate an OCM response file, Please rerun "/app/fusion/database/product/11.2.0/dbhome_1/OPatch/ocm/bin/emocmrsp".
    [May 10, 2013 12:27:29 AM] Finishing UtilSession at Fri May 10 00:27:29 GMT-00:00 2013
    [May 10, 2013 12:27:29 AM] Log file location: /app/fusion/database/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch2013-05-10_00-27-23AM_1.log
    [May 10, 2013 12:27:29 AM] Stack Description: java.lang.RuntimeException:
    To run in silent mode, OPatch requires a response file for Oracle Configuration Manager (OCM).
    Please run "/app/fusion/database/product/11.2.0/dbhome_1/OPatch/ocm/bin/emocmrsp" to generate an OCM response file. The generated response file
    can be reused on different platforms and in multiple OPatch silent installs.
    To regenerate an OCM response file, Please rerun "/app/fusion/database/product/11.2.0/dbhome_1/OPatch/ocm/bin/emocmrsp".
    [May 10, 2013 12:27:29 AM] StackTrace: oracle.opatch.OPatchSessionHelper.validateOCMOption(OPatchSessionHelper.java:2324)
    [May 10, 2013 12:27:29 AM] StackTrace: oracle.opatch.opatchutil.NApply.process(NApply.java:1480)
    [May 10, 2013 12:27:29 AM] StackTrace: oracle.opatch.opatchutil.OUSession.napply(OUSession.java:1136)
    [May 10, 2013 12:27:29 AM] StackTrace: sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [May 10, 2013 12:27:29 AM] StackTrace: sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [May 10, 2013 12:27:29 AM] StackTrace: sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [May 10, 2013 12:27:29 AM] StackTrace: java.lang.reflect.Method.invoke(Method.java:597)
    [May 10, 2013 12:27:29 AM] StackTrace: oracle.opatch.UtilSession.process(UtilSession.java:322)
    [May 10, 2013 12:27:29 AM] StackTrace: oracle.opatch.OPatchSession.main(OPatchSession.java:2346)
    [May 10, 2013 12:27:29 AM] StackTrace: oracle.opatch.OPatch.main(OPatch.java:613)
    Has anybody seen this before or able to shed light on my problem. Thanks.

    This forum is for database installs. Unfortunately there are no Fusion technology forums AFAIK, so your best approach would be to create an SR with Support, or try in https://forums.oracle.com/forums/category.jspa?categoryID=520
    HTH
    Srini

  • Error during running application

    Hi Folks,
    I have developed CustomerProject having a servlet looking up CustomerSession bean calling CustomerEntitybean.
    For developing this I used Netbean5.0 and SunoneApplicationserver8.2.After building this when I run the application for first time.It worked well.When I added some more business methods in the bean and started running its giving the following error.Please help me what might be the problem.How to solve it
    [b][#|2006-05-23T13:09:03.613-0500|WARNING|sun-appserver-pe8.2|javax.enterprise.system.core|_ThreadID=10;|CORE5021: Application NOT loaded: [order]|#]
    [#|2006-05-23T13:09:03.803-0500|INFO|sun-appserver-pe8.2|javax.enterprise.system.container.ejb|_ThreadID=10;|Instantiated container for: ejbName: CustomerFacadeBean; containerId: 75261912075403265|#]
    [#|2006-05-23T13:09:03.823-0500|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.container.ejb|_ThreadID=10;|EJB5090: Exception in creating EJB container [javax.naming.NameAlreadyBoundException [Root exception is org.omg.CosNaming.NamingContextPackage.AlreadyBound: IDL:omg.org/CosNaming/NamingContext/AlreadyBound:1.0]]|#]
    [#|2006-05-23T13:09:03.823-0500|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.container.ejb|_ThreadID=10;|appId=customerbook moduleName=CustomerBook-EJBModule_jar ejbName=CustomerFacadeBean|#]
    [#|2006-05-23T13:09:03.833-0500|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5012: Jndi name conflict found in [customerbook]. Jndi name [ejb/CustomerFacadeBean] for bean [CustomerFacadeBean] is already in use.|#]
    [#|2006-05-23T13:09:03.833-0500|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.core.classloading|_ThreadID=10;|LDR5013: Naming exception while creating EJB container:
    javax.naming.NameAlreadyBoundException [Root exception is org.omg.CosNaming.NamingContextPackage.AlreadyBound: IDL:omg.org/CosNaming/NamingContext/AlreadyBound:1.0 ]
    at com.sun.jndi.cosnaming.ExceptionMapper.mapException(ExceptionMapper.java:74)
    at com.sun.jndi.cosnaming.CNCtx.callBindOrRebind(CNCtx.java:563)
    at com.sun.jndi.cosnaming.CNCtx.bind(CNCtx.java:588)
    at javax.naming.InitialContext.bind(InitialContext.java:359)
    at com.sun.enterprise.naming.NamingManagerImpl.publishObject(NamingManagerImpl.java:176)
    at com.sun.enterprise.naming.NamingManagerImpl.publishObject(NamingManagerImpl.java:146)
    at com.sun.ejb.containers.BaseContainer.initializeHome(BaseContainer.java:622)
    at com.sun.ejb.containers.StatelessSessionContainer.initializeHome(StatelessSessionContainer.java:187)
    at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(ContainerFactoryImpl.java:287)
    at com.sun.enterprise.server.AbstractLoader.loadEjbs(AbstractLoader.java:481)
    at com.sun.enterprise.server.ApplicationLoader.load(ApplicationLoader.java:125)
    at com.sun.enterprise.server.TomcatApplicationLoader.load(TomcatApplicationLoader.java:95)
    at com.sun.enterprise.server.AbstractManager.load(AbstractManager.java:185)
    at com.sun.enterprise.server.ApplicationLifecycle.onStartup(ApplicationLifecycle.java:200)
    at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
    at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
    at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    Caused by: org.omg.CosNaming.NamingContextPackage.AlreadyBound: IDL:omg.org/CosNaming/NamingContext/AlreadyBound:1.0
    at org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper.read(AlreadyBoundHelper.java:60)
    at org.omg.CosNaming._NamingContextStub.bind(_NamingContextStub.java:67)
    at com.sun.jndi.cosnaming.CNCtx.callBindOrRebind(CNCtx.java:552) ... 15 more
    |#]------------------------------------------------------------------------
    Dont know where to bind or rebind if there is any naming exception.I just created service locator..but i dont know where to rebind it
    Please help regarding this.Appreciate your time
    Thanks,
    Siris

    The global JNDI name assigned to each Remote EJB in sun-ejb-jar.xml must be unique across all the applications deployed to the application server. This message shows that more than Remote ejb uses the global JNDI name "ejb/CustomerFacadeBean" :
    #|2006-05-23T13:09:03.833-0500|SEVERE|sun-appserver-pe8.2|javax.enterprise.sys tem.core.classloading|_ThreadID=10;|LDR5012: Jndi name conflict found in [customerbook]. Jndi name [ejb/CustomerFacadeBean] for bean [CustomerFacadeBean] is already in use.|#]
    Double-check all your sun-ejb-jar.xmls to remove the conflict , then undeploy all your apps and deploy again.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Crashing and preview problems

    Hi Folks, I had purchased the Premire Elements 8 pack a month ago and I find myself struggling with it on a daily basis and I will appreciate your help. H/W Environment: Windows 7 Ultimate (32 bit), Intel Core Duo CPU T8100 2.1 GHz, 4GB RAM, 120GB fr

  • Second screen keeps 'refreshing' at a more frequent rate, now..?

    I have my main monitor (HP) running off the mini DVI port and a second monitor running off the mini VGA which is connected to an HDTV. My mini VGA adapter always refreshed periodically with a quick flicker. But recently, the refresh rate increased an

  • Always ignore incompatible Audio Units?

    Is it possible to set Logic to always ignore incompatible Audio Units? I've got a few plugins which fail validation but are perfectly usable. It's obnoxious to have to click "Ignore" every time I start Logic. Is there a plist or something somewhere I

  • Oracle Process Manager(instance1) Service does not start

    Hello Friends, My Oracle Process Manger (instance1) windows service is not starting up.Due to which my presentation service is also down. Kindly suggest any solution. I am using OBIEE 11.1.1.7

  • Antivirus and security questions

    I am new to mac and Im looking for recomendations on antivirus/antimalware programs for macs. Are there any good free programs out there? Also, do macs have a built in firewall? If not, will I need one?