Compiler to make a single executable file

Hi,
I know this sort of thing has been asked before but bear with me please.
I am working on a program with numerous jars, dlls and config files and of course the JRE. What we have been doing up until now for deployment is using Excelsior JET.
This puts all your jars and the JRE into a single executable file and obfuscates your code. Thats good but we now need to put the dlls and everything else inside the excutable and JET doesnt seem to do this.
So what I want is one single executable file into which everything has been compiled (and you dont need a JRE installed on your machine). Feel free to laugh now but there is a genuine good reason why we need this.
Does anyone know of a product which can do this? I doubt it myself because I have already had a look but maybe someone of you might know.
All the best,
Jim

What is this "good reason". As I simply don't believe
you have one.
Does JET support staticly compiled? How about GCJ?Hi,
The reason I want this is genuine.
This is a medical application which has to conform to a particular standard enforced by an external body. The part of the standard concerned here is in my opinion particularly bizzare and totally restrictive:
When an application (of the type we are writing) is burned onto a CD, all file names on that CD must be in capital letters with a max of 8 characters for each file name and 3 charaters for the extension.
So for this reason we cant have the JRE on there (look at all the filenames in there) and we can't use our dlls (most of the names are too long and not in capitals).
So what we want is to have just one executable which we name how we like
I know its weird but there you go.
Cheers,
Jim

Similar Messages

  • How to create a single executable file in oracle 10g

    hi all
    i am a fairly new user to oracle. i would like to know if there is any way that i can compile both the database and forms that i have created, using the oracle 10g developer suite, into a single executable file and be able to install it on another system without installing the development environment?
    can anyone please help
    thanks in advance

    Hi there
    The forum software was upgraded a few months back and many links to older content were lost.
    There are possibly a few different things you need to do. First, click Project > Skin > Borders tab and DE-select the "Show Borders" check box. That will eliminate the _skin.SWF from the mix. If you have full motion clips you may need to take other steps.
    Also note that while turning off the borders eliminates the _skin.SWF, it also has the side effect of coaxing the the playback controls up onto the main part of the presentation. If you don't like this, you need to resize the movie to make room for the playback controls to be placed into its own area.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How do I make a "single media file" (Sony DVD term)

    I've used Sony's DVD program and there is an option for a "single media file." Basically, when you play the DVD it automatically plays your movie. No menus or anything, just a simple video...almost like watching a VHS. Is there a simple way to do this with DVD Studio Pro? (I'd be editing the movie in FCP.)
    Thanks.

    You have to have at least one menu in a DVD but you don't have to display it. You can set the initial start for your DVD project to your video track and it will begin playing as soon as you start the DVD.
    You need to decide what to do at the end of your video track. You could have it start over or then finally go to the menu. If you didn't want anyone to know it was a menu, just don't put any buttons on it. But that's not very user friendly.

  • Packaging JavaFx Applications in a single executable file (.exe)

    Hi,
    Can anyone let me know how i can convert my javafx application into a single .exe format.
    I am able to convert into an executable jar file. But i want to convert it into native code.
    Are there any tools which can convert javafx application to .exe file ?
    Thanks & Regards,
    Sai Pradeep Dandem.

    Hi,
    Thanks for the quick reply.
    I tried with "Excelsior". Its latest version is 7.6, which supports Java 6 Update 27 only. The version which should support for Java 7 is not yet released. :(
    Anyway i tired with Excelsior and it shows me errors , related to Java 7 new classes.
    Is there any other tool, which i can get with Java7 and JavaFX 2.
    Regards,
    Sai Pradeep Dandem.

  • How to make a single PDF file with pages for each Invoice (XML/XPD)

    I appologize, this is my first time doing this so try not to assume too much when responding.
    I have designed an invoice form in LiveCycle Designer and have it properly connected to an XPD feed that is dynamically created with PHP. When the user opens the URL, the invoice they selected shows up perfectly in the PDF. Yeah!!!
    Now the problem, they want to have multiple invoices show up in the PDF as their own "pages" in a single PDF document. Page 1 = Invoice 1001, Page 2 = Invoice 1002...etc.
    The XML scheme is something like the following. A single header with a variable number of detail lines.
    form1
    header
    invoice_id
    invoice_date
    etc...
    /header
    details
    detail
    item_descr
    item_qty
    item_price
    detail
    detail
    item_descr
    item_qty
    item_price
    detail
    detail
    item_descr
    item_qty
    item_price
    detail
    /details
    /form1
    Now I figure this is a simple matter of replicating the invoice XML in the XPD that is generated, but no matter which way I do it, I only get a single page.
    Is there something I need to do in the form in LiveCycle that tells it to produce multiple pages if I give it multiple "records"?
    Does that make sense?
    BTW...I'm not using a FormServer or anything else. Just simple XPD dynamically created with PHP that points to a PDF created with LiveCycle.
    Any help would be very much appreciated. Again...assume I'm a newbie...

    Hi All,
    What I thought to develop is to write a JDBC connection in the Stan-alone PDF template and access database.
    example: PDF is designed in such a way that it should have "USERNAME" , "PASSWORD" , "LOGIN BUTTON" , so that PDF stand-alone template on every desktop should access the database on entering the correct credentials.
    is it possible..?
    if possible , please provite the solution..?

  • Executing multiple sql statements from a single sql file

    Hi, I am Vijay Krishna.
    I want to drop user, drop tablespace, create tablespace and create user from a single executable file or a single sql file. The command should be in sequence. How can we achieve it? Can I anybody help me in this regard. I want this as soon as possible. It's urgent. Kindly post a reply.
    Also, how can we know the oracle home directory from a java program? The problem is we should know the Oracle home directory and use it for creating the tablespace. In the userinterface we will give just for a new database user creation. I will be really thankfull if anybody can help me in this regard.

    It is showing any error messages.
    I will diplay the entire batch file which we are using.
    sqlplus / as sysdba
    drop user examination cascade;
    drop tablespace examination;
    create tablespace examination
    datafile 'C:\oracle\product\10.1.0\oradata\orcl\examination.dbf'
    size 500M autoextend on;
    create user examination identified by examination
    default tablespace examination
    quota unlimited on examination;
    grant connect, resource to examination;
    exit;
    when i run the batch file from the DOS prompt it is entering into the sql prompt and coming out in a fraction of a second. We are just seeing a screen coming and going. But no error messages are being displayed.
    first we thought that as we are giving the create tablespace and create user in the same file we created another file and tried without having the create commands. Even then the user didn't get dropped.

  • How to Create Executable file for a project for Crio Platform

    hi,
    i am using CRIO 9014  platform  for my application development.
    i am controlling (   Reset  &  then Run )  FPGA   from RT application .
    Through TCP/IP  communication the  Acquired data  (   from FPGA  then followed by some Computation Logic in RT )   is sending   to HOST computer .
    during the above process  
    First i am starting the RT Application    (  the TCP  network will be continuously in listen mode )    then
     i am  starting my HOST Application   in the project .
     here i want  to build my complete project as an  executable file 
    so that i no need to start  RT Application first and then HOST Application.
    Could you please send me One sample Project           with built in simple  ADC Acquisition  loop /  logic  in FPGA  ,  then  one sample logic  / while loop   in RT   to   acquire  this ADC data from FPGA and  send to HOST    via  TCP/IP network then   the  HOST   with GUI    for  Display in the HOST .
    This  complete project should be build in  .exe  file .
    Please  complete project  files  and .exe file    as a  zip file.
    Regards,
    Venkat

    Hi,
    I might be confused but what I understand from what you have mentioned is that you want to create a project having two VI's. One running on your FPGA target and another running on you host computer.You want to build a single executable file to complete the entire operation.
    Unfortunately you cannot have both VI's in same executable file. You can build one executable file and deploy on your FPGA target that will start running as soon as the target is booted. And you can create another executable file for running VI on your host computer. And instead of using TCP to transfer data, you could use "Interface FPGA" from FPGA module to communicate between your host computer and communicate.

  • How to make executable file in labview.

    HI All,
    I have labview student edition V14 (2014),
    I want my vi to be an executable file.
    i searched in google but in  my vi project  its showing only  build specefication->new->source distrubtion.
    i dont have Application , now how to make an executable file.
    Regards
    Punith

    You need the Professional version to make an executable.  You could also buy the App Builder seperately.  I don't remember the price at the top of my head.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Combining single Indesign files to make one file

    Rather than using the "book" feature in Indesign CS2, I combine single Indesign files into one large (editable) Indesign file this way:
    1. Create a NEW Indesign file and SAVE as a new name
    2. Open my first existing Indesign file
    3. Minimize both files and resize so they are side by side
    4. Bring up the PAGES pallette on the first file you want to place
    5. In the PAGES pallette, highlight (click on) page 1, hold down shift and click on the last page. This should select all pages.
    6. Click and hold, drag these pages to the NEW file.
    7. Open each file you wish to include, and repeat the process in the order you would like, until all files are added.
    8. I keep the individual files rather than deleting (in this case it is a yearbook which individual students will be working on the following year). The only problem with this is to make sure if last-minute revisions are made to the final (all-inclusive) Indesign file, the same changes need to be made to the individual files.
    The main reason I do it this way instead of creating a PDF using the book feature, is for purposes of automatic page numbering within the Indesign file, as well as having the final project in one editable Indesign file.

    So, you're combining all the files at the end just for the sake of page numbering (page numbering that you can do in the book files anyway), and you keep the separate files for future revision? Seems incredibly inefficient to me and offers no advantages.

  • How to  make rman to execute remaining cmds in file when one cmd failed

    Hi All,
    I have couple of commands to execute in a file, meanwhile if one command fails with error then rman terminates and did not executing remaining commands in file. How can I make rman to execute remaining commands even when one command failed with errors.
    Thanks and Regards,
    Sandeep.

    Write a shell script for Linux or batch for Windows. For example;
    ORACLE_HOME=/oracle/ora11g
    ORACLE_SID=TEST
    TMPDIR=/tmp
    TMPLOG=${TMPDIR}/RMANtmplog.$$
    $ORACLE_HOME/bin/rman log=$TMPLOG << EOF1
    connect target /
    run
    crosscheck backup of database ;
    exit
         EOF1
    RESULT=$?
    if [ $RESULT -ne "0" ]; then
    echo "FAILED RMAN crosschek command"
    else
    $ORACLE_HOME/bin/rman log=$TMPLOG << EOF2
    connect target /
    run
    delete noprompt expired backup of database ;
    exit
         EOF2
    fi
    Talip Hakan Ozturk
    http://taliphakanozturken.wordpress.com/

  • Make executable file

    Dear!
    How can I make an executable file in Window ( file with exe extention ) for a small Java application from .class files
    Thanks!

    http://www.excelsior-usa.com/jet.html
    http://www.ej-technologies.com/products/exe4j/overview.html
    http://jsmooth.sourceforge.net/
    Distributing your Application as an executable JAR file
    Google is your friend.

  • Make executable file from VI file

    Hello!
    I would like to know how to generate the executable file (For example: instruments.exe) form original vi Labview file format. Is it possible to run the VI without Labview or Labview Viewer on any 32 bit Windows system? (95/98/NT/2000).
    Thank you for your help.
    Yours sincerely
    Vik

    What you need is the "Application Builder" (see http://sine.ni.com/apps/we/nioc.vp?cid=10730〈=US for more info)
    From the ni.com website:
    "LabVIEW Application Builder [gives you]
    * Ability to create stand-alone executables
    * Protected applications
    * Easy-to-use Distribution Kit Builder
    * Included as part of the LabVIEW Professional Development System
    The LabVIEW Application Builder is an add-on package for creating stand-alone applications. When used with the Application Builder, a LabVIEW system can create VIs that operate as stand-alone applications. You can run the executable, but cannot edit it."
    So, if you have the LabVEIW Professional Development System, then it's alreay built in (you can find it under "Tools">"Build Applciation or Shared
    Library (DLL)". If you don't have the professional development system, then the App. Builder can be purchased separately.
    Once the exe has been built with the App. Builder, the target machine needs to have the Run-Time Engine installed as well...
    cheers,
    Christopher
    Christopher G. Relf
    Certified LabVIEW Developer
    [email protected]
    Int'l Voicemail & Fax: +61 2 8080 8132
    Aust Voicemail & Fax: (02) 8080 8132
    EULA
    1) This is a private email, and although the views expressed within it may not be purely my own, unless specifically referenced I do not suggest they are necessarily associated with anyone else including, but not limited to, my employer(s).
    2) This email has NOT been scanned for virii - attached file(s), if any, are provided as is. By copying, detaching and/or opening attached files, you agree to indemnify the sender of such responsibility.
    3) Because e-mail can be altered electronically, the integrity of this communication cannot be guarant
    eed.
    Copyright © 2004-2015 Christopher G. Relf. Some Rights Reserved. This posting is licensed under a Creative Commons Attribution 2.5 License.

  • How to loop through single XML File and send multiple RFC calls?

    I am looking for the best approach to use for making multiple RFC calls (can be sequential) using a single XML file of data.  I have been attempting to get a BPM loop working, but to no avail.  My RFC only accepts a single set of delivery input and I have been told to try to work with it as is.
    input xml sample:
    <?xml version="1.0" encoding="UTF-8"?>
    <ProofOfDelivery>
       <POD>
          <delivery_number>1</delivery_number>
          <carrier_name>UPS</carrier_name>
       </POD>
       <POD>
          <delivery_number>2</delivery_number>
          <carrier_name>UPS</carrier_name>
       </POD>
    </ProofOfDelivery>
    I need to make a synchronous RFC call for each set of POD data.
    Thanks in advance!

    Thanks for the inputs.
    I tried with a BPM and multi-mapping transformation before a ForEach block.  I am getting this error:
    Work item 000000028028: Object FLOWITEM method EXECUTE cannot be executed
    Error during result processing of work item 000000028029
    com/sap/xi/tf/_ProofOfDeliveryMultiMapping_com.sap.aii.utilxi.misc.api.BaseRuntimeExceptionRuntim
    Error: Exception CX_MERGE_SPLIT occurred (program: CL_MERGE_SPLIT_SERVICE========CP, include: CL_
    Probably because I am not making/using the container objects properly.  Here is a screenshot of my BPM.  Can anyone spot my issue or point me to an example on this sort of container use?
    [http://kdwendel.brinkster.net/images/bpm.jpg|http://kdwendel.brinkster.net/images/bpm.jpg]
    Thanks

  • Why did all my files suddenly become UNIX Executable Files?

    After reformatting my hard drive and installing Panther server, I restored the Retrospect back up of files to my home directory. Unfortunately, all the files that didn't have suffixes (eg: .doc, .xls, .pdf, etc.) suddenly had their icons replaced with an icon of a black console with the word "exec" typed in. And their kind was lost and all became: UNIX Executable File.
    Ever since this Panther server has been acting eratically.
    I have been able to resurrect the affected files by opening them in their native application and resaving them with the proper suffix. But there are thousands of files and dozens of applications that could have made each file.
    Is there a way to resurrect these files without having to open and resave every single file in its native application one at a time? Could these thousands of UNIX Executable Files be causing problems for Panther server?
    Thanks for your input.
    Gregg

    Hi TropicalReef,
    At some point during your backup/restore process the executable bit was set on your files. This should not cause a problem with the overall performance of the operating system. But to some extent this is a security risk. There are a number of GUI applications that can change file permission. I recommend you download one and remove the executable bit from your files. Read the developers documentation carefully. Changing file permission especially in batch mode can be very dangerous.
    The easiest way to make you files double clickable is to add the appropriate suffix to the file name. Again there a number of shareware and freeware apps that will do this. Check MacUpdate and VersionTracker.

  • How open old Appleworks documents that appear as UNIX executable files?

    A few of my old Appleworks or Clarisworks files won't open with Appleworks 6, but show up as a "UNIX executable file." I have tried adding the ".cwk" extension, repairing permissions using Disk Utility, and using Finder>File>Get info>Open to choose Apleworks 6 (it already was selected) as recommended by Peggy. With ".cwk" extension, I then get "that file appears to be damaged and cannot be opened."
    Any other suggestions?

    Hi Cloyd G,
    welcome to Apple Discussions and the AppleWorks forum.
    The 'UNIX executable file' classification error appears to arise mostly from the lack of a suffix (.cwk) on the original file. If adding the .cwk suffix does not make the file readable by AppleWorks, and gives a 'file appears to be damaged' message, then it's likely that the file has indeed been damaged.
    If it's a word processor file, you could try opening it in a Text editor (such as Text Edit, supplied with OS X, or Text Wrangler, available free from Bare Bones Software). You'll get a large amount of junk (file meta data and formatting codes, etc.) with the text of your document somewhere in the middle. If you know a single word that is in (or is likely to be in) the document, a search using command-F should take you directly there. Copy the text and paste it into a new AW document.
    For spreadsheet files, you can try dragging the file and dropping it onto a new, empty spreadsheet document. The same technique may also work for database files. I've never tried or seen recommended the same texchnique for Draw or Paint files, but attemptng it should do no harm.
    Best of luck with this.
    Regards,
    Barry

Maybe you are looking for

  • Installing Boot Camp on a second internal disk

    Ok, so I searched the forums for quite some time on this, but couldn't really find the information I was looking for. Really, I just want to share my experience of installing Windows XP 64bit on a second internal disk, operating with leopard 10.5.2 o

  • [SOLVED] Lyx viewer not working

    Hey guys, I've just installed arch for the first time - great feeling However, I'm having a little trouble with LyX (dunno if there's any experts out there to help me with that but here goes). In Linux Mint I didn't have any trouble whatsoever but af

  • Expdp got error

    Database=10.2.0.4 when expdp (full or schemas) i got error: ORA-39125: Worker unexpected fatal error in KUPW$WORKER.UNLOAD_METADATA while calling DBMS_METADATA.FETCH_XML_CLOB [TABLE_DATA:"WSE"."WSE_REPORTS"] ORA-31642: the following SQL statement fai

  • HT4539 I do not have all my music on my computer or I phone. How can I transfer the music that is on my ipod classic to my computer?

    I am missing some music on my computer and Iphone. I do have the music on my ipod classic. How do I transfer the music from my ipod to my computer?

  • Tokens / Remembering Selections

    I am developing an interactive branching scenario with Captivate 2.0.0 to help users make decisions about what they need to do to accomplish some tasks. The user answers some questions and depending upon their responses, the presentation branches to