Is it possible to open the Java plugin / WebStart Console from my app ?

Hi,
I would like to know if it is possible to add a menuitem to my application that would start the Java plugin/web start console.
That would be nice when people have errors in my application.
Martin

Thanks for the information, but is there a way to do it without using exec methods ?
I just want to bring up the Java Console from my app, in the more portable way possible ;-)
Martin

Similar Messages

  • How to access the Java plugin certifcate store from a signed applet?

    Is there any easy way I can access the certificates in the Java plugin certificate store?
    I think I can load the C:\Documents and Settings\<login user>\ Application Data\Sun\Java\Deployment\security\trusted.certs into a KeyStore and examine the certificates that way.
    But I just wonder if there is more robust way to do this without loading up an external file since an applet is executed within a Java plugin.
    Thank you :)

    Is there any easy way I can access the certificates in the Java plugin certificate store?
    I think I can load the C:\Documents and Settings\<login user>\ Application Data\Sun\Java\Deployment\security\trusted.certs into a KeyStore and examine the certificates that way.
    But I just wonder if there is more robust way to do this without loading up an external file since an applet is executed within a Java plugin.
    Thank you :)

  • The Java plugin has created a time unfriendly issue with my e-mail account, I can not open or send any e-mail without using this plugin, how can I eliminate this problem without dropping m. firefox?

    A few days ago I tried to e-mail a friend, when I started A box came up and it required me to add a plugin..Java. I contacted my e-mail courier and microsoft, they told me that is was a plugin from Mozilla Firefox. Since then I must go through Java to send or open an e-mail... this is NOT to my satisfaction, it takes too long for all of this to open and if it is not cleared , I am dropping Mozilla and going elsewhere. Why has this occurred? Is this a result of the last update? If so can I delete the last update and continue on the other version?
    == This happened ==
    Every time Firefox opened
    == last week

    Sorry, I have no idea what you mean by '''"The Java plugin has created a time unfriendly issue with my e-mail account, I can not open or send any e-mail without using this plugin,"'''.
    If you think your problem is caused by the Java plugin, you should visit the Java support forum for assistance.
    http://forum.java.sun.com/index.jspa
    If you could explain what you mean by '''"time unfriendly''' issue with my e-mail account", maybe we'll be able to help you solve that issue.
    It might be helpful for us if we knew exactly which web-mail provider you are using. It seems strange to me that viewing or sending web-mail would actually "need" Java for operation, its more likely that some other item on the web page needs Java to run some advertising or other garbage that isn't a necessary part of the web-mail functionality you want to use.

  • Fedora 13: After upgrading from FF3.6 to FF6.0.2 I no longer have a Java plugin. How do I configure the Java Plugin for FF 6 ? There is no Java Plugin at the site

    I am Fedora 13x64 bit. I just installed FF v6.0.2 from the FF download site. I backed up the existing FF 3.6 as firefox_old
    I need to have a Java plugin to access company site, how do I configure the Java Plugin ?
    At the Plugin area in FF6 there is no Java Plugin available, even after a search.
    I have Java 1.6.0 installed in the OS at:
    /usr/lib/jvm/java-1.6.0/jre/lib/amd64/libnpjp2.so
    I googled how to configure Java Plugin for FF 6 for Fedora 13 and the trick was to create a soft link from /home/<userID>/.mozilla/plugins to the above libnpjp2.so

    AVtech wrote:
    . . . If a person can't get an answer here I don't know where else to turn since Sun certainly wouldn't offer tech support for a free product . . .These forums are user forums, and only occasionally visited by Sun employees. Sun does provide Java technical support options, although (of course) at a charge.
    See:
    http://developers.sun.com/services/
    . . . I guess we'll just use JRE 5 until it's unsupported, whenever that will be. I'm still waiting for an answer on that question, too. See:
    http://java.sun.com/products/archive/eol.policy.html
    http://www.sun.com/service/eosl/
    This document (part IV and Appendix) has some debugging and troubleshooting information that may allow someone involved in the problem to resolve the cause:
    See:
    http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/contents.htm
    Any steps that you can take to isolate the problem to specific Java versions, browsers, applets, web sites, operating systems (and versions), etc, would enhance the possibility of getting help.
    You can try the applets at this Sun location and see if any of them are "slow".
    See:
    http://java.sun.com/javase/6/docs/technotes/samples/demos.html

  • Trying to download the Java Plugin is an impossible situation !   Help ! !

    Dear People,
    You cannot believe what I have been through trying to do a first applet !
    A long time ago downloaded a version of the plugin (a cup of coffee icon in the control panel). Then recently I downloaded a new version
    (1.4.1_01) (a second cup of coffee icon in the control panel)
    Well I was not able to run my first applet after creating a good
    batch file (with help of course) named javacompile:
    echo off
    cls
    PATH=C:\j2sdk1.4.0_01;C:\j2sdk1.4.0_0\bin;C:\j2sdk1.4.0_01\lib;C:\WINDOWS\jbproject\objectdraw.jar
    javac -classpath C:\WINDOWS\jbproject\objectdraw.jar;C:\WINDOWS\jbproject %1
    my program MakeBox.java compiles ok at the Dos prompt
    when I open the MakeBox.html in the browser the error message says:
    "The required component is not available for this version of windows"
    I was told to uninstall the plugin and download it again
    So I took 50 minutes to download it and the message said:
    "You already have the jre1.4.0_01 do you want to uninstall ?"
    so I said "no" ... was this an idiot move on my part?
    then it continued to download the plugin and when it was done it said:
    "You already have the java plugin, do you want to uninstall it?"
    I answered "no"....was this also an idiot move on my part??
    What to do ?
    totally confused
    Stan

    Dear People,
    I just received an e-mail letter from the author of
    "A Eventful Approach" Thomas Murtagh ! ! !
    The most advanced Java paradigm text for Java beginners ! !
    http://applecore.cs.williams.edu/~cs134/eof/
    Even though his letter is very clear, my brain doesn't know what
    to do in the context of compiling at the Dos prompt, (trying to do my
    first applet). Below is the letter and then the code to MakeBox.java
    and MakeBox.html Please shed some light for me.
    Thank you in advance
    Stan
    I meant that in our definition of the WindowController class, we said:
    public class WindowController extends Applet {
    So, when you say
    public class MakeBox extends WindowController {
    the MakeBox class you define is (indirectly) an Applet. In particular,
    with most Java programming environment, you can run the program as an
    applet (i.e. using Sun's appletviewer or JBuilders applettestbed).
    Tom
    Here is the code:
    import objectdraw.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class MakeBox extends WindowController
    public void init()
    this.setSize(new Dimension(400,300));
    public void onMousePress(Location point)
    new FilledRect(40,80,30,20,canvas);
    <html>
    <head>
    <title> Make Box
    </title>
    <body>
    <applet
    codeBase = "."
    code = "MakeBox.class" width = 300 height = 200 >
    </applet>
    </body>
    </html>
         

  • Problem when open the Java Berkeley DB

    I'm using the Java Berkeley DB version: je-6.2.31.jar
    - My database has about 4 GB of info.
    - I use a Replicated Environment (but now I'm currently pointing the -nodeHost and -helperHost to the same IP and port)
    - I'm using a StoredSortedMap to store some key/value info. (sorted duplicates is set to true)
    I use the database correctly for some time.
    Normaly I open the database and close many times;
    There is enough disk, and I already tested it in different HDs, (even with a SSD)
    I casually receive the bellow error, it's not more possible to open the data base:
    com.sleepycat.je.EnvironmentFailureException: (JE 6.2.31) Problem creating output files in: E:\data\database/je.info UNEXPECTED_EXCEPTION: Unexpected internal Exception, may have side effects.
      at com.sleepycat.je.EnvironmentFailureException.unexpectedException(EnvironmentFailureException.java:330)
      at com.sleepycat.je.dbi.EnvironmentImpl.initFileHandler(EnvironmentImpl.java:1484)
      at com.sleepycat.je.dbi.EnvironmentImpl.<init>(EnvironmentImpl.java:474)
      at com.sleepycat.je.rep.impl.RepImpl.<init>(RepImpl.java:267)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
      at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
      at com.sleepycat.je.dbi.DbEnvPool.loadRepImpl(DbEnvPool.java:242)
      at com.sleepycat.je.dbi.DbEnvPool.getEnvironment(DbEnvPool.java:178)
      at com.sleepycat.je.Environment.makeEnvironmentImpl(Environment.java:251)
      at com.sleepycat.je.Environment.<init>(Environment.java:232)
      at com.sleepycat.je.Environment.<init>(Environment.java:188)
      at com.sleepycat.je.rep.ReplicatedEnvironment.<init>(ReplicatedEnvironment.java:573)
      at com.sleepycat.je.rep.ReplicatedEnvironment.<init>(ReplicatedEnvironment.java:443)
      at com.sleepycat.je.rep.ReplicatedEnvironment.<init>(ReplicatedEnvironment.java:507)
    Caused by: java.io.IOException: Couldn't get lock for E:\data\database/je.info
      at java.util.logging.FileHandler.openFiles(FileHandler.java:422)
      at java.util.logging.FileHandler.<init>(FileHandler.java:394)
      at com.sleepycat.je.util.FileHandler.<init>(FileHandler.java:85)
      at com.sleepycat.je.dbi.EnvironmentImpl.initFileHandler(EnvironmentImpl.java:1478)
      ... 24 more

    I got the same behavior again:
    I open and close the DB many times about 50 times.
    OBS: I interrupt the java process abruptly not by API.
    I think this is not a reason to get the files easily corrupted...
    com.sleepycat.je.EnvironmentFailureException: (JE 6.2.31) Problem creating output files in: E:\data\database/je.info UNEXPECTED_EXCEPTION: Unexpected internal Exception, may have side effects.
      at com.sleepycat.je.EnvironmentFailureException.unexpectedException(EnvironmentFailureException.java:330)
      at com.sleepycat.je.dbi.EnvironmentImpl.initFileHandler(EnvironmentImpl.java:1484)
      at com.sleepycat.je.dbi.EnvironmentImpl.<init>(EnvironmentImpl.java:474)
      at com.sleepycat.je.rep.impl.RepImpl.<init>(RepImpl.java:267)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
      at java.lang.reflect.Constructor.newInstance(Constructor.java:408)
      at com.sleepycat.je.dbi.DbEnvPool.loadRepImpl(DbEnvPool.java:242)
      at com.sleepycat.je.dbi.DbEnvPool.getEnvironment(DbEnvPool.java:178)
      at com.sleepycat.je.Environment.makeEnvironmentImpl(Environment.java:251)
      at com.sleepycat.je.Environment.<init>(Environment.java:232)
      at com.sleepycat.je.Environment.<init>(Environment.java:188)
      at com.sleepycat.je.rep.ReplicatedEnvironment.<init>(ReplicatedEnvironment.java:573)
      at com.sleepycat.je.rep.ReplicatedEnvironment.<init>(ReplicatedEnvironment.java:443)
      at com.sleepycat.je.rep.ReplicatedEnvironment.<init>(ReplicatedEnvironment.java:507)
    Caused by: java.io.IOException: Couldn't get lock for E:\data\database/je.info
      at java.util.logging.FileHandler.openFiles(FileHandler.java:422)
      at java.util.logging.FileHandler.<init>(FileHandler.java:394)
      at com.sleepycat.je.util.FileHandler.<init>(FileHandler.java:85)
      at com.sleepycat.je.dbi.EnvironmentImpl.initFileHandler(EnvironmentImpl.java:1478)
      ... 24 more

  • How can i change font used by the java plugin?

    im running j2se 1.4.0 on win2k, and the java plugin is using a font that is not readable because sized way too small (also, the font is not a 'standard' font).
    the font is also applied do class loading or exception messages in java applets (in IE5.5, but i don't think that this is browser-related).
    is there a possibility to change to font (or the font size)?

    thanks for the tip, but this problem seems not to be tightened to the font.properties file:
    the wrong font is only used with the j2sdk1.4.0 plugin, not with that from j2re1.4.0 (actually, i had installed jre first, and afterwards j2sdk without removing j2re before). changing the plugin used back to j2re made the java console display the correct font (though the font.properties files were identically in both cases).

  • Is it possible to lock the keyboard of a client from a server using java

    please explain wheterit is possible to lock the keyboard of a client from a server using java

    You want to process code on one machine, and thereby lock the keyboard on another machine? No, that's not possible. It is extremely far from possible.
    Of course, if the client is running software with security holes in it you might hack into it and crash the thing. This will lock up the keyboard pretty good. I hope that's not what you want ...
    Or are you talking about a setup where you already have code running on the client, and some sort of communication between client and server? In that case what you need to know is whether it is possible to lock the keyboard at all. Once you have figured that out, it is trivial to add the communication code to have the server software tell the client software to lock the keyboard.
    So what do you mean with "lock the keyboard"? It's pretty easy to remove/disable all keyboard related listeners in your own application. It's a lot harder (and AFAIK impossible with pure java) to disable alt-tabbing out of the application. And impossible, except from exploiting security holes, to lock the ctrl-alt-delete-combination on windows machine.

  • Does Firefox support java applets if the "Next generation plugin" is disabled via the Java plugin control panel.

    I'm still trying to get a definitive answer to this question.
    My applet is not "Next Generation compliant". When we run our applet in Internet Explorer it runs fine as long as we disable the "Next Generation Plugin" via the Java plugin control panel. However our applet does not run in Firefox if the "next generation applet" is disabled.
    Is it a requirement that if I want to run an applet in Firefox 3.6.x or higher that the "next generation plugin" be enabled via the Java plugin control panel.

    Current Firefox versions (3.6 and later) can only run Java applets via the Next Generation plugin.
    *http://java.com/en/download/help/new_plugin.xml

  • Since i update my iPhone 5 with IOS 7.0.2, I start to have serious problems to call or receive calls from other telephones: is not possible to open the call at the first try. Somebody have the same problem?

    Since i update my iPhone 5 with IOS 7.0.2, I start to have serious problems to call or receive calls from other telephones: is not possible to open the call at the first try. Somebody have the same problem?

    Try
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • Checking if the Java Plugin is present in IE

    Hi,
    I've been trying to find out how I can check if the Java Plugin is present in IE. In Navigator it's easy but I do not know how to do it for IE as it does not work the same
    way, through using the navigator.plugins Array. However, I know that in IE you can try to create an ActiveXObject but you need to know the plugin name and I do not know this.
    Can anyone help?
    Cheers,
    Mark

    This seems to be more of a JavaScript question than a Java question.....
    If you used the HTMLconverter, the <EMBED> tag should contain the necessary information for IE to determine if the viewer of your document needs to download a newer version of the plugin. Should the veiwer decided not to download the appripriate plugin or doesn't have the correct plugin, your applet would not work and if you try to access document.APPLETNAME (where APPLETNAME is the name given to the applet), you will either get a null or undefined -- that should provide you with sufficient information on what to do next.
    V.V.

  • Enabling the java plugin of a browser

    how to enable the java plugin of a browser. It says go to control panel of the windows, but there is no such icon..how to enable it???

    go to www.java.com and follow instructions.

  • How do I disable the java plugin?

    I have already done
    -tools->Internet options->Advanced
    - unchecked 'use java2 1.4.2_04 for < applet> (requires restart)'
    - checked Microsoft VM java console enabled (requires restart)
    - reinstalled the MS JVM (MSJavWU_8073687b82d41db93f4c2a04af2b34d)
    - set my class ID to
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"> which is supposed to be for MS
    Every time I run the applet, the java plugin console appears with 1.4.2_04 version running.
    what else can I do?

    I created my applet using 1.4 and I want to be sure that it works for people without the plugin. Applet tags alone cause a gray box, while Object tags work but seem to invoke the plugin.
    Also is there a way to check the highest JVM/ plugin version needed for my applet? I don't want to have to manually thumb through javadocs for each object in each file to check when it first appeared. I also don't want to have to download each environment and try to compile the applet.
    Thanks.

  • I can't open the JAVA webstart in WinXP (JSDK1.5.0beta2)

    When I click in javaws.exe the program opens the "Java application cache viewer" but does not load the Java Web Start.
    Someone know if it is a know bug or if is just of my own system?

    Sorry, was to caught up with the Java Control Panel issue...
    Okay, the confusion is that with 1.5.0 b2, the Application Manager that you were used to got replaced with the Java Application Cache Viewer
    ( downloaded items are said to be cached on the local computer hence the name)...
    If you look at the View menu, you can look at all downloaded item, or just applications, applets and so on...
    If you look at the Application menu, you can Launch the selected application Online or Offline...
    the Java Application Cache Viewer will have most of the things that the Application Manager had, the ones that the Viewer do not are now in the Java Control Panel...
    Check your documentation for more details...
    Remember, it 1.5 so thing are bound to change, so look at the Readme(s), the What's New and all other documentation to find out what has changes and what new features are available...
    - MaxxDmg...
    - ' He who never sleeps... '

  • Is it possible to run the java program without main?

    Hi,
    Is it possible to run the java program without main?
    if anybody know please tell me, how it is possible.
    Regards,
    Ramya

    Hi,
    Is it possible to run the java program without main?
    if anybody know please tell me, how it is possible.
    Regards,
    RamyaWhy do you ask? It sounds like an odd question. Your program can be an applet and it doesn't need a main method in that case.
    Kaj

Maybe you are looking for