Passing arguements to webstart app using jnlp arguement tag

Hi,
I have in jnlp file
</resources>
    <application-desc main-class="com.Frame">
        <argument>x</argument>
        <argument>y</argument>
    </application-desc>then in application I have
public static void main(String args[]){
        String x = args[0];
        String y = args[1];The value of x gets passed but the value of y is null
Anyone have any ideas of the problem ?
Thanks

Yes, thanks
I had an error in the code before hand that I fixed and it was picking up the old jnlp.
In
Control Panel - java - general - Temporary Internet Files - click view and delet old jnlp files

Similar Messages

  • Caching problem passing jsessionid to Webstart App

    Hi,
    I am trying to pass a tomcat sessionId to my Webstart Application which is an Eclipse RCP application. I am using an NTLM-Filter on the server to perform user authentication. The filter is installed on a jnlp.jsp. The idea is to put some information into the session and
    pass back the sessionid into the application which could then access the same session on the tomcat server.
    This is the jsp I am using:
    <%@ page contentType="application/x-java-jnlp-file" info="CRM RCP Client JNLP" %>
    <jnlp spec="1.0+" codebase="http://dusu9077.zs.westlb.sko.de:8082/CRM" href="crm.jnlp;jsessionid=<%=session.getId()%>">
         <information>
              <title>CRM</title>
              <description>Customer Relationship Managementsystem version 4.0.1</description>
              <icon kind="splash" href="splash.gif"/>
         </information>
         <security>
              <all-permissions/>
         </security>
         <resources>
              <j2se version="1.5+" initial-heap-size="128m" max-heap-size="512m"/>
             <property name="sun.java2d.noddraw" value="true"/>
            <extension name="CRM RCP Client" href="RcpShared.jnlp"/>
            <jar href="org.eclipse.equinox.launcher_1.0.0.jar"/>
            <jar href="com.hp.wlb.crm.core_0.0.1.jar"/>
            <property name="osgi.configuration.area" value="@user.home/crm_ng/configuration"/>
            <property name="osgi.instance.area" value="@user.home/crm_ng/workspace"/>
            <property name="eclipse.product" value="com.hp.wlb.crm.core.product"/>
            <property name="eclipse.consoleLog" value="true"/>
          <property name="sessionId" value="<%=session.getId()%>"/>
            <property name="osgi.nl" value="<%= session.getAttribute("USER_LOCALE") %>"/>
         </resources>
         <application-desc main-class="org.eclipse.equinox.launcher.WebStartMain">
              <argument>-webservicehttp://duuool9077.:8082/CRM/services/CrmServerWS</argument>
               <argument>-jsessionid<%=session.getId()%></argument>
           </application-desc>
    </jnlp>As you see I am passing my sessionId as an argument back into my application. The funny thing is, that I keep getting back my initial sessionId (the one I got when I first downloaded the application). The sessionId persists even a server restart.
    In other words: when I look into my debug statements on the server I see an incoming request with sessionId 0815. This request runs through the filter chain. The user is authenticated. After authentication the sessionId (0815) is put into the jnlp file by creating it using a jsp. Unfortunately I always get a different sessionId into my Webstart application which is for example 4711. I found out that 4711 is exactly the sessionId that I retrieved when I first started/downloaded the application.
    Could someone explain me what I am doing wrong here? How I can get rid of the sessionId caching?
    Thx in advance
    Thorsten

    Yes, thanks
    I had an error in the code before hand that I fixed and it was picking up the old jnlp.
    In
    Control Panel - java - general - Temporary Internet Files - click view and delet old jnlp files

  • Can you create an app using Adobe DPS, then pass the Folio to a programmer to add interactivity?

    I'd like to know if I can create an app using Adobe DPS, then pass the folio to a programmer to add advanced interactivity that DPS doesn't provide. I would like the programmer to use either XCode or Android SDK because it is a standard, but they can also use C#, JavaScript, and several other coding languages. The folio would serve the purpose of a tight digital comp for the programmer.

    Thanks for your help Bob! I found this article on the Adobe site. Figured I'd share it. http://helpx.adobe.com/digital-publishing-suite/help/import-html-articles.html

  • Deploying JClient App using Java Webstart

    I've got a BC4J/JClient app that I'm ready to deploy. I read the May 2004 white paper "Deploying Oracle ADF JClient Applications with Java Web Start" by Frank Nimphius. In the white paper it says that you must sign the jar files in order for the webstart deployment to the client to succeed. Since this will be an intranet only application, my plan is to use the Oracle Certificate Authority to generate my trusted certificate chain for code signing. I've figured out how to generate code signing certificates using OCA and I've signed code in the past using Sun's keytool utility. However, when I use keytool to generate my certificate request(CSR) and use OCA to approve it, I can't import it back into the keystore. I am assuming that I need to include the "-provider" switch on the "-import" command for keytool. If I'm correct, does anyone know what the provider is for OCA?
    I also thought about not using keytool and generating a new CSR using Oracle Wallet Manager. I'm guessing that wallet mgr should already know about the OCA certificate formats. Since a wallet file is just a PKCS#12 keystore, I'm assuming that the jarsigner utility shouldn't have any problems using it as a code signing certificate store. My problem with wallet mgr is that I can only find it on the machine that has 10gAS installed on it. Is there any way I can install just the wallet mgr on another PC?
    Thanks,
    Mark Brown

    Thanks Frank. I posted the question here:
    Signing Java Webstart apps with Oracle Certificate Authority
    for anyone who wants to follow the progress.
    Mark

  • How do i get passed the billing step when using my apple id to download apps

    how do i get passed the billing step when using my apple id to download apps on my ipod touch

    DId you enter a valid payment method?

  • How to pass parameter in webstart/browser mode

    Hello -
    I'm trying to understand how to pass a parameter to my FX2 application with in browser mode or webstart mode.
    So I imported ColorfulCircles project from the Ensemble into Netbeans. Then I modified the code and put in a small snippet to pull a parameter after init method, like so. I just get the parameter and set it as title for the stage.
    @Override public void start(Stage primaryStage) throws Exception {
    init(primaryStage);
    Parameters params = getParameters();
    String myTitle = params.getNamed().get("myTitle");
    primaryStage.setTitle(myTitle);
    primaryStage.show();
    play();
    I then did a clean and build in netbeans...all html, jar, jnlp etc was generated.
    I then manually modified the HTML as shown below. But the title for the stage doesnt update/show, for either modes.
    What is missing here?
    +<html><head>+
    +<SCRIPT src="./web-files/dtjava.js"></SCRIPT>+
    +<script>+
    +function launchApplication(jnlpfile) {+
    +dtjava.launch(            {+
    url : 'ColorfulCircles.jnlp',
    jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iQ29sb3JmdWxDaXJjbGVzLmpubHAiPg0KICA8aW5mb3JtYXRpb24DQogICAgPHRpdGxlPkNvbG9yZnVsQ2lyY2xlczwvdGl0bGU+DQogICAgPHZlbmRvcj5kZW1vPC92ZW5kb3I+DQogICAgPGRlc2NyaXB0aW9uPlNhbXBsZSBKYXZhRlggMi4wIGFwcGxpY2F0aW9uLjwvZGVzY3JpcHRpb24+DQogICAgPG9mZmxpbmUtYWxsb3dlZC8+DQogIDwvaW5mb3JtYXRpb24+DQogIDxyZXNvdXJjZXM+DQogICAgPGpmeDpqYXZhZngtcnVudGltZSB2ZXJzaW9uPSIyLjArIiBocmVmPSJodHRwOi8vamF2YWRsLnN1bi5jb20vd2ViYXBwcy9kb3dubG9hZC9HZXRGaWxlL2phdmFmeC1sYXRlc3Qvd2luZG93cy1pNTg2L2phdmFmeDIuam5scCIvPg0KICA8L3Jlc291cmNlcz4NCiAgPHJlc291cmNlcz4NCiAgICA8ajJzZSB2ZXJzaW9uPSIxLjYrIiBocmVmPSJodHRwOi8vamF2YS5zdW4uY29tL3Byb2R1Y3RzL2F1dG9kbC9qMnNlIi8+DQogICAgPGphciBocmVmPSJDb2xvcmZ1bENpcmNsZXMuamFyIiBzaXplPSIxNzg3NSIgZG93bmxvYWQ9ImVhZ2VyIiAvPg0KICA8L3Jlc291cmNlcz4NCiAgPGFwcGxldC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iY29tLmphdmFmeC5tYWluLk5vSmF2YUZYRmFsbGJhY2siICBuYW1lPSJDb2xvcmZ1bENpcmNsZXMiID4NCiAgICA8cGFyYW0gbmFtZT0icmVxdWlyZWRGWFZlcnNpb24iIHZhbHVlPSIyLjArIi8+DQogIDwvYXBwbGV0Pg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iQ29sb3JmdWxDaXJjbGVzU2FtcGxlIiAgbmFtZT0iQ29sb3JmdWxDaXJjbGVzIiAvPg0KICA8dXBkYXRlIGNoZWNrPSJiYWNrZ3JvdW5kIi8+DQo8L2pubHA+DQo='+
    +,+
    +params: {myTitle: "MyColorfulCircles"}+
    +},+
    +{+
    javafx : '2.0'+
    +},+
    +{}+
    +);+
    return false;
    +}+
    +</script>+
    +<script>+
    +function javafxEmbed() {+
    dtjava.embed(
    +{+
    url : 'ColorfulCircles.jnlp',
    placeholder : 'javafx-app-placeholder',
    width : 800,
    height : 600,
    jnlp_content : 'PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxqbmxwIHNwZWM9IjEuMCIgeG1sbnM6amZ4PSJodHRwOi8vamF2YWZ4LmNvbSIgaHJlZj0iQ29sb3JmdWxDaXJjbGVzLmpubHAiPg0KICA8aW5mb3JtYXRpb24DQogICAgPHRpdGxlPkNvbG9yZnVsQ2lyY2xlczwvdGl0bGU+DQogICAgPHZlbmRvcj5kZW1vPC92ZW5kb3I+DQogICAgPGRlc2NyaXB0aW9uPlNhbXBsZSBKYXZhRlggMi4wIGFwcGxpY2F0aW9uLjwvZGVzY3JpcHRpb24+DQogICAgPG9mZmxpbmUtYWxsb3dlZC8+DQogIDwvaW5mb3JtYXRpb24+DQogIDxyZXNvdXJjZXM+DQogICAgPGpmeDpqYXZhZngtcnVudGltZSB2ZXJzaW9uPSIyLjArIiBocmVmPSJodHRwOi8vamF2YWRsLnN1bi5jb20vd2ViYXBwcy9kb3dubG9hZC9HZXRGaWxlL2phdmFmeC1sYXRlc3Qvd2luZG93cy1pNTg2L2phdmFmeDIuam5scCIvPg0KICA8L3Jlc291cmNlcz4NCiAgPHJlc291cmNlcz4NCiAgICA8ajJzZSB2ZXJzaW9uPSIxLjYrIiBocmVmPSJodHRwOi8vamF2YS5zdW4uY29tL3Byb2R1Y3RzL2F1dG9kbC9qMnNlIi8+DQogICAgPGphciBocmVmPSJDb2xvcmZ1bENpcmNsZXMuamFyIiBzaXplPSIxNzg3NSIgZG93bmxvYWQ9ImVhZ2VyIiAvPg0KICA8L3Jlc291cmNlcz4NCiAgPGFwcGxldC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iY29tLmphdmFmeC5tYWluLk5vSmF2YUZYRmFsbGJhY2siICBuYW1lPSJDb2xvcmZ1bENpcmNsZXMiID4NCiAgICA8cGFyYW0gbmFtZT0icmVxdWlyZWRGWFZlcnNpb24iIHZhbHVlPSIyLjArIi8+DQogIDwvYXBwbGV0Pg0KICA8amZ4OmphdmFmeC1kZXNjICB3aWR0aD0iODAwIiBoZWlnaHQ9IjYwMCIgbWFpbi1jbGFzcz0iQ29sb3JmdWxDaXJjbGVzU2FtcGxlIiAgbmFtZT0iQ29sb3JmdWxDaXJjbGVzIiAvPg0KICA8dXBkYXRlIGNoZWNrPSJiYWNrZ3JvdW5kIi8+DQo8L2pubHA+DQo='+
    +,+
    +params: {myTitle: "MyColorfulCircles"}+
    +},+
    +{+
    javafx : '2.0'+
    +},+
    +{}+
    +);+
    +}+
    +<!-- Embed FX application into web page once page is loaded -->+
    dtjava.addOnloadCallback(javafxEmbed);
    +</script>+
    +</head><body>+
    +<h2>Test page for <b>ColorfulCircles</b></h2>+
    +<b>Webstart:</b> click to launch this app as webstart<br><hr><br>+
    +<!-- Applet will be inserted here -->+
    +<div id='javafx-app-placeholder'></div>+
    +</body></html>+

    Thank you Igor.
    "Released version of JavaFX do not provide support for this scenario."
    --> So current release wont support for both webstart and embedded?
    "Note that doc you are referring to only mention it for embedded applications."
    -->But the code I've shown, doesnt work for embedded app either. That html I pasted, has both embedded and webstart - doesnt work for both.
    "This is improved in JavaFX 2.2 though. "
    -->So does that mean, if I try 2.2, it'll still only work for embedded? Or will it work for both webstart and embedded?
    If only for embedded..then in that case, what's the best way to dynamically pass a parameter (named or unnamed) to a WebStart app?
    Thanks.
    A

  • WebStart app doesn't run after JRE auto-update

    Our JNLP-deployed app doesn't start if the JRE is auto-updated as part of the WebStart download. The JRE update completes successfully but the app doesn't start and the desktop shortcuts created by WebStart don't work (the path to the webstart app in the shortcuts appears to be invalid). The user has to go back to the webpage and click the link to the app's JNLP file again, then the shortcuts will have the correct path and the app will start.
    Currently, our app requires JRE 1.5.0, so typically the update is going from 1.4.2 to 1.5.0. As a test, I tried starting with 1.5.0 installed and having the app require 1.6.0 and everything works perfectly, the JRE gets auto-updated, desktop shortcuts are valid and our app starts immediately afterwards.
    This problem occurs whether the new JRE is auto-updated directly from Sun or from our own server (we're using the JREInstaller from the 1.5.0 JDK samples).
    Any idea what the problem is and how to correct it?

    Currently, our app requires JRE 1.5.0, so typically the update
    is going from 1.4.2 to 1.5.0. As a test, I tried starting with 1.5.0
    installed and having the app require 1.6.0 and everything works
    perfectly,..
    Any idea what the problem is ..No.
    .. and how to correct it? Does it work when the user upgrades direcly from
    1.4.2 to 1.6? If so, you might specify 1.6 is the
    minimum requirement. This is obviously not an
    ideal solution, but may get your users out of a bind,
    and they are probably better off using 1.6, in any case.

  • Obiee 11g and custom j2ee app using the same cookie name

    Hi,
    I wrote a same j2ee web application. i'am using authentification through a realm configured in the web.xml.
    This web app is deployed in the same weblogic than obiee 11g. What i want to do is to embed my application in a dashboard using an iframe tag, and use the same login from analytics to my custom web app.
    In this article http://docs.oracle.com/cd/E11035_01/wls100/security/thin_client.html#wp1039551, it is said that by default, all web apps in the sames weblogic server are using the same cookie name so that they share authentification between them. However, i have read in the web that analytics in obiee 11g is using a cookie with the name "ORA_BIPS_NQID".
    In the weblogic.xml of my custom application, i set the cookie-name parameter to ORA_BIPS_NQID. However, in the dashbord, it still prompt for authentification to my custom web app.
    How can we share authentification between analytics and a custom web app in the same weblogic ?
    NB : I dont want to pass the username et password through the url.
    Thanks.

    By default, if you don't specify a cookie-name in the weblogic.xml configuration file, the weblogic server create a cookie named JSESSIONID for your application. For exemple, if two applications use the default configuration, both of them will use the same cookie name which is JSESSIONID. In this case, when you log in the first application, your are automaticaly logged in the second application with the same credentials. I have already test this kind of integration and it works perfectly. You only need that the two applications are deployed in the same weblogic server.
    Now, i want to have the same behaviour between obiee 11g and my custom application deployed in the same weblogic server. I read somewhere in the web that obiee 11g presentation service (analytics) is configured with a cookie-name value = "ORA_BIPS_NQID". So in the weblogic.xml configuration file of my web app, i specify a cookie-name value = "ORA_BIPS_NQID" to have the same cookie-name between the two application. But, it still not work. It prompt for authentification in the dashboards.
    I now, that such an integration is possible, because the other bi applications (mapviewer, bipublisher,...) are actually other web applications. However when using, for exemple, maps in dashbords, the mapviwer application automaticaly user the credentials of the user connected in analytics.

  • Applet doesn't show after plugin update & using JNLP, no errors

    We have an applet that worked after the plugin update, then I wrote the JNLP file and can't get it working, it seems to be loading but doesn't show anything. I have tried and searched for possible errors but doesn't seem to be any obvious error for me. Also JaNeLA doesn't give any errors. When I try to load the applet I can see how open two java consoles (maybe this is an error?), in the first console the last output is:
    network: Created version ID: 1.0+
    network: Created version ID: 6.0.18
    basic: Progress indicator deleted: nullAnd in the second:
    basic: Subprogram loaded.
    basic: Applet resized and added to parent container
    basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 309262 us, pluginInit dt 2161125 us, TotalTime: 2470387 us
    basic: Loading Java Miniapplication
    basic: Loading Java MiniapplicationThe jnlp file I wrote is this:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp codebase="http://genomedu.net/applet/applet/" href="jvrmed_applet.jnlp">
      <information>
        <title>JApplet demo</title>
        <vendor>Jungle waa</vendor>
        <homepage href="http://funforyou.net/"/>
        <description>This is a demo</description>
        <offline-allowed/>
      </information>
        <resources>
          <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
          <jar href="http://download.java.net/media/applet-launcher/applet-launcher.jar"/>
          <jar href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar"/>
          <jar href="http://download.java.net/media/gluegen/webstart/gluegen-rt.jar"/>
          <jar href="http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar"/>
          <jar href="http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dcore.jar"/>
          <jar href="http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar"/>
          <jar href="pixelmed.jar"/>
          <jar href="gdata-core-1.0.jar"/>
          <jar href="gdata-media-1.0.jar"/>
          <jar href="gdata-photos-2.0.jar"/>
          <jar href="gdata-photos-meta-2.0.jar"/>
          <jar href="google-collect-1.0.jar"/>
          <jar href="mail-1.4.3.jar"/>
         <jar href="jvrmed.jar" main="true"/>
       <extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp"/>
        </resources>
      <applet-desc
          name="JVRMed_app"
          main-class="vrmed.app.jVRMed.JVRMed_app"
          width="793"
          height="563">
      </applet-desc>
    </jnlp>
    And the applet tag in the html is:
    <applet name="jvrmed" code="org.jdesktop.applet.util.JNLPAppletLauncher"
          width=793
          height=563 >
       <param name="jnlp_href" value="http://genomedu.net/applet/jvrmed_applet.jnlp">
    </applet>The old applet tag that launched the applet before the plugin update:
    <applet name="jvrmed" code="org.jdesktop.applet.util.JNLPAppletLauncher"
          width=793
          height=563
          archive="http://download.java.net/media/applet-launcher/applet-launcher.jar,
                   http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
                   http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
                http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar,
                http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dcore.jar,
                   http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar,
                pixelmed.jar,
                gdata-core-1.0.jar,
                gdata-media-1.0.jar,
                gdata-photos-2.0.jar,
                gdata-photos-meta-2.0.jar,
                google-collect-1.0.jar,
                mail-1.4.3.jar,
                   jvrmed.jar">
       <param name="codebase_lookup" value="true">
       <param name="subapplet.classname" value="vrmed.app.jVRMed.JVRMed_app">
       <param name="subapplet.displayname" value="jVRMed">
       <param name="noddraw.check" value="true">
       <param name="progressbar" value="true">
       <param name="jnlpNumExtensions" value="1">
       <param name="jnlpExtension1"
              value="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp">
       <param name="idsession" value="jvrmed_snaps">
       <param name="idprofile" value="1">
    </applet>I know there are many extra parameters in the old version, I have deleted them for debugging because there was the same result with them. What really bothers me is that I don't get any error and the java process is running while tries to load the applet. Anyone had a similar experience and can give a clue?

    Hi,
    since JRE 6u21 the JNLPAppletLauncher doesn't work anymore.
    The Java 3D's jars and native libraries hosted by Oracle.Sun can be accessed by including the extension http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp. More details can be found here : Java 3D Web Start Release https://j3d-webstart.dev.java.net/release/index.html
    See also the example 'H'weight & L'weight in Harmony' http://www.interactivemesh.org/testspace/appletpropelleruniverse1200x800_J3D.html and search in the Java 3D forum http://www.java.net/forums/javadesktop/java-desktop-technologies/java-3d
    This is an attempt to adapt your JNLP file :
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp codebase="http://genomedu.net/applet/applet/" href="jvrmed_applet.jnlp">
      <information>
        <title>JApplet demo</title>
        <vendor>Jungle waa</vendor>
        <homepage href="http://funforyou.net/"/>
        <description>This is a demo</description>
        <offline-allowed/>
      </information>
      <resources>
        <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
        <!-- !!! Includes the remote Java 3D / JOGL libraries !!! -->
        <extension href="http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp"/>
        <jar href="pixelmed.jar"/>
        <jar href="gdata-core-1.0.jar"/>
        <jar href="gdata-media-1.0.jar"/>
        <jar href="gdata-photos-2.0.jar"/>
        <jar href="gdata-photos-meta-2.0.jar"/>
        <jar href="google-collect-1.0.jar"/>
        <jar href="mail-1.4.3.jar"/>
        <jar href="jvrmed.jar" main="true"/>
        <property name="sun.awt.noerasebackground" value="true"/> 
        <property name="sun.awt.erasebackgroundonresize" value="true"/> 
      </resources>
      <applet-desc
          name="JVRMed_app" main-class="vrmed.app.jVRMed.JVRMed_app" width="793" height="563">
      </applet-desc>
    </jnlp>
    Applet tag:
    <!-- please check if codebase="??" is needed -->
    <applet name="jvrmed" width=793 height=563 >
       <param name="jnlp_href" value="http://genomedu.net/applet/jvrmed_applet.jnlp">
    </applet>August

  • How can I do to debug an webstart app?

    Hallo,
    Can someone help me how to debug a webstart app? I need something like System.out.println() of the standalone app's.
    Thanks..

    If you turn on the Java Console and/or JavaWS tracing then you will be able to see any messages sent to System.out.println.
    How to turn these on depends on the version of Java you are using. To figure it out, go to the J2SE docs link for your version of Java at java.sun.com. Once you get there, search the page for deploy, and those links should get you what you need.
    Mike.

  • WebStart App for creating WebStart apps :-)

    Hello programmers around,
    A little tool allowing Jar creation, code signing
    and some other features is avaiable as WebStart
    app at
    http://62.65.146.182/java/JarCreator.jnlp
    (source code is in the Jar, you can extract it,
    just locate the jar in the cache of WebStart)

    Looks nice.
    One note:
    You should prevent to let drive letters to sneak into URLs:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File Created with JarCreator 0.9, 5 oct 2001, [email protected]  -->
    <jnlp spec="1.0+"
    codebase="http://150.205.100.31/applications"
    href="c:/myJar.jnlp">
    <information>
      <title>Application 1.0</title>
      <vendor></vendor>
      <homepage href="index.html"/>
      <description>A good application</description>
      <description kind="short">A waouuuuh good application</description>
      <icon href="pics/JarCreator.gif"/>
      <offline-allowed/>
    </information>
    <security>
      <all-permissions/>
    </security>
    <resources>
      <j2se version="1.3"/>
        <jar href="c:/myJar.jar"/>
    </resources>
    <application-desc main-class="d:/main"/>[/b]
    </jnlp>

  • Webstart app does not launch with 6u2

    Anyone has problem with launching a webstart app with 6u2?
    Message was edited by:
    roger@_@

    Hi,
    yes, I have the following problem that when I launch a JWS application, either from the browser, or command line, or by 2-clicking on the JNLP file, nothing happens. The javaws process has been created but nothing happens...
    It was working perfectly well with 6u1, but yesterday I installed 6u2 and I have now this problem... I have cleared the cache but to no avail.
    That is really blocking when you are developing JWS applications !
    Regards,
    Damien.

  • Webstart and using different JRE's

    Hi,
    I have a few questions about Webstart.
    1) When will webstart support JRE version 1.4 ? (at the moment if i create jnlp application and specify the required runtime to be j2se=1.4 I get an error because webstart can't find that JRE on the sun website, even though i already have the 1.4 JRE installed and have configured webstart to use it)
    2) Is it possible to tell webstart to use a non Sun JRE ( like an IBM JRE ) ?
    Keith Bishop

    Hi,
    I have a few questions about Webstart.
    2) Is it possible to tell webstart to use a non Sun
    JRE ( like an IBM JRE ) ?
    Yes, we are using an IBM JRE with Webstart.
    Currently we have a jnlp process that runs before our application jnlp process that basically rewrites the javaws.cfg file to configure jws to use only the ibm jre which our application requires.
    I am looking into moving that same process within the installer extension of our application. The challenge will be to see if while running our application via jws, reconfigure jws to use the ibm jre and have everything work ok. I don't yet know if this will work.
    Beth

  • How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?

    How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?
    I wish to retrieve sharepoint online data in html page (hosted in windows azure) using javascript and then need to play with AngularJS

    Hi,
    According to your description, you might want to get data from Office 365 SharePoint Online(also known as host web) and pass to the Provider Hosted App which is hosted
    in Windows Azure site.
    I would suggest you take a look at the links below about accessing data from the host web
     for a quick start:
    https://msdn.microsoft.com/en-us/library/office/fp179927(v=office.15).aspx#SP15Accessdatafromremoteapp_Codeexample
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Aother sample solution for your reference:
    https://code.msdn.microsoft.com/SharePoint-2013-Get-the-0ec36bb6
    Best regards
    Patrick Liang
    TechNet Community Support

  • Access denied reading "http.proxyHost" withing webstart app

    Hi,
    some of our users have issues using our webstart app when they have a proxy server. So we want to set the proxy setting manually.
    First of all, I try to read out the proxyHost with the following command:
    System.getProperty("http.proxyHost");
    Running the app in webstart (unsigned), I get this error message:
    "access denied (java.util.PropertyPermission http.proxyHost read)"
    What do I do incorrectly? Is that a general problem with unsigned webstart apps that I do not get access to this information?
    Thanks in advance.
    Sebastian

    We finally decided to use a signed application since this proxy issue is hardly to be solved without the possibility to read system properties.
    Now I want to read out the proxy setting via
    System.out.println(System.getProperty("proxySet"));
    System.out.println(System.getProperty("proxyHost"));
    System.out.println(System.getProperty("proxyPort"));
    The problem is that I only get "null" for all of these properties. How can that happen? Someone else told me that the System-Property proxySet, proxyHost, proxyPort do not exist at all.
    Thanks in advance.
    Sebastian

Maybe you are looking for

  • IPhone 4 not recognized by iTunes. Windows 7

    Hi all,  I have read all the forums, my iPhone 4 is just not being recognized in iTunes I have tried reinstalling iTunes. Gone to device manager, reset mobile service, followed all the apple support pages. I have updated to the new iTunes and my iPho

  • Can I use Adobe Photoshop Element 11 to manage my photos rather than iPhoto?

    What are the problems, if any, with by passing iPhoto and using Adobe Photoshop Elements 11?

  • Cant restore icloud backup

    I lost my old iphone 4s and got a warranty replacement iphone 4s. However when I tried to restore a recent backup I made to the cloud it said that I could not do it because the old backup was on an older ios and the new phone was on a new ios. Is the

  • Determine datatypes in recordset

    I know how to determine the datatypes of an existing table in MS SQL Server (via sp_columns), but for any given recordset, is there a way to determine datatypes? Users will submit arbitrary SQL, so I'll have no idea what tables are referenced unless

  • MX 7 CFObject multiplying returned value

    I've upgraded our customer's ColdFusion server from 4.5 to MX 7. It utilized a custom COM object (written in C++) which when called, returns a value. This worked under ColdFusion 4.5, and still works when used from .NET and VB application. However, n