Fixed JRE location

Hi everyone,
I need to set a fixed location of the JRE (no the default value http://java.sun.com/products/autodl/j2se). I want the users of my application to be able to download the JRE from a location in my local network. I've tried several ways but I always get the error "Missing version field in response from server when accessing resource".
Any suggestions?
Here is my jnlp file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- JNLP File for Multicampañas -->
<jnlp spec="1.0+" codebase="http://zeus3:7777/SIPCIT10F/">
   <information>
      <title>SIPC - JANOS</title>
      <vendor>PSL S.A.</vendor>
      <description>sipc</description>
      <homepage href="jsp/index.html"/>
      <description kind="short">SIPC - JANOS</description>
      <icon href="images/icono2.gif"/>
      <offline-allowed/>
      <shortcut>
         <desktop/>
         <menu submenu="SIPC - JANOS"/>
      </shortcut>
   </information>
   <security>
     <all-permissions/>
   </security>
   <resources>
    <j2se href="jnlp/autodl/j2se" version="1.6+"/>
    <jar href="jnlp/SIPCIT10F.jar"/>
   </resources>
   <application-desc main-class="richclient.SIPCMainWindow">
   </application-desc>
</jnlp>

There are instructions here that show how to create an auto-dl page.
[http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/launch.html#creating]
There is a discussion here that addresses how to do auto-dl from your own server - #3 of the FAQ Update (March 2006)
[http://java.sun.com/javase/6/docs/technotes/guides/javaws/developersguide/faq.html]

Similar Messages

  • Will apple next update to help fix the location following data problems will the ipod touch 2g be included ?

    will apple next update to help fix the location following data problems will the ipod touch 2g be included ?

    Chances are the 2g itouch will not be included in the update. Also no one yet knows if it will be fixed in the next firmware but apple has said they know of this bug.

  • Oracle universal installer asking JDK/JRE location

    hi,
    i am trying to open the Oracle universal installer in Linux but it is asking to specify the JDK/JRE location.
    it gives me a prompt to enter the above,
    the prompt is,
    Please specify JDK/JRE Location (e.g. /home/jre), <location>/bin/java should exist:
    please help.
    thanks,

    What do you expect to get from the installation of Oracle Fusion? Oracle Fusion Application is a collection of software, and each software has its own instructions to download/install.
    http://www.oracle.com/us/products/applications/fusion/index.html
    http://becomeappsdba.blogspot.com/2007/02/is-oracle-fusion-really-confusion.html
    do i need to install fusion middleware seprately first before installing fusion apps?
    i thought fusion apps would include everything including middleware, DB etc.Yes -- If you want to install Oracle Fusion, you have to install the Database first then Oracle Fusion Middleware.
    Thanks,
    Hussein

  • How to keep JTree always fix to location(0,0) for its MotherPanel??

    Dear Friends:
    I have following code,
    AnimalTree.java is a JTree, AnimalTreeCall.java is a MotherPanel to add AnimalTree to it,
    after I run it, it is not located at (0,0) location in AnimalTreeCall, after I resize AnimalTreeCall, AnimalTree's location will change with the size change of AnimalTreeCall.
    But what I want is that
    [1]. never mind how I change the size of AnimalTreeCall, AnimalTree will always fix to the location of (0,0) in AnimalTreeCall Panel,ie. fix to upper left corner;
    and
    [2]. AnimalTree JTree will occupy all area in AnimalTreeCall, not only part of it
    How to do that??
    Thanks
    1. AnimalTreeCall.java
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.event.*;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JSplitPane;
    import java.awt.GridLayout;
    public class AnimalTreeCall {
         private static final long serialVersionUID = 1L;
         private           static JFrame                     frame;
         protected           static AnimalTree     animalTree ;
         private               JSplitPane sp = new JSplitPane();     
         public static void main(String args[]) {
              animalTree = new AnimalTree();
              animalTree.init();
              JScrollPane jp= new JScrollPane();
              animalTree.setPreferredSize(new Dimension(600,600));
             jp.setPreferredSize(new Dimension(600,600));
             AnimalTreeCall tc = new AnimalTreeCall();
              frame = new JFrame("test");
              frame.setBounds(0, 0, 600, 675);
              frame.setPreferredSize(new Dimension(600,600));
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             jp.setViewportView(animalTree);
              frame.add(tc.showGUI(), BorderLayout.NORTH);
              frame.add(jp, BorderLayout.CENTER);
              frame.addWindowListener(new WindowAdapter() {
                     public void windowClosing(WindowEvent e) {
                         System.exit(0);
                 frame.pack();
                 frame.setVisible(true);
         public JPanel showGUI() {
                 JPanel jp = new JPanel();
                 jp.setLayout(new GridLayout(0,30));            
                 jp.setSize(15,15);
                 jp.setBorder(BorderFactory.createLineBorder(Color.white));
                     return jp;
    }2. AnimalTree.java
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.*;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeModel;
    public class AnimalTree extends JPanel{
         private static final long serialVersionUID = 1L;
        protected           JTree                               tree;
        protected           DefaultTreeModel                model;
        protected           DefaultMutableTreeNode           rootNode;
         public AnimalTree(){
              super();
         public void init() {
             DefaultMutableTreeNode ProjectNode = getProjectTree();
             model      = new DefaultTreeModel(ProjectNode);
             tree      = new JTree(model);
             tree.setPreferredSize(new Dimension(400,300));
             add(tree, new BorderLayout().CENTER);
      private DefaultMutableTreeNode getProjectTree() {
        rootNode = new DefaultMutableTreeNode("Root");
        DefaultMutableTreeNode an = new DefaultMutableTreeNode("Animal");
        rootNode.add(an);
        DefaultMutableTreeNode cat = new DefaultMutableTreeNode("Cat");
        an.add(cat);
        DefaultMutableTreeNode t = new DefaultMutableTreeNode("Tiger");
        an.add(t);  
        DefaultMutableTreeNode shark = new DefaultMutableTreeNode("Shark");
        an.add(shark);  
        DefaultMutableTreeNode p = new DefaultMutableTreeNode("Pig");
        an.add(p);  
        DefaultMutableTreeNode dog = new DefaultMutableTreeNode("Dog");
        an.add(dog);  
        DefaultMutableTreeNode bird = new DefaultMutableTreeNode("Bird");
        p.add(bird);
        DefaultMutableTreeNode hawk = new DefaultMutableTreeNode("Hawk");
        p.add(hawk);
        DefaultMutableTreeNode eagle = new DefaultMutableTreeNode("Eagle");
        p.add(eagle);
        DefaultMutableTreeNode sp = new DefaultMutableTreeNode("Sparraw");
        p.add(sp);
        DefaultMutableTreeNode mouse = new DefaultMutableTreeNode("Mouse");
        p.add(mouse);
        return rootNode;
    }

    Use the appropriate LayoutManager. Start by reading the Swing tutorial. I'm sure you've been given the link to the tutorial many time.
    add(tree, new BorderLayout().CENTER);The above statement makes no sense.
    I suggest you use a System.out.println(...) to see what the default layout manager for a JPanel is.

  • Saving fixed pixel locations in presets and subsequently comparing those pixels.

    Hello world.
    I am abolutely new to plugin development and have been ploughing through the SDK and sample projects thus far, but I had a few questions about the approach with respect to what I wish to achieve and thought it would be best to pick the brains of everyone here.
    I need to compare frames from a source video to a sample image which I shall call the target. I found how to do this using the Checkout example as well as the tutorial over at Mactech. However, the problem gets complex where I need to compare only fixed pixels from the source frame to certain fixed pixels in the target image. To give a better insight, I believe I should describe the problem statement a little better.
    Scenario:
    A user saves a target image along with the fixed pixels for comparison as a preset. The user also chooses the fixed pixels in a test source frame and saves this as well. The plugin takes the source video and the preset as an input and compares the fixed pixels to the target pixels. By 'compares' I mean some complex math would be performed in the CIE Lab space, but that is a discussion for later, and I'm taking this one step at a time.
    Can someone please guide me as to how to set up this system to start with?
    In short:
    1. How do I store the x and y's of the fixed pixels in the source test frame and target as 2 presets? Possibly a custom data structure that would be bundled with the image?
    2. How do I then access these and iterate only over those fixed pixels in a source frame and target image?
    I am sorry if these are ridiculous questions, but I've been reading for a while and don't seem to be able to find these answers myself.
    Thanks,
    Chirag

    hello chirag_raman!
    welcome to our little forum, where everyone has an opinion, but no one knows for sure. :-)
    what you're asking is not complex, so let's tackle the issues:
    1. how to save a set of x,y coordinates:
    i'd say it will mostly depend on how the user let's you know what these coordinates are.
    i would imagine the simplest way would be to use a point param.
    you can keep the coordinates in a point param and make it hidden in the case where you don't want the user to see it.
    but there are a couple of other ways of keeping data with a plug-in.
    you can either use an "arbitrary" type param, or use the sequence_data.
    both of the above are means to store a structure of data that you create. you can put anything you want in it.
    both methods allow you to modify the size of the stored data at (almost) any time.
    in both cases the data is stored with the project file. (unless you don't want it to)
    the differences are:
    sequence_data -
    you only have one of these per instance of your plug-in.
    you handle the changing of the data, and it is not cached in the undo stack.
    a change in the data doesn't cause a re-render.
    arbitrary param-
    you can have as many as you like in each plug-in.
    a change of data in such param is undoable by the user.
    a change causes a re-render.
    look at the "ColorGrid" sample to see how to handle an arbitrary param, and the "Supervisor" sample for how to handle the sequence_data.
    2. how to access specific pixels.
    a couple of ways.
    you can use the sample suite to grab the color of a pixel/subpixel/area from a buffer,
    or you can access the position in ram directly and grab the data yourself.
    look at the "shifter" sample to see the sample suite in action, and the "CCU" sample to see how to access the position in ram directly.
    i hope this helps.
    cheers!

  • How do I fix my Location bar so that it's sorted my names (albalphabetical order), like my Bookmarks?

    I have finally organized my Bookmarks into alphabetical order, and for some reason whenever I type in a website in the Location bar, the suggested websites shown below aren't in alphabetical order. For example, If I type in 'youtube.com' it doesn't give the original website (which I want). Instead it shows me the other websites that bookmarked. Please help me. I have been on this for quite awhile. Thank you.

    Cootua Autocomplete: https://addons.mozilla.org/firefox/addon/8659

  • Fix "Folder Location" in Display

    I have a 2011 iMac that I transfered all my files to from a PC.  I had to buy Photoshop Elements 8.0 in order to transfer my catalogue of 10,000 images with all the tags and albums etc into the Organizer for the mac.  I understand that once images are imported into Organizer, all file management (moving images or folders that contain images) has to occur through Organizer (unlike Picasa) otherwise the catalogue can't locate the images.
    If you move images in the Finder you must then search in Organizer to Relocate the image and Reconnect them with the catalogue.  I found this out the hard way. I think that Photoshop ought to correct this to be able to move and have the catalogue find the images regardless how they are moved as file management should be able to occur either way.  However, I know that you can do file management of images within Organizer and the Catalogue by chosing Folder Location view in the Display pull down on the upper right corner.  However, there is a glitch.  After I move images from one file or Folder Location to another in the Display, the Display does not accurately show where the new images are located.  I find that some images are shown where I moved them and some in the adjacent folder.  Yet, if I check the actual location in Finder they ARE moved to the designated folder.  IE the Folder Location view does not reflect where the images actually are after you move them.  This is a big problem if you have to do file management through Organizer because Folder location doesn't accurately show where images are. 
    Finally, I've played with Picasa and while I like the option for viewing ALL images chronologically like Photoshop, I also like the idea of being able to view images by the folder location.  Folder Location in Photoshop could do this, but it only displays the lowest folder of image, rather than being able to click on a folder in Folder Location and show all the images in that folder by sub folders.
    Any body else have this problem with images not correctly shown where they are in Folder Location under Display or want the option how to view images?
    bg

    Vlad,
    You'll get much faster and better responses in the Photoshop Elements forum.  I had trouble even grasping what you're talking about.
    Photoshop Elements forum

  • Gen ws from WSDL: how to fix service location in wsdl to match service?

    I'm using Workshop 9.2MP1.
    I tried to create a web service from a WSDL. The WSDL has a service element that specifies a location URL. After generating the service and immediately publishing it, it complains there are compile errors, but it doesn't seem to say what the compile errors are. The only clue is a warning in the Problems view that looks somewhat like this:
    "The context path <> specified on port <> of web service {http://...}... is being overriden with ..."
    I imagine I have to massage the location URL in the WSDL to match what would the service would require. I'm not sure how to do that. I tried commenting out the "service" element in the WSDL and regenerating, but it says the WSDL is not valid anymore.

    I may have resolved this problem, but I realize I still have another problem that may not be related. I tried changing the "location" attribute to just "/<myportname>", instead of a full http URL. I noticed that some examples in the BEA tree used that convention. After storing that, my "overriden" warning went away.
    However, I now realize that there was another problem showing in the Error Log that I didn't look at much before. It says the following:
    "build/jws/.src/com/... [in <myprojectname>] is not on its project's build path"
    This is odd, as when I look at the Build Path section, and the "Libraries" tab, and expand "Web App Libraries", I see "<myprojectname>/build/jws/.src" right in the list.
    I don't get it.

  • Pointer fixed at location

    I have a new Mac Mini with a 27" thunderbolt display.  This afternoon the mouse pointer (controlled by a tackpad) has locked into a position in the top right hand quarter of the screen.  I can control the mouse but within a second of starting to move it, it jumps back to the same location.
    I've rebooted the MacMini but this has has no effect.
    The MacMini is running Mountain Lion 10.8.2 with ARD version 3.6.1 (which is the only way I can control the Mac itself.
    HELP!!

    WHAT A BERK!!
    My son had left the Bamboo connected and the pen resting on the slate.  You got to love kids...

  • How to Mass Update Fixed Assets Locations ?

    Hi,
    I have more than 10,000 Assets that i need to update their Location,
    Im not sure if it is possible to update their location, i think we have to transfer them to a new location..
    Can you please help me by telling how to do that ?
    Is there an API to do this ? if so please give me it's name or script.
    Thanks in advance ,

    Hi,
    You can use the FA_TRANSFER_PUB.do_transfer API to transfer the assets from one location to a new one. You will have to use l_asset_dist_tbl(1).location_ccid for the old location and l_asset_dist_tbl(2).location_ccid for the new location.
    Hope this helps

  • Software that fix and locate kernel panics

    Hi everyone,
    Is there any program or utility out there in the market that can state out what is or are causing kernel panics and be able to fix it if kernel panics are not caused by any kind of hardware failure(such as my computer)
    Thank you,
    pod

    Hi, thank you for the replies. Let me tell you what I had done so far for this kernel panic thing. I called applecare and follow all the instructions that they gave, such as reset those things that need to be reset. And I had passed all the hardware test(extanded hardware test) and I can say that all hardwares all working fine. And I had updated the OSX to 10.4.8. Also I dont' see any of my applications that are causing this kernel panic because the kernel panics happen randomly and even though I didn't even use any of my applications sometimes, it still occurs. Now, I will try to posted the most recent crash log and see if anyone can address the problem for me. Thank you.
    Wed Nov 8 14:29:39 2006
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x0000000000000014 PC=0x000000000003C25C
    Latest crash info for cpu 1:
    Exception state (sv=0x46C69780)
    PC=0x0003C25C; MSR=0x00001030; DAR=0x00000014; DSISR=0x40000000; LR=0x0003C1B8; R1=0x2C42BE70; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0001DBE8 0x0002E8D4 0x000ABAAC 0x03062980
    backtrace terminated - frame not mapped or invalid: 0xF007FFB0
    Proceeding back via exception chain:
    Exception state (sv=0x46C69780)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x46CBE000)
    PC=0x90033508; MSR=0x0200F030; DAR=0x00270004; DSISR=0x40000000; LR=0x907DC994; R1=0xF007FFB0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.8.0: Fri Sep 8 17:18:57 PDT 2006; root:xnu-792.12.6.obj~1/RELEASE_PPC
    panic(cpu 0 caller 0xFFFF0003): simple lock (0x0038CFA0) deadlock detection, pc=0x0003C1B8
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095138 0x00095650 0x00026898 0x000A4AC8 0x0003C1B8 0x0002E8D4 0x000ABAAC 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x4A0A4C80)
    PC=0x90033508; MSR=0x0000F030; DAR=0x000E3000; DSISR=0x42000000; LR=0x907F070C; R1=0xF0101BA0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.8.0: Fri Sep 8 17:18:57 PDT 2006; root:xnu-792.12.6.obj~1/RELEASE_PPC

  • Ssrs 2008 r2 keep objects in fixed locations when report is executing

    In an exisitng SSRS 2008 r2 report there are currently 5  tablixes. Right now in one of the tablixes, I am adding rectangles and textboxes to the one tablix. As I am adding these items to the SSRS 2008 r2 report, new items that I am adding to the report
    do not stay where I placed them originally. In addition, some of the other tablixes are moving around (floating).
    Thus may questions are the following:
    1. In one particular tablix, is there a way to anchor the rectangles and texboxes (keep them from floating)? If so, would you tell me how to keep fixed point locations?
    2. For all the tablixes on the report, is there a way to keep each tablix from flaoting (staying anchored to a fixed location? If so, would you tell me how to keep the various tablixes from floating?

    Hi wendy,
    Just as you said, the location of report items would be changed depends on the data in other items and page size. There are no such property that can directly make an item stayed at a fixed location. While, if the issue is caused by the page size, we can
    change it to an appropriate page size. If the issue is caused by other item data, we can try to use a rectangle to contain those items. Because rectangle is s object container, it can keep objects together on a page and control how object move and push each
    other. For more details, please see the following document:
    http://technet.microsoft.com/library/Cc966445#XSLTsection132121120120
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SOA Suite 11.1.1.6.0  Error - Please specify a valid JRE JDK location

    I am very new to Oracle installations and I cannot get past the " Please specify a valid JRE/JDK location :" message when installing the SOA Suite.
    I verified that all my prerequisites are in place.
    No matter what path I enter, it ignores it and repeats the message. I made sure to install JRE in a directory path with no spaces. I have tried installing jre-7u9-windows-i586 and also jre-7u9-windows-x64. I also tried pointing the location to the jdk160_29/jre/bin directory created by the SOA installation (again, no spaces in my path). Nothing seems to work.
    I am following the Quick Start Guide version 1.2 from August 2011 http://www.oracle.com/technetwork/middleware/soasuite/overview/quickstartguidesoasuite11gr1ps4-459545.pdf. I also looked at various postings and blogs.
    I am running this on a single Windows 7 Home Version SP1, 64-bit machine.
    Here is the full message:
    Starting Oracle Universal Installer...
    Checking if CPU speed is above 300 MHz . Actual 3292 MHz Passed
    Checking swap space: must be greater than 512 MB . Actual 2048 MB Passed
    Checking monitor: must be configured to display at least 256 colors Higher than
    256 . Actual 4294967296 Passed
    Preparing to launch Oracle Universal Installer from C:\Users\Robij\AppData\Loca
    l\Temp\OraInstall2012-11-20_09-46-59AM. Please wait ...
    Please specify JRE/JDK location ( Ex. /home/jre ), <location>/bin/java should e
    xist : \middleware\soasuite\jdk160_29\jre\bin
    Please specify a valid JRE/JDK location :
    As I said, I'm new to this, so sorry for the newbie question. Can anyone help me? Thanks.

    try this at commande ligne
    cd c:\the folder wish contient the setup.exe for soa suite
    setup *–jreLoc* c:\the jdk path directorie example(c:\oracle\midl…\jdk_18...hope that's help you
    Good luck

  • Apple Maps - My business location is wrong, and I don't have any iDevices to fix it

    Apple Team,
    I need to fix my location marker because my customers are constantly getting sent to the wrong location and having to call me for turn by turn directions when using their iPhones to find my farm. As a local farmer in Virginia, I cannot afford to have people getting lost due to an incorrect location marker. Droid users do not have any trouble making their way to my farm, however, the iPhone users always get directions to the wrong location.
    I need some help in correcting this problem and hope that I can find the solution here.
    My business:
    Sneads Farm
    18294 Tidewater Trail
    Fredericksburg, VA 22408
    Google, Yahoo, and Bing all have the correct address and marker location.
    Google:
    http://goo.gl/maps/Ielin
    The iPhone provides the correct address, but the wrong location marker.
    Could one of you wonderful Apple Team Members please correct the marker in your maps app? I will gladly speak with someone from Apple Maps if it is necessary.
    Longitude and Latitude of my farm: 38.232452, -77.324883
    Thank you so very much.

    Done. Don't know how long it will take, they will email me when it has been fixed.

  • JVM Loader Error: Unable to find supported JDK or JRE version

    Hello,
    I am trying to use Visibroker (Borland version 6.5) with JDK 1.5.2
    When I try to run idl2java, it gives me the following message:
    JVM Loader Error:
    Unable to find a supported JDK or JRE version. The JVM Version should be either 1.3.1 or 1.4.1 and above.
    Check your installation and use -VBJjavavm or -javahome(vbj only) to specify the JDK or JRE location
    I am using eclipse IDE - i created an external tool configuration for idl2java giving the argument *.idl
    I looked in the forum and tried the suggestions given in this thread
    http://forum.java.sun.com/thread.jspa?threadID=376403&messageID=3052413
    Where am I going wrong. Can someone help me?
    Thaks
    Manju

    Hi,
    I don't know if you got an answer to this problem. It looks like you need to install Borland Service Pack 1 (for BES 6.5) to fix this issue. I spent a couple of days squirming, trying to figure out this issue.
    Hope this helps.
    Regards,
    Sony.

Maybe you are looking for

  • RFC for PLM and R/3

    I have 2 servers R/3 and PLM . I want to create a program in R/3 wherein i want to fetch daat from PLM. So i want to connect between the two. There is already a connect between R/3 dev. server and PLM dev. server. I am using the function module 'RFC_

  • I accidentally erased the Time Machine application.  How can I reinstall it?

    I accidentally erased the Time Machine application.  How can I reinstall it?

  • Links stop working

    I created a link in a PDF to open a file and it worked just fine. Now after several Adobe updates they stopped working both using Acrobat 8 Pro and Reader 9. I checked the link and in the link it points to the correct location of the file on the hard

  • After Posting GR and IR,GR shoud not reverse and it should show Zero qty---

    Hi i have problem in Production system,after posting Goods receipt and invoice receipt, same GR  again allowing to reverse with some qty, i think i can not happen, am i right ? but in our production system it is allowing reverse GR after some time. 1

  • Bug Report: APEX_APPLICATION_SUPP_OBJ_CHCK is missing primary key column

    Hi, the APEX dictionary view APEX_APPLICATION_SUPP_OBJ_CHCK is missing the primary key column INSTALL_ID. Actually it's in the view but commented out. Regards Patrick My APEX Blog: http://www.inside-oracle-apex.com The APEX Builder Plugin: http://bui