Minimum files needed from JRE to distribute Java Application

Hello,
We have developed a Java Desktop Application (A Viewer for projects created in Microsoft Project). The core application is around 4 MB. Now we want to distribute it thru our company website. With each distribution we have to supply JRE so that the user doesnt have to install JRE in his machine manually. Problem is the size of JRE which is around 13 MB. For an application of 4 MB its getting too much for the user to download additional 13 MB of files.
I need the list of files of JRE minimum needed to distribute the application.
thanks
--Ahmed

You are not allowed to distribute a partial set of the JRE, you can only distribute a complete JRE. See the LICENSE file included with any JRE installation.

Similar Messages

  • Minimum Files needed for bare bones XP Install?`

    Hello
    I'm new here having recently bought my first MBP. Does anyone know the minimum files needed for a custom (lite) XP Pro install using BootCamp?
    All I want to run is DV-Rack plus maybe 1 or 2 other programs but I don't want to waste space on my 200gb HD. I do't even want to install MS Office because I like iWorks better.
    Thanks
    Allen

    My recommendation is nothing short of 12GB. For your purposes, that you indicated in your post, 12GB should be fine. Please also consider any future uses that you may have for Windows XP. I have seen several times, on this forum, where a user sets the partition too low and then wishes to increase the size and it cannot be done unless Boot Camp and Windows is re-installed from scratch.
    If you can afford the disk space then I would even recommend 32GB and that would allow you to have some space left for future programs if any.
    Axel F.

  • Need User Name/userid from Portal in WebDynpro Java application

    Hi All,
    I am using my Webdynpro for Java application as a iveiw in Enterprise portal. I want to get the Username/userid for the portal. how can we get that?
    Regards,
    Puneet Aggarwal

    Use below code for retrive al users from portal:
    try {
              IUserFactory ufactory=UMFactory.getUserFactory();
              ISearchResult rst = UMFactory.getUserFactory().getUniqueIDs();
              IUserFactory usf = UMFactory.getUserFactory();
              IUser iuser = null;
              //IUserListElement userElement = null;
              int i = 0;
              IPrivateKmnewsView.IUserNodeNode usernode=wdContext.nodeUserNode();
              IPrivateKmnewsView.IUserNodeElement usernodeelement = null;
              while (rst.hasNext()) {
              iuser =
              UMFactory.getUserFactory().getUser(rst.next().toString());
              //wdComponentAPI.getMessageManager().reportSuccess("rst.next().toString() : "+rst.next().toString());
              usernodeelement = usernode.createUserNodeElement();
              String UID=iuser.getUid().toString();
              //wdComponentAPI.getMessageManager().reportSuccess("UID:"+UID);
              usernodeelement.setUserId(UID);
              //wdContext.currentUserNodeElement().setUserId(UID);
              String UniqueID=iuser.getUniqueID().toString();
              //wdComponentAPI.getMessageManager().reportSuccess("UniqueID:"+UniqueID);
              String email = iuser.getEmail();
              String fname = iuser.getFirstName();
              String lname = iuser.getLastName();
              String Name =fname+lname;
              //if(!(fname.equalsIgnoreCase("") ^ fname.equalsIgnoreCase("")))
              //if(currentUsers.equals()
              usernodeelement.setUserName(Name);
              usernodeelement.setUserEmailID(email);
              usernode.addElement(usernodeelement);
              //wdComponentAPI.getMessageManager().reportSuccess("Name : "+fname+""+lname);
              //wdComponentAPI.getMessageManager().reportSuccess("Email : "+email);
              wdContext.currentContextElement().setUserTableVisible(WDVisibility.VISIBLE);
         } catch (UMException e) {
              // TODO Auto-generated catch block
              wdComponentAPI.getMessageManager().reportSuccess("Exception "+e);

  • Is it possible to Drag and Drop from KDE into a Java application?

    Can someone please let me know if it is possible to drag a file, or any other object from KDE (linux) to a Java application? If so, could you give any code examples that could help supplement an explaination?

    http://java.sun.com/products/jfc/tsc/articles/dragndrop/index.html
    http://java.sun.com/j2se/1.4.2/docs/guide/dragndrop/index.html

  • Invoke Workflow from Web Dynpro for Java Application

    I am working on a custom web dynpro for java application and when the user clicks the submit button the SAP standard workflow (WS50000041) should be invoked. Does anyone have experience they can share with me on how to achieve this functionality? It should also be able to attach an adobe form or read data from the form and submit the data as xml.
    Thanks,
    Ashley

    Hi Ashley,
    Use following code in RFC to invoke your workflow -
    DATA : w_subrc TYPE sy-subrc,
                w_wi_id LIKE swwwihead-wi_id.
    CALL FUNCTION 'SAP_WAPI_START_WORKFLOW'
            EXPORTING
              task                      = ' WORKFLOW - WSxxxxxx '
              language                  = sy-langu
              do_commit                 = 'X'
            IMPORTING
              return_code               = w_subrc
              workitem_id               = w_wi_id
            TABLES
              input_container           = it_container
              message_lines             = lv_swr_messag
          COMMIT WORK.
    With this code your workflow will get start. But u have to use workflow id in next application also in which your request is getting navigated. In that application you have to take this workflow ID and have to pass again in workflow using - PortalNavigation statements.
    After that this workflow will get start to publish in your TaskList (My Task) in Portal. Remeber that your all task should be maintained in workflow table by using SWFVISU  transaction.
    After that go to Portal and Re-Register your UWL so that your new Workflow ID will get usable in portal.
    With this way you would be able to use workflow with Web Dynpro Java using UWL and Workflow.
    Regards,
    Roshan Gupta

  • Help needed to invoke MSOffice and Java application

    Hi Everybody,
    I created a macro for MS Word and automated it to a new button in file menu. And I am able to invoke the word file in my java application (with the new button I added and able to run the macro).
    Now my problem is, if I am running my java application on other system I have to invoke the word file which has to function like the modified one (with the new button and able to run the macro).
    Is it possible to do? If so how can I modify local systems MS Word by running my application? How can I copy and retrieve macro? If any one has ideas please share with me very soon.
    Thanks
    Siva

    So, you made yourself a MSWord macro. And now you want that macro to be in somebody else's computer. Correct so far? This is hardly a Java programming question, is it? You would probably get a better answer if you found an appropriate place to ask it.

  • What are the minimum files needed?

    Under Windoz, can I simply copy the JAVA.EXE, the JAR files and the DLLs to a subdir (along with my CLASS file) and run my app? If not, then what would be the minimum required to do so? I'm trying to get away with not running the JRE install.
    If there is a URL that you can simply point me to, that would be great.
    TIA.

    I think I doled out those Duke Dollars too quickly. I put everything in a subdir called C:\AJAVATEST (EXEs, DLLs, JARs, IDLs...) and tried to run and received the following message:
    Failed reading value of registry key:
    Software\JavaSoft\Java Runtime Environment\CurrentVersion
    I'm guessing that the Windows version DOES use the registry. That's disappointing.
    Just so everyone will know (including Sun!), I'm not trying to circumvent the JRE Licensing scheme, I'm trying to test on a remote box that I would rather not run an installation on (semi-production box). The remote box does not have the JRE installed on it.

  • File Deletion from PL/SQL using Java

    I'm able to delete a file on the OS from PL/SQL by calling a java class. But there is a problem if I am trying to delete any file located on any machine othere than the one on which the Database is hosted.
    Can anyone tell me how delete a file which is on anothere machin using PL/SQL with Java ?

    You can use a FTP Call: http://www.savarese.org/oro/software/NetComponents.html

  • Temporary *.rpt file disappears from temporary directory on Websphere Application Server 6

    Hello,
    I'm having trouble after publishing to my WAS v6 environment.  The report will begin, creating the appropriate jrc_tmp_######.rpt file in my temporary directory. 
    For small reports (10 objects or less), the temporary report disappears, I am queried for my login and any parameters, then the report opens.  The temp file never comes back.  All subsequent requests for the report from *any computer* return with an I/O Error and this later in the log file:
    Caused by: java.util.zip.ZipException: ¤u2022'u2022-¦u2022@u0192-"-(tm)...¢¢u2030-u2022@"...£u02C6-
    Any reports with > 10 objects (any combination of data fields, text, images, formulas) the temporary report disappears and only the same I/O error appears.
    In my test env. on windows, using the Rational Application Developer v 7 WAS test server, the temporary report stays until the report times out...
    Has anyone else on WAS 6 had similar problems?  I've no idea how to proceed.
    Thanks!
    Terese

    Would you be able to do one test?
    Early builds of the IBM Java JRE 1.3 and 1.4 had issues with the JIT compiler that caused strange IOExceptions.
    Would you try, in the WebSphere admin console, turning off the JIT for the JRC application, to see if the problem goes away?
    If so, I recommend upgrading to the latest IBM Java JRE build for your version of the Java SDK.
    Ted Ueda

  • Returning an array type from a local method in Web Dynpro Java application

    Hi,
    In my project, we have a requirement to display 18 rolling months along with the year, starting from current month.
    How I am going to approach is that I will get the system date and get the current month and send the month and year value to a local method which will return 18 rolling months along with the year.
    But, when I tried to create a new method there is no option to return an array type. It was greyed out.
    So, we can not return an array type from a method from Web Dynpro for Java application?
    If so, what is the alternative and how am I going to achieve it?
    I will appreciate your help!
    Regards
    Ram

    HI
    You can create new methods in
      //@@begin others
      private ArrayList MyMethod(){
           // ** Put your code here
           return new ArrayList();
      //@@end
    Other option are create a context node with cardinality 0...n with one or more attributes, and in your method create the needed registers into this node. To read this values, you only need to read your context node.
    Best regards
    Edited by: Xavier Aranda on Dec 2, 2010 9:41 AM

  • XML data source from Java application

    Hello everyone,
    I want to use BI Publisher reports from my Java application.
    1. I have generated xml from database query in Java application.
    2. I have created BIP template sampleReport.rtf
    3. I need to generate PDF report using sampleReport.rtf and generated xml data source.
    How this (step 3) can be achieved using BI publisher web service? If someone has sample code, this would be great.
    Thanks.

    Hello everyone,
    I want to use BI Publisher reports from my Java application.
    1. I have generated xml from database query in Java application.
    2. I have created BIP template sampleReport.rtf
    3. I need to generate PDF report using sampleReport.rtf and generated xml data source.
    How this (step 3) can be achieved using BI publisher web service? If someone has sample code, this would be great.
    Thanks.

  • Calling Webdynpro Java Application from Webdynpro ABAP Application.

    Hi,
    We have developed one Application using Webdynpro Java and I m in need to call the Webdynpro Java application from Webdynpro ABAP.
    Require Suggestions to acheive this.
    Thanks In advance.
    Reg,
    Ajay.

    Dear Ajay,
    Assuming that both your applications WDA & WDJ are in the portal & you don't have to pass any parameters to the WDJ application.
    Write the following code on the action  where you would call the WDJ application.
      DATA:
            lr_compcontroller TYPE REF TO ig_componentcontroller,
            l_component TYPE REF TO if_wd_component ,
            lr_port_manager TYPE REF TO if_wd_portal_integration ,
            wa_navigation TYPE navigation.
      lr_compcontroller =   wd_this->get_componentcontroller_ctr( ).
      l_component = lr_compcontroller->wd_get_api( ).
      lr_port_manager = l_component->get_portal_manager( ) .
    * The value inserted into the navigation-target field can be found in the Portal
    * content administration tab of your portal. It is the ID or PCD Location field
      wa_navigation-target = pcd. " Please provide the PCD Location of the WDJ Application here.
      wa_navigation-mode   = '0'.  "0 = INTERNAL(same page) and 1 = EXTERNAL(new page).
      CALL METHOD lr_port_manager->navigate_absolute
        EXPORTING
          navigation_target = wa_navigation-target
          navigation_mode   = wa_navigation-mode.
    You can get the PCD from the Page properties of the WDJ application page in the Portal.
    Hope it helps!
    Warm regards,
    Upendra Agrawal

  • Extracting data from sap to java application using JCO

    Hi,
    I am new to sap and wanted to know what is the procedure to extract data from  based on the java application client (user defined input from different tables of sap) input and need to manage huge data meaning reading millions of records.kindly help me how to handle this in ABAP.

    Hi,
    Pls chk these links
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ad09cd07-0a01-0010-93a9-933e247d3ba4
    Accessing SAP Tables from a Java application
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/47b6cd90-0201-0010-5aba-b6b7474d4aff
    Java Application ,SAP BW
    <b>***Reward Points if Useful</b>
    Regards
    Gokul

  • List of .jar file need to add in web application by using eclipse europa?

    hi
    what are the list of .jar file need to be added in web application which use the ide of Eclipse Europa?

    Depends on the application requirements. For a basic JSP/Servlet application just integrate Tomcat in Eclipse and assign it as application server to your web project, then you don't need to add anything. If you for example need JSF, then you should add its JAR's to the classpath of the web project, which is by default /WEB-INF/lib.

  • (HELP) Is it possible to launch a seperate java app from W/I a java class?

    I have been struggling with this for two weeks now and I still can't get a seperate java application to launch from from w/i my java application. I've gotten my code to compile, and I have saved the output of the command (java ....) to an OutputStream. I tried an alternative to display output to the command prompt, but this will not work if I want to display a gui. If anyone knows how to do this please explain or direct me to some info. Until then the search continues.

    Hey Doc,
    I tried that, it executes the command, but does not launch the application. I've looked at previous posts, but it seems that no one has the answer. Well such is life, LOL.

Maybe you are looking for

  • Connecting my laptop

    I am trying to connect my laptop to my new Insignia tv.  I lost the instructions.  I connected to two cords that came with it.  I just need to know what channel to put my tv on to get the signal to show up on screen.  We are running our cable through

  • Installaing ECC6.0 with oracle as DB on win 2k3 Getting any error

    Hi All I am unable to find out the error while i am installaing ECC6.0 with oracle as DB on win 2k3 please find the error report ERROR 2008-11-06 08:57:24 FCO-00011  The step unpack with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|

  • I can't get rid of a RebateInformer Icon. It arrived with a Firefox update and I don't want it! What do I do?

    I am NOT an experienced computer user but I do know how to get rid of a program. Even the "RebateInformer" told me to go to Control Panel & get rid of it there but it's not listed there. I did a search and found it. It's in C program files and when I

  • 3.2 image rendering issues when cropping and straightening

    Upgraded to 3.2 - all works well so far but have noticed that the top 1/3rd of image disappears during the cropping and straightening processes in the viewer window, but only with portrait/vertically oriented images.  Anyone else have that issue?

  • Devices ATV Listed, but Only Summary & Sync Tabs

    Hi, I have all my music/movies on my Apple TV from several months back. The ATV functions properly from the ATV. Now iTunes DEVICES lists my ATV, but only Summary and Photo tabs are shown. Cancel and Apply are grayed out. When I control-click on the